/* ============================================
   Jaanvi Fashion - Premium Saree Shop Website
   ============================================ */

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

:root {
    /* Color Palette - Matching Logo Theme (Gold & White) */
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-gold: #c9a961;
    --gold-light: #f4e4a6;
    --gold-dark: #b8941f;
    --gold-gradient: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #b8941f 100%);
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --border-color: #e5e5e5;
    --whatsapp-green: #25d366;
    --teal-accent: #4a9b9b;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;

    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.navbar .container {
    max-width: 100%;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(212, 175, 55, 0.4));
    transition: var(--transition);
    border-radius: 50%;
    padding: 2px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.logo:hover .logo-image {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.6));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    position: relative;
    font-family: var(--font-primary);
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #f4e4a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.logo {
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    transition: var(--transition);
}

.logo:hover {
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.nav-menu a.active::before {
    width: 80%;
    background: var(--gold-gradient);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    pointer-events: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.6rem;
    gap: 4px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    z-index: 3;
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 3;
}

.saree-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.saree-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
    animation: sareeImageFloat 6s ease-in-out infinite;
    border: 4px solid rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.saree-hero-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.3);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 10;
    animation: badgePulse 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.saree-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.saree-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.1) 100%);
    border-radius: 20px;
    border: 3px dashed rgba(212, 175, 55, 0.3);
}

.saree-silhouette {
    width: 200px;
    height: 400px;
    background: var(--gold-gradient);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: sareeSilhouetteFloat 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.saree-silhouette::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.saree-placeholder p {
    margin-top: 2rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes sareeImageFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-15px) rotate(-1deg) scale(1.01);
    }

    50% {
        transform: translateY(-25px) rotate(1deg) scale(1.02);
    }

    75% {
        transform: translateY(-15px) rotate(-0.5deg) scale(1.01);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes sareeSilhouetteFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(-3deg);
    }

    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-points {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.trust-icon {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.text-center {
    text-align: center;
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-us {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    background-color: var(--bg-white);
}

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

.about-preview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   Products Section
   ============================================ */

.products-preview,
.products-section {
    background-color: var(--bg-light);
}

.products-grid,
.products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.premium-label {
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
    animation: premiumLabelPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.premium-product-card {
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1;
}

.premium-product-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

@keyframes premiumLabelPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    }
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.product-card .btn {
    margin: auto 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
}

.products-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.products-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.products-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 300;
}

/* ============================================
   About Page
   ============================================ */

.about-content {
    background-color: var(--bg-white);
}

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

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.why-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.why-list li strong {
    color: var(--text-dark);
}

.cta-section {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--accent-gold);
}

.whatsapp-cta {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.map-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.map-note a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Map Section (Home Page)
   ============================================ */

.map-section-home {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.map-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.map-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-section-home .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    border: 3px solid transparent;
    background: var(--gold-gradient);
    padding: 3px;
}

.map-section-home .map-container iframe {
    border-radius: 9px;
}

.map-marker-note {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(244, 228, 166, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.map-marker-note p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.map-marker-note .map-update-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.map-marker-note a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.map-marker-note a:hover {
    text-decoration: underline;
    color: var(--gold-dark);
}

.map-section-home .map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.map-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.map-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.map-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.map-info-card:hover::before {
    transform: scaleX(1);
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.map-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.map-info-card:nth-child(2) .map-info-icon {
    animation-delay: 0.5s;
}

.map-info-card:nth-child(3) .map-info-icon {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.map-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.map-info-card a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* ============================================
   WhatsApp Chatbot Button
   ============================================ */

.whatsapp-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.chatbot-bubble {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 20px 20px 20px 4px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    max-width: 280px;
    animation: slideInRight 0.5s ease-out;
    position: relative;
    margin-bottom: 0.5rem;
}

.chatbot-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #20ba5a;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

.bubble-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.bubble-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.bubble-close {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.8;
    transition: var(--transition);
    flex-shrink: 0;
}

.bubble-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
    z-index: 2;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chatbot-bubble.hidden {
    display: none;
}

/* ============================================
   3D Saree Animations
   ============================================ */

.saree-animation-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.saree-float {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}

.saree-float-1 {
    width: 250px;
    height: 500px;
    background: var(--gold-gradient);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 5%;
    left: -80px;
    animation: sareeFloat1 20s ease-in-out infinite;
    transform: rotate(-15deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    opacity: 0.12;
    filter: blur(1px);
}

.saree-float-2 {
    width: 220px;
    height: 450px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(184, 148, 31, 0.4) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 45%;
    right: -60px;
    animation: sareeFloat2 25s ease-in-out infinite;
    transform: rotate(20deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    opacity: 0.1;
    filter: blur(1px);
}

.saree-float-3 {
    width: 200px;
    height: 420px;
    background: linear-gradient(45deg, rgba(244, 228, 166, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 10%;
    left: 3%;
    animation: sareeFloat3 22s ease-in-out infinite;
    transform: rotate(-10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    opacity: 0.08;
    filter: blur(1px);
}

.saree-float-4 {
    width: 180px;
    height: 380px;
    background: var(--gold-gradient);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 25%;
    right: 8%;
    animation: sareeFloat4 18s ease-in-out infinite;
    transform: rotate(15deg);
    opacity: 0.1;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.18);
    filter: blur(1px);
}

@keyframes sareeFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg) translateX(0);
    }

    25% {
        transform: translateY(-30px) rotate(-10deg) translateX(20px);
    }

    50% {
        transform: translateY(-60px) rotate(-20deg) translateX(10px);
    }

    75% {
        transform: translateY(-30px) rotate(-12deg) translateX(-10px);
    }
}

@keyframes sareeFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(20deg) translateX(0);
    }

    33% {
        transform: translateY(-40px) rotate(25deg) translateX(-15px);
    }

    66% {
        transform: translateY(-20px) rotate(15deg) translateX(20px);
    }
}

@keyframes sareeFloat3 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg) translateX(0);
    }

    30% {
        transform: translateY(-25px) rotate(-5deg) translateX(15px);
    }

    60% {
        transform: translateY(-50px) rotate(-15deg) translateX(-10px);
    }

    90% {
        transform: translateY(-20px) rotate(-8deg) translateX(5px);
    }
}

@keyframes sareeFloat4 {

    0%,
    100% {
        transform: translateY(0) rotate(15deg) translateX(0);
    }

    40% {
        transform: translateY(-35px) rotate(20deg) translateX(-20px);
    }

    80% {
        transform: translateY(-15px) rotate(10deg) translateX(15px);
    }
}

/* Enhanced Creative UI Elements */
.hero {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.feature-card,
.product-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before,
.product-card:hover::before {
    left: 100%;
}

.feature-card:hover,
.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        flex-direction: column;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
        border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(10px);
        gap: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: calc(100% - 3rem);
        margin: 0 1.5rem;
        text-align: center;
        padding: 1rem;
    }

    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.4);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-points {
        justify-content: center;
    }

    .saree-image-container {
        height: 450px;
    }

    .premium-badge {
        top: 15px;
        right: 15px;
        padding: 0.6rem 1.2rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .products-grid,
    .products-grid-full {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .trust-points {
        flex-direction: column;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .map-info-cards {
        grid-template-columns: 1fr;
    }

    .whatsapp-chatbot {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-bubble {
        max-width: 250px;
        font-size: 0.9rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-wrapper {
        gap: 2rem;
    }

    .saree-image-container {
        height: 350px;
    }

    .premium-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .saree-float-1,
    .saree-float-2,
    .saree-float-3,
    .saree-float-4 {
        opacity: 0.05;
    }
}