/* ===== RESET & BASE ===== */
/* Fonts are loaded via <link> in <head> (non-render-blocking with preconnect) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a1a3e;
    --dark-navy: #0d0d2b;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --deep-purple: #2d1b4e;
    --purple-bar: #4a1a6b;
    --green-accent: #1a6b4a;
    --teal: #0a5c4a;
    --white: #ffffff;
    --off-white: #f9f7f2;
    --cream: #fdf8ef;
    --dark-text: #222;
    --grey-text: #666;
    --orange: #e67e22;
    --whatsapp-green: #25D366;
    --burgundy: #7b113a;
}

html {
    scroll-behavior: smooth;
}

#hero,
#categories,
#hampers,
#occasions,
#branding,
#quote {
    scroll-margin-top: 72px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Desktop Navigation (hidden on mobile by default) */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-nav ul li a:hover {
    color: var(--gold);
    background: var(--cream);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--gold);
    background: var(--cream);
}

.nav-dropdown-toggle::after {
    content: "▾";
    font-size: 9px;
}

.nav-dropdown-menu {
    list-style: none;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    padding: 6px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark-text);
    padding: 9px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    color: var(--gold);
    background: var(--cream);
}

.menu-section-label {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 0 6px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-whatsapp {
    width: 36px;
    height: 36px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.header-whatsapp:hover {
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0d0b24 0%, #151138 40%, #1a103c 70%, #2a1548 100%);
    padding: 36px 20px 32px;
    overflow: hidden;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

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

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-brand-name {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.08;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-brand-name span:first-child {
    letter-spacing: 4px;
}

.hero-brand-name span:last-child {
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 4px;
}

.hero-title .highlight {
    font-family: 'Dancing Script', cursive;
    font-size: 34px;
    color: var(--gold-light);
    display: block;
    font-style: italic;
    font-weight: 700;
    margin-top: 2px;
}

.hero-sparkle {
    color: var(--gold);
    font-size: 16px;
    display: block;
    margin: 8px 0;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0 0 18px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Golden ribbon corner decoration */
.hero-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    z-index: 3;
}

.hero-ribbon::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 100px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: rotate(45deg) translateY(-20px);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.5);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: linear-gradient(135deg, #3a0a5c 0%, var(--purple-bar) 50%, #5c2d8e 100%);
    padding: 16px 6px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    text-align: center;
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}

.feature-label {
    font-size: 9px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    padding: 28px 20px 20px;
    position: relative;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-title .diya-icon {
    font-size: 20px;
}

/* ===== EXPLORE OUR GIFTING RANGE CAROUSEL ===== */
.gifting-range-section {
    padding: 16px 12px 24px;
    position: relative;
}

.gifting-range-container {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid #f2ece4;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    padding: 24px 12px 18px;
    position: relative;
    overflow: hidden;
}

/* Top Accent with Gift Icon */
.gifting-range-top-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.accent-line {
    width: 44px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    position: relative;
}

.accent-line::before,
.accent-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5px;
    height: 3.5px;
    background: var(--gold);
    border-radius: 50%;
}

.accent-line:first-child::after {
    right: 0;
}

.accent-line:last-child::before {
    left: 0;
}

.accent-gift-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Heading */
.gifting-range-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #121d33;
    text-align: center;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.range-highlight {
    color: var(--burgundy);
    font-weight: 700;
}

/* Flourish */
.gifting-range-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Carousel Track & Wrapper */
.range-carousel-wrapper {
    position: relative;
    width: 100%;
}

.range-cards-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 6px 4px 14px;
    scrollbar-width: none;
    /* Firefox */
}

.range-cards-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.range-cards-track.grabbing {
    cursor: grabbing;
    user-select: none;
    scroll-snap-type: none;
}

/* Individual Cards */
.range-card {
    flex: 0 0 215px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #ffffff;
    border: 1.5px solid #ece4da;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.range-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.range-card-img-wrap {
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #fbf8f3;
}

.range-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s ease;
}

.range-card:hover .range-card-img-wrap img {
    transform: scale(1.04);
}

.range-card-info {
    padding: 14px 12px 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
    flex: 1;
}

.range-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #121d33;
    margin: 0;
    line-height: 1.25;
}

.range-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #555566;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

.range-card-cta {
    display: inline-block;
    margin-top: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--burgundy);
    transition: transform 0.2s ease;
}

.range-card:hover .range-card-cta {
    transform: translateX(3px);
}

