/* ===================================
   Global Reset and Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Hero Section - Trusted & Grounded
   =================================== */
.hero {
    background: linear-gradient(135deg, #2c4a5e 0%, #1a3444 100%);
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.store-name h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hindi-name {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    color: #f0e9d8;
}

.rating {
    margin: 18px 0;
    font-size: 1.15rem;
}

.stars {
    font-size: 1.4rem;
    margin-right: 10px;
}

.reviews {
    color: #ffd966;
    font-weight: 600;
}

.tagline {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 25px 0;
    line-height: 1.5;
    color: #f5f5f5;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.features span {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.98rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #7a2a3d;
    color: white;
}

.btn-primary:hover {
    background: #5f1f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #f5f5f5;
    color: #2c4a5e;
    border: 2px solid #2c4a5e;
}

.btn-secondary:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* ===================================
   About Section - Simple & Honest
   =================================== */
.about {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid #d9d9d9;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c4a5e;
    margin-bottom: 35px;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.8;
}

/* ===================================
   Categories Section - Clean Grid
   =================================== */
.categories {
    background: #faf8f5;
    padding: 60px 20px;
}

.categories h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c4a5e;
    margin-bottom: 45px;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #7a2a3d;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.category-card h3 {
    font-size: 1.35rem;
    color: #2c4a5e;
    margin-bottom: 12px;
    font-weight: 700;
}

.category-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   Trust Section - Customer Reviews
   =================================== */
.trust {
    background: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #d9d9d9;
}

.trust h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c4a5e;
    margin-bottom: 45px;
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #3d6b48;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #3d6b48;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.trust-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* ===================================
   Location Section - High Trust
   =================================== */
.location {
    background: #faf8f5;
    padding: 60px 20px;
}

.location h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c4a5e;
    margin-bottom: 45px;
    font-weight: 700;
}

.map-container {
    margin-bottom: 35px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.street-view {
    margin: 35px 0;
    text-align: center;
}

.street-view-container {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.directions-btn {
    text-align: center;
    margin-top: 35px;
}

/* ===================================
   Contact Section - Clear Info
   =================================== */
.contact {
    background: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #d9d9d9;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c4a5e;
    margin-bottom: 45px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    background: #f9f7f4;
    padding: 35px;
    border-radius: 6px;
    border: 2px solid #e8e8e8;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #2c4a5e;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-item p {
    color: #444;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.phone-number a {
    color: #7a2a3d;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
}

.phone-number a:hover {
    text-decoration: underline;
}

.plus-code {
    color: #777;
    font-size: 0.92rem;
    margin-top: 12px;
}

.hours-label {
    font-weight: 600;
    color: #3d6b48;
}

.hours-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c4a5e;
    margin: 8px 0;
}

.planning {
    margin-top: 12px;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.payment-list {
    list-style: none;
    padding: 0;
}

.payment-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #444;
}

.btn-call {
    margin-top: 18px;
    width: 100%;
    text-align: center;
    background: #7a2a3d;
    color: white;
}

.btn-call:hover {
    background: #5f1f2f;
}

/* ===================================
   Footer - Simple & Clear
   =================================== */
.footer {
    background: #2c4a5e;
    color: #f5f5f5;
    padding: 35px 20px;
    text-align: center;
}

.demo-notice {
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.9;
    font-style: italic;
    color: #ffd966;
}

.copyright {
    margin: 8px 0;
    font-size: 0.92rem;
    opacity: 0.85;
}

/* ===================================
   Mobile Responsive Design
   =================================== */
@media (max-width: 768px) {
    .store-name h1 {
        font-size: 2.2rem;
    }
    
    .hindi-name {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .features span {
        width: 80%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .store-name h1 {
        font-size: 1.9rem;
    }
    
    .about h2,
    .categories h2,
    .trust h2,
    .location h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1.05rem;
    }
}