/* ==========================================================================
   KRISHNA DESIGNER – PREMIUM STYLING SYSTEM
   Color Palette inspired by the Krishna Designer logo:
   Deep Charcoal/Black + Royal Gold + Ivory/Cream + Accent Maroon
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    /* Core Colors */
    --charcoal:       #1A1A1A;
    --charcoal-mid:   #2C2C2C;
    --charcoal-soft:  #3D3D3D;
    --gold:           #C9A84C;
    --gold-light:     #E2C97E;
    --gold-dark:      #A07830;
    --ivory:          #FAF7F2;
    --ivory-dark:     #F2EDE4;
    --maroon:         #7B2D3E;
    --maroon-light:   #9C3A4D;
    --white:          #FFFFFF;
    --dark-text:      #1A1A1A;
    --mid-text:       #4A4A4A;
    --light-text:     #7A7A7A;
    --error-color:    #C0392B;

    /* Typography */
    --font-serif:     'Cormorant Garamond', Georgia, serif;
    --font-heading:   'Outfit', sans-serif;
    --font-body:      'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-xs:      0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-soft:    0 8px 24px rgba(26, 26, 26, 0.08);
    --shadow-medium:  0 16px 40px rgba(26, 26, 26, 0.12);
    --shadow-heavy:   0 24px 60px rgba(26, 26, 26, 0.18);
    --shadow-gold:    0 8px 24px rgba(201, 168, 76, 0.30);
    --shadow-gold-lg: 0 16px 40px rgba(201, 168, 76, 0.25);

    /* Transitions */
    --ease-smooth:    all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-fast:      all 0.25s ease;
    --ease-bounce:    all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Glassmorphism */
    --glass-bg:       rgba(255, 255, 255, 0.92);
    --glass-border:   rgba(201, 168, 76, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

/* --- Common Section Elements --- */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
}

.section-tag.text-left { text-align: left; }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.section-title.text-left { text-align: left; }

.gold-divider {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

.gold-divider.text-left { margin: 0 0 16px 0; }


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--ease-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-call {
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
    color: var(--gold-light);
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-call svg { width: 16px; height: 16px; }

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
    color: var(--gold-light);
    padding: 16px 32px;
    font-size: 1rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-soft);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.icon-send { width: 18px; height: 18px; }


/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--ease-smooth);
    padding: 16px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    background-color: rgba(250, 247, 242, 0.97);
}

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

.logo-area { display: flex; align-items: center; }

.brand-logo {
    height: 56px;
    width: auto;
    transition: var(--ease-smooth);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.header.scrolled .brand-logo { height: 76px; }

/* Nav */
.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--charcoal-soft);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: var(--ease-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--charcoal), var(--gold-dark));
    border-radius: 4px;
    transition: var(--ease-smooth);
}

.mobile-toggle.active .bar-1 { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active .bar-2 { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active .bar-3 { transform: rotate(-45deg) translate(6px, -6px); }


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 0;
    margin-top: 88px;
    width: 100%;
    background-color: var(--charcoal);
}

.hero-banner-container {
    width: 100%;
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 620px;
    object-position: center;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(26, 26, 26, 0.80) 0%,
        rgba(26, 26, 26, 0.55) 45%,
        rgba(26, 26, 26, 0.15) 75%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 560px;
    padding: 0 48px;
    animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(201, 168, 76, 0.25);
    flex-shrink: 0;
}


/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    background-color: var(--ivory);
    padding: 100px 0;
}

/* Decorative BG ornament */
.categories-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.12);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 26, 26, 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: var(--ease-smooth);
    animation-delay: var(--delay, 0s);
}

.cat-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background-color: var(--ivory-dark);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.65) 0%,
        rgba(26, 26, 26, 0.0) 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--ease-smooth);
}

.cat-cta {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    transform: translateY(10px);
    transition: var(--ease-smooth);
}

.cat-body {
    padding: 22px 20px 24px;
    border-top: 1px solid rgba(26, 26, 26, 0.05);
}

.cat-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    transition: var(--ease-fast);
}

.cat-desc {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.5;
    transition: var(--ease-fast);
}

/* Hover */
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(201, 168, 76, 0.2);
}

.category-card:hover .cat-img { transform: scale(1.08); }
.category-card:hover .cat-overlay { opacity: 1; }
.category-card:hover .cat-cta { transform: translateY(0); }
.category-card:hover .cat-name { color: var(--gold-dark); }


/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--white);
    padding: 60px 0;
}

/* Dark radial glow bg */
.about-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-content { padding-right: 10px; }

.about-desc {
    font-size: 0.95rem;
    color: var(--mid-text);
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-desc strong { color: var(--charcoal); font-weight: 700; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-top: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--ivory);
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: var(--ease-fast);
}

.feature-item:hover {
    background: var(--ivory-dark);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
}

.feature-icon svg { width: 14px; height: 14px; stroke: var(--white); }

.feature-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.88rem;
    line-height: 1.3;
}

/* Shop Image Card */
.about-media { display: flex; flex-direction: column; gap: 16px; }

.shop-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.shop-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

.shop-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.shop-image-card:hover .shop-img { transform: scale(1.03); }

.shop-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
    z-index: 3;
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.12), var(--shadow-gold); }
}

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

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.badge-lbl {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mini image grid */
.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.about-mini-grid img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: var(--ease-smooth);
    cursor: pointer;
}

.about-mini-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-section {
    background-color: var(--ivory);
    padding: 70px 0;
}

.testimonial-slider-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    padding: 0 56px;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 52px 48px;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 36px; right: 44px;
    color: rgba(201, 168, 76, 0.12);
}

.quote-icon svg { width: 72px; height: 72px; }

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--mid-text);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    flex-shrink: 0;
}

.text-avatar-maroon { background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); }
.text-avatar-gold   { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--charcoal); }
.text-avatar-purple { background: linear-gradient(135deg, #4C1D95, #6B21A8); }

.user-info h4 {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 700;
    font-family: var(--font-heading);
}

.user-role {
    font-size: 0.82rem;
    color: var(--light-text);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
    z-index: 10;
    transition: var(--ease-smooth);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
    color: var(--gold-light);
    border-color: var(--charcoal);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn svg { width: 20px; height: 20px; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.dot {
    width: 8px; height: 8px;
    background: var(--ivory-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--ease-smooth);
    border: 1px solid rgba(26,26,26,0.1);
}

.dot.active {
    width: 28px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 10px;
    border-color: transparent;
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: var(--charcoal);
    padding: 100px 0;
}

/* Override heading colors for dark bg */
.contact-section .section-tag { color: var(--gold-light); }
.contact-section .section-title { color: var(--ivory); }

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.7rem;
    color: var(--ivory);
    margin-bottom: 14px;
}

.contact-info-subtitle {
    color: rgba(250, 247, 242, 0.65);
    margin-bottom: 36px;
    font-size: 0.98rem;
    line-height: 1.7;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--ease-fast);
}

.info-item:hover .info-icon {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.info-icon svg { width: 20px; height: 20px; }

.info-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.info-text p {
    color: rgba(250, 247, 242, 0.8);
    font-size: 0.96rem;
    line-height: 1.6;
}

.info-text a {
    color: rgba(250, 247, 242, 0.8);
    transition: color 0.2s;
}

.info-text a:hover { color: var(--gold-light); }

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-soft);
}

.map-container iframe { display: block; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-form h3 {
    font-size: 1.55rem;
    color: var(--charcoal);
    margin-bottom: 28px;
    font-family: var(--font-serif);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal-soft);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(26, 26, 26, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--ivory);
    transition: var(--ease-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.error-msg {
    font-size: 0.78rem;
    color: var(--error-color);
    font-weight: 500;
    display: none;
}

.form-group.has-error .error-msg { display: block; }


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #111111; }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 48px;
}

.footer-col-brand { max-width: 320px; }

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 94px;
    width: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(0deg);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(250, 247, 242, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 247, 242, 0.6);
    transition: var(--ease-smooth);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(250, 247, 242, 0.55);
    font-size: 0.92rem;
    transition: var(--ease-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-links a:hover::before { width: 12px; }

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(250, 247, 242, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-info svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info a {
    color: rgba(250, 247, 242, 0.55);
}

.footer-contact-info a:hover { color: var(--gold-light); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    background: #0D0D0D;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: rgba(250, 247, 242, 0.35);
    font-size: 0.82rem;
}

.footer-tagline {
    color: rgba(201, 168, 76, 0.5) !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px;
}


/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--ease-bounce);
    position: relative;
}

.float-btn:hover { transform: scale(1.12) translateY(-4px); }

.float-whatsapp {
    background: #25D366;
    color: var(--white);
}

.float-whatsapp svg { width: 26px; height: 26px; }

.float-call {
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.float-call svg { width: 22px; height: 22px; }

.tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.float-btn:hover .tooltip { opacity: 1; }

.tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right: none;
    border-left-color: var(--charcoal);
}


/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9999;
    background: var(--charcoal);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 280px;
    box-shadow: var(--shadow-heavy);
    transform: translateX(140%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.toast-icon svg { width: 16px; height: 16px; }

.toast-text h4 {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.toast-text p {
    font-size: 0.82rem;
    color: rgba(250, 247, 242, 0.6);
    line-height: 1.4;
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Video pulse (kept for compatibility) */
@keyframes videoPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 0.2; transform: scale(1.1); }
}


/* ==========================================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col-brand { max-width: 100%; grid-column: span 2; }

    .about-grid { gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ==========================================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
    section { padding: 72px 0; }

    /* Header */
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--ivory);
        padding: 96px 32px 40px;
        box-shadow: -4px 0 40px rgba(26,26,26,0.15);
        transform: translateX(100%);
        transition: var(--ease-smooth);
        z-index: 1050;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-menu.open { transform: translateX(0); }

    .nav-list { flex-direction: column; gap: 28px; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .mobile-toggle { display: flex; }

    .btn-call span { display: none; }
    .btn-call { padding: 12px; }
    .btn-call svg { width: 20px; height: 20px; }

    /* Hero */
    .hero-section { margin-top: 72px; }
    .hero-banner-container { min-height: 300px; }
    .hero-banner-img { max-height: 420px; }
    .hero-content { padding: 0 24px; max-width: 100%; }
    .hero-title { font-size: 2.5rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .trust-bar-inner { gap: 0; padding: 12px 0; }
    .trust-item { padding: 8px 16px; font-size: 0.8rem; }
    .trust-divider { display: none; }

    /* Categories */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-content { padding-right: 0; }
    .about-features { grid-template-columns: 1fr; }
    .about-mini-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .about-mini-grid img { height: 70px; }
    .shop-img { height: 280px; }

    /* Testimonial */
    .testimonial-slider-container { padding: 0 40px; }
    .testimonial-card { padding: 36px 28px; }
    .testimonial-text { font-size: 1.05rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-wrapper { padding: 32px 24px; }
    .form-group-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-col-brand { grid-column: span 1; }
    .footer-bottom-flex { flex-direction: column; align-items: center; text-align: center; }
}


/* ==========================================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; gap: 16px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .about-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-actions { bottom: 20px; right: 16px; }
    .float-btn { width: 48px; height: 48px; }
}