/* Desktop Arrow Buttons */
.carousel-arrow {
    display: none;
    /* hidden on mobile */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e0d6c8;
    color: #121d33;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--burgundy);
    color: #ffffff;
    border-color: var(--burgundy);
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow-prev {
    left: -18px;
}

.carousel-arrow-next {
    right: -18px;
}

/* Footer / Swipe Hint & Dots */
.range-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    padding: 6px 4px;
    flex-wrap: wrap;
}

.swipe-instruction {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.swipe-hand-icon {
    display: flex;
    align-items: center;
    animation: swipeGesture 2s ease-in-out infinite;
}

@keyframes swipeGesture {

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

    50% {
        transform: translateX(-6px);
    }
}

.swipe-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #121d33;
}

.range-dots-track-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.range-track-line {
    width: 30px;
    height: 1.5px;
    background: #dfd7cb;
    display: inline-block;
    border-radius: 1px;
}

.range-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dfd7cb;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.range-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.range-dot.active {
    background: var(--burgundy);
    transform: scale(1.25);
}

/* ===== DIWALI HAMPERS BANNER ===== */
.hampers-banner {
    margin: 0 16px 28px;
    background: linear-gradient(135deg, #0a4a3a 0%, var(--teal) 50%, #0d6b52 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.hampers-text {
    padding: 24px 20px;
    position: relative;
    z-index: 2;
}

.hampers-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hampers-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    line-height: 1.5;
}

.price-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-enquire-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    padding: 9px 18px;
    border: none;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hampers-enquire-btn {
    display: block;
    width: fit-content;
    background: var(--white);
    color: var(--teal);
}

.hampers-enquire-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.hampers-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hampers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PERFECT FOR EVERY OCCASION ===== */
.occasions {
    padding: 0 16px 28px;
}

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

.occasion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.occasion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.occasion-icon {
    font-size: 28px;
    color: var(--gold);
}

.occasion-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: var(--dark-text);
    line-height: 1.3;
}

/* ===== CUSTOM BRANDING ===== */
.custom-branding {
    margin: 0 16px 28px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.branding-image {
    height: 200px;
    overflow: hidden;
}

.branding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branding-content {
    padding: 20px 18px;
}

.branding-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.branding-content .cursive-text {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 8px;
    display: block;
}

.branding-content p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.branding-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.branding-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: var(--white);
    font-weight: 500;
}

.branding-features li .check-icon {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--white);
    flex-shrink: 0;
}

.branding-enquire-btn {
    background: var(--gold);
    color: var(--dark-navy);
}

.branding-enquire-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ===== DIWALI 2026 GIFTING - LEAD CAPTURE ===== */
.diwali-cta-section {
    margin: 0 16px 28px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-purple) 55%, var(--burgundy) 100%);
    border-radius: 16px;
    padding: 28px 18px;
    overflow: hidden;
}

.diwali-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.diwali-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.diwali-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
}

.diwali-cta-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
}

.diwali-cta-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.diwali-cta-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
}

.diwali-cta-checklist .check-icon {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--white);
    flex-shrink: 0;
}

.diwali-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cta-call,
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-call {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-cta-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    border: 1.5px solid transparent;
}

.btn-cta-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.diwali-cta-form-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.form-card-subtitle {
    font-size: 11px;
    color: var(--grey-text);
    margin-bottom: 16px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-label .required {
    color: var(--burgundy);
}

.quote-form input,
.quote-form textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    color: var(--dark-text);
    /* 16px minimum prevents iOS Safari from auto-zooming the page on focus */
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #9a9a9a;
    font-size: 16px;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 2px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox-field input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--burgundy);
    flex-shrink: 0;
}

.form-checkbox-text {
    font-size: 11.5px;
    line-height: 1.45;
    color: var(--dark-text);
    font-weight: 500;
}

.btn-quote {
    margin-top: 4px;
    padding: 12px 22px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #5c0d2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 17, 58, 0.4);
}

.form-card-footnote {
    margin-top: 14px;
    text-align: center;
    font-size: 10px;
    color: var(--grey-text);
}

/* ===== QUICK ENQUIRY MODAL ===== */
.enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 43, 0.7);
    z-index: 299;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.enquiry-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.enquiry-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    width: calc(100% - 32px);
    max-width: 420px;
    max-height: 88vh;
    overflow-y: auto;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 16px;
}

.enquiry-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.enquiry-modal-card {
    position: relative;
    background: var(--cream);
    border-radius: 16px;
    padding: 26px 20px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.enquiry-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--dark-text);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.enquiry-close:hover {
    background: rgba(0, 0, 0, 0.12);
}

