/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a; /* Dark blue */
    --secondary-color: #7f1d1d; /* Maroon */
    --accent-color: #064e3b; /* Deep green */
    --background-color: #f9fafb; /* Off-white */
    --card-background: #ffffff;
    --text-color: #1f2937; /* Charcoal */
    --text-light: #6b7280;
    --border-color: #d1d5db;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
    --border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

section {
    padding: 60px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
    text-align: center;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.large-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--card-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo-section h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.hindi-name {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.rating-tag {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rating-tag i {
    color: #f59e0b;
}

.review-count {
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 160px;
}

/* About Section */
.about-section {
    background-color: var(--card-background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.shop-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    background-color: #e0f2fe;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.shop-image {
    background-color: #f8fafc;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.image-placeholder {
    color: var(--text-light);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.7;
}

.image-placeholder p {
    font-style: italic;
    color: var(--text-light);
}

/* Categories Section */
.categories-section {
    background-color: var(--background-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.category-icon {
    background-color: #eff6ff;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.category-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.category-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    background-color: var(--card-background);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.trust-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.trust-quote {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.5;
}

.trust-source {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-container {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-frame {
    height: 400px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    padding: 10px 0;
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    background-color: #eff6ff;
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-color);
}

.info-text p {
    color: var(--text-color);
    margin-bottom: 4px;
}

.phone-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.payment-tag {
    background-color: #f3f4f6;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.directions-btn {
    margin-top: 20px;
    width: 100%;
}

/* Street View Section */
.streetview-section {
    background-color: var(--background-color);
}

.streetview-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.streetview-frame {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    margin-bottom: 30px;
}

.streetview-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.streetview-btn {
    min-width: 200px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-cta h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.contact-cta p {
    color: var(--text-color);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info ul li i {
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}

.hindi-footer {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-info p {
    color: #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-links h4,
.footer-categories h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-categories ul {
    list-style: none;
}

.footer-links ul li,
.footer-categories ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-categories ul li {
    color: #e5e7eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

.demo-notice {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h2 {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--card-background);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        gap: 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .shop-features {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .trust-cards {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 12px;
    }
    
    .map-frame,
    .streetview-frame {
        height: 300px;
    }
}