.enquiry-product-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    background: rgba(123, 17, 58, 0.1);
    color: var(--burgundy);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.enquiry-product-tag:empty {
    display: none;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 55%, var(--deep-purple) 100%);
    padding: 40px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-badge {
    display: inline-block;
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    line-height: 0;
}

.footer-logo-badge img {
    display: block;
    height: 38px;
    width: auto;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span,
.footer-contact a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    cursor: pointer;
}

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

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== STICKY BOTTOM BAR ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 100;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
}

.bottom-call,
.bottom-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.bottom-call {
    background: var(--navy);
    color: var(--white);
}

.bottom-call:hover {
    background: #252560;
}

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

.bottom-whatsapp:hover {
    background: #1ebe5d;
}

.bottom-bar-spacer {
    height: 56px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-purple) 100%);
    z-index: 200;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    overflow-y: auto;
}

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

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.menu-header {
    margin-bottom: 30px;
    padding-top: 10px;
}

.menu-header img {
    height: 50px;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu nav ul li.menu-section-label {
    border-bottom: none;
}

.mobile-menu nav ul li a {
    display: block;
    padding: 14px 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu nav ul li a:hover {
    color: var(--gold);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ===== DIYA DIVIDER ===== */
.diya-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
}

.diya-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.diya-divider .diya {
    font-size: 18px;
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {

    /* Header */
    .header {
        padding: 14px 40px;
    }

    .header-logo img {
        height: 44px;
    }

    .header-whatsapp {
        width: 42px;
        height: 42px;
    }

    /* Hero */
    .hero {
        padding: 50px 40px 45px;
        min-height: 440px;
    }

    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
        max-width: 920px;
        margin: 0 auto;
    }

    .hero-brand-name {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title .highlight {
        font-size: 42px;
    }

    .hero-sparkle {
        font-size: 18px;
        margin: 10px 0;
    }

    .hero-desc {
        font-size: 14px;
        margin: 0 0 22px;
    }

    .btn-whatsapp,
    .btn-call {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-image img {
        max-width: 360px;
        border-radius: 16px;
    }

    /* Features Bar */
    .features-bar {
        padding: 22px 40px;
        gap: 12px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-label {
        font-size: 11px;
    }

    /* Section Titles */
    .section-title {
        padding: 40px 40px 28px;
    }

    .section-title h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* Gifting Range Carousel - Tablet */
    .gifting-range-section {
        padding: 36px 36px 36px;
    }

    .gifting-range-container {
        padding: 32px 28px 24px;
        border-radius: 28px;
    }

    .gifting-range-title {
        font-size: 28px;
    }

    .range-card {
        flex: 0 0 240px;
    }

    .range-card-img-wrap {
        height: 230px;
    }

    .range-card-title {
        font-size: 16px;
    }

    .range-card-desc {
        font-size: 12.5px;
    }

    .swipe-text {
        font-size: 13px;
    }

    /* Hampers Banner */
    .hampers-banner {
        margin: 0 40px 36px;
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
        min-height: 220px;
    }

    .hampers-image {
        height: 100%;
    }

    .hampers-text {
        padding: 32px 30px;
    }

    .hampers-text h3 {
        font-size: 22px;
    }

    .hampers-text p {
        font-size: 14px;
    }

    .price-tag {
        font-size: 14px;
        padding: 9px 22px;
    }

    /* Occasions */
    .occasions {
        padding: 0 40px 36px;
    }

    .occasions-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .occasion-icon {
        font-size: 34px;
    }

    .occasion-label {
        font-size: 12px;
    }

    /* Custom Branding */
    .custom-branding {
        margin: 0 40px 36px;
        grid-template-columns: 2fr 3fr;
        border-radius: 20px;
    }

    .branding-image {
        height: 100%;
    }

    .branding-content {
        padding: 28px 24px;
    }

    .branding-features {
        grid-template-columns: 1fr 1fr;
    }

    .branding-content h3 {
        font-size: 20px;
    }

    .branding-content .cursive-text {
        font-size: 20px;
    }

    .branding-content p {
        font-size: 13px;
    }

    .branding-features li {
        font-size: 12px;
    }

    /* Diwali CTA Section */
    .diwali-cta-section {
        margin: 0 40px 36px;
        border-radius: 20px;
        padding: 40px 36px;
    }

    .diwali-cta-title {
        font-size: 26px;
    }

    .diwali-cta-desc {
        font-size: 13px;
    }

    .diwali-cta-checklist {
        grid-template-columns: 1fr 1fr;
    }

    .form-card-title {
        font-size: 20px;
    }

    .quote-form input,
    .quote-form textarea {
        font-size: 16px;
        padding: 12px 16px;
    }

    .btn-quote {
        font-size: 14px;
        padding: 13px 24px;
    }

    /* Footer */
    .site-footer {
        padding: 52px 40px 24px;
    }

    .footer-container {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {

    /* Show desktop nav, hide hamburger */
    .hamburger {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .header {
        padding: 12px 60px;
        gap: 20px;
    }

    .header-logo img {
        height: 48px;
    }

    /* Hero */
    .hero {
        padding: 65px 60px 60px;
        min-height: 520px;
    }

    .hero::before {
        width: 450px;
        height: 450px;
    }

    .hero-content {
        max-width: 1200px;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 50px;
    }

    .hero-brand-name {
        font-size: 54px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .hero-brand-name span:first-child {
        letter-spacing: 5px;
    }

    .hero-brand-name span:last-child {
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title .highlight {
        font-size: 50px;
    }

    .hero-sparkle {
        font-size: 20px;
        margin: 12px 0 10px;
    }

    .hero-desc {
        font-size: 16px;
        max-width: 460px;
        margin: 0 0 28px;
    }

    .btn-whatsapp,
    .btn-call {
        padding: 14px 30px;
        font-size: 15px;
        gap: 8px;
    }

    .hero-image img {
        max-width: 480px;
        border-radius: 18px;
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
    }

    .hero-ribbon {
        width: 100px;
        height: 100px;
    }

    .hero-ribbon::before {
        width: 140px;
        height: 40px;
    }

    /* Features Bar */
    .features-bar {
        padding: 26px 80px;
        gap: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 34px;
        height: 34px;
    }

    .feature-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Section Titles */
    .section-title {
        padding: 52px 60px 32px;
    }

    .section-title h2 {
        font-size: 28px;
        letter-spacing: 4px;
        gap: 16px;
    }

    .section-title .diya-icon {
        font-size: 26px;
    }

    /* Gifting Range Carousel - Desktop */
    .gifting-range-section {
        padding: 48px 60px 48px;
        max-width: 1240px;
        margin: 0 auto;
    }

    .gifting-range-container {
        padding: 40px 40px 30px;
        border-radius: 32px;
    }

    .gifting-range-title {
        font-size: 34px;
    }

    .carousel-arrow {
        display: flex;
    }

    .range-cards-track {
        gap: 20px;
        padding: 10px 6px 18px;
    }

    .range-card {
        flex: 0 0 260px;
    }

    .range-card-img-wrap {
        height: 255px;
    }

    .range-card-title {
        font-size: 16.5px;
    }

    .range-card-desc {
        font-size: 13px;
    }

    .swipe-text {
        font-size: 13px;
    }

    .range-dot {
        width: 9px;
        height: 9px;
    }

    /* Hampers Banner */
    .hampers-banner {
        margin: 0 80px 48px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 24px;
        min-height: 280px;
    }

    .hampers-text {
        padding: 40px 48px;
    }

    .hampers-text h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hampers-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .price-tag {
        font-size: 16px;
        padding: 12px 28px;
        border-radius: 6px;
    }

    /* Occasions */
    .occasions {
        padding: 0 80px 48px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .occasions-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .occasion-item {
        padding: 24px 12px;
        border-radius: 16px;
    }

    .occasion-icon {
        font-size: 40px;
    }

    .occasion-label {
        font-size: 13px;
    }

    /* Custom Branding */
    .custom-branding {
        margin: 0 auto 48px;
        max-width: 1200px;
        border-radius: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .branding-content {
        padding: 40px 40px;
    }

    .branding-content h3 {
        font-size: 26px;
        margin-bottom: 4px;
    }

    .branding-content .cursive-text {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .branding-content p {
        font-size: 15px;
        margin-bottom: 20px;
        max-width: 400px;
    }

    .branding-features {
        gap: 14px;
    }

    .branding-features li {
        font-size: 14px;
        gap: 10px;
    }

    .branding-features li .check-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    /* Diwali CTA Section */
    .diwali-cta-section {
        margin: 0 auto 48px;
        max-width: 1200px;
        border-radius: 24px;
        padding: 56px 60px;
    }

    .diwali-cta-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: start;
    }

    .diwali-cta-title {
        font-size: 32px;
    }

    .diwali-cta-desc {
        font-size: 15px;
        max-width: 460px;
    }

    .diwali-cta-checklist li {
        font-size: 13px;
    }

    .diwali-cta-buttons {
        gap: 14px;
    }

    .btn-cta-call,
    .btn-cta-whatsapp {
        padding: 13px 26px;
        font-size: 14px;
    }

    .diwali-cta-form-card {
        padding: 30px 28px;
    }

    .form-card-title {
        font-size: 22px;
    }

    .form-card-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .quote-form input,
    .quote-form textarea {
        font-size: 16px;
        padding: 13px 18px;
    }

    .btn-quote {
        font-size: 14px;
        padding: 14px 24px;
    }

    /* Hide bottom bar on desktop */
    .bottom-bar {
        display: none;
    }

    .bottom-bar-spacer {
        height: 0;
    }

    /* Footer */
    .site-footer {
        padding: 60px 60px 26px;
    }

    .footer-container {
        grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-tagline {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ======================================== */
@media (min-width: 1400px) {
    .header {
        padding: 14px 120px;
    }

    .desktop-nav ul li a {
        font-size: 15px;
        padding: 10px 18px;
    }

    .hero {
        padding: 80px 120px 70px;
        min-height: 560px;
    }

    .hero-content {
        max-width: 1400px;
        gap: 60px;
    }

    .hero-brand-name {
        font-size: 64px;
        letter-spacing: 4px;
        margin-bottom: 26px;
    }

    .hero-brand-name span:first-child {
        letter-spacing: 6px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-title .highlight {
        font-size: 58px;
    }

    .hero-desc {
        font-size: 17px;
        max-width: 500px;
        margin: 0 0 30px;
    }

    .hero-image img {
        max-width: 550px;
    }

    .features-bar {
        padding: 30px 120px;
        gap: 30px;
    }

    .gifting-range-section,
    .occasions {
        max-width: 1400px;
    }

    .range-card {
        flex: 0 0 280px;
    }

    .range-card-img-wrap {
        height: 275px;
    }

    .hampers-banner,
    .custom-branding,
    .diwali-cta-section {
        max-width: 1400px;
    }
}

/* ========================================
   LEGAL / POLICY PAGES
   ======================================== */
.policy-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 55%, var(--deep-purple) 100%);
    padding: 40px 20px 32px;
    text-align: center;
}

.policy-eyebrow {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.policy-page {
    background: var(--off-white);
    padding: 32px 16px 48px;
}

.policy-content {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.policy-content > p:first-child {
    margin-bottom: 20px;
    color: var(--grey-text);
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 26px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #f2ece4;
}

.policy-section p {
    color: var(--grey-text);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.policy-section ul {
    list-style: none;
    margin-bottom: 10px;
}

.policy-section ul li {
    color: var(--grey-text);
    font-size: 14.5px;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.policy-section ul li::before {
    content: "•";
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    left: 4px;
}

.policy-contact-block {
    background: var(--cream);
    border: 1px solid #f2ece4;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 6px;
}

.policy-contact-block a {
    color: var(--burgundy);
    font-weight: 600;
}

.footer-legal {
    max-width: 1200px;
    margin: 14px auto 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

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

@media (min-width: 768px) {
    .policy-hero {
        padding: 56px 40px 44px;
    }

    .policy-hero h1 {
        font-size: 36px;
    }

    .policy-page {
        padding: 48px 40px 64px;
    }

    .policy-content {
        padding: 44px 48px;
    }

    .footer-legal {
        justify-content: flex-start;
    }
}

/* ===== ABOUT US PAGE ===== */
.about-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 10px;
}

.about-offer-item {
    background: var(--cream);
    border: 1px solid #f2ece4;
    border-radius: 10px;
    padding: 14px 16px;
}

.about-offer-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-offer-item p {
    font-size: 13.5px;
    color: var(--grey-text);
    margin-bottom: 0;
}

.process-steps {
    list-style: none;
    counter-reset: process;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
}

.process-steps li {
    counter-increment: process;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.process-steps li::before {
    content: counter(process);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps h3 {
    font-size: 14.5px;
    color: var(--navy);
    margin-bottom: 2px;
}

.process-steps p {
    font-size: 13.5px;
    color: var(--grey-text);
    margin-bottom: 0;
}

.about-cta-banner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 55%, var(--deep-purple) 100%);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    margin-top: 8px;
}

.about-cta-banner h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 19px;
    margin-bottom: 8px;
    border-bottom: none;
    padding-bottom: 0;
}

.about-cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    margin-bottom: 16px;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

@media (min-width: 480px) {
    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== CONTACT US PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-info-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px 0 0;
}

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

.contact-info-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text a {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 14px;
}

.contact-info-text span {
    display: block;
    font-size: 11px;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info-text p {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.5;
    margin: 0;
}

.contact-map {
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f2ece4;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

@media (min-width: 768px) {
    .about-offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}