/* 
 * Premium Herbal-Themed Stylesheet for Avatara Herbal (Organic Mavo)
 * Designing a rich, trust-building, and responsive UX.
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0e3a21;
    --primary: #1b5e3a;
    --primary-light: #2c7c50;
    --accent-gold: #c59b27;
    --accent-gold-light: #e3c15c;
    --accent-gold-hover: #b0871d;
    --gold-gradient: linear-gradient(135deg, #e3c15c 0%, #c59b27 55%, #a67c17 100%);
    --green-gradient: linear-gradient(135deg, #1b5e3a 0%, #0e3a21 100%);
    --accent-red: #cc3333;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f7f6f1;
    --bg-cream: #fbfaf5;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgba(20, 50, 35, 0.06), 0 1px 2px -1px rgba(20, 50, 35, 0.05);
    --shadow-md: 0 8px 20px -6px rgba(20, 50, 35, 0.12), 0 2px 6px -2px rgba(20, 50, 35, 0.08);
    --shadow-lg: 0 24px 48px -12px rgba(14, 58, 33, 0.18), 0 8px 20px -8px rgba(14, 58, 33, 0.1);
    --shadow-gold: 0 10px 30px -8px rgba(197, 155, 39, 0.45);
    --border-radius: 16px;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(197, 155, 39, 0.25);
    color: var(--primary-dark);
}

/* Header */
header {
    background-color: rgba(251, 250, 245, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(27, 94, 58, 0.08), var(--shadow-sm);
    border-bottom: 1px solid rgba(197, 155, 39, 0.18);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

/* Primary Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold-gradient);
    color: #3a2c07 !important;
    box-shadow: 0 6px 16px -6px rgba(197, 155, 39, 0.55);
    margin-left: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -6px rgba(197, 155, 39, 0.65);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1.5px solid rgba(27, 94, 58, 0.25);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Anchor scroll offset so sticky header doesn't cover section tops */
section[id] {
    scroll-margin-top: 88px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 68px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.02);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: -3px;
}

.lang-switcher a {
    text-decoration: none;
    background-color: transparent;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(27, 94, 58, 0.25);
}

.lang-switcher a:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(27, 94, 58, 0.5);
}

/* Hero Section */
.hero-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(197, 155, 39, 0.12), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(27, 94, 58, 0.14), transparent 50%),
        linear-gradient(135deg, #f2f8f4 0%, #e6f0ea 100%);
    padding: 80px 20px 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

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

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

.badge-ayurvedic {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    border: 1px solid rgba(197, 155, 39, 0.4);
    box-shadow: 0 4px 14px -6px rgba(27, 94, 58, 0.25);
    backdrop-filter: blur(6px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 26px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.7);
    padding: 18px 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    position: relative;
    display: inline-block;
    background: var(--gold-gradient);
    color: #3a2c07;
    padding: 16px 34px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -8px rgba(197, 155, 39, 0.6);
}

.btn-primary:hover::after {
    left: 130%;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -18px;
    background: radial-gradient(circle at 50% 45%, rgba(197, 155, 39, 0.25), transparent 65%);
    filter: blur(30px);
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-white);
    outline: 1px solid rgba(197, 155, 39, 0.3);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-img:hover {
    transform: scale(1.03) translateY(-4px);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Warnings Section */
.section-padding {
    padding: 80px 20px;
}

.section-title-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.35rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-title-wrap .section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 3px;
    background: var(--gold-gradient);
}

.section-title-wrap[style*="left"] .section-title::after {
    margin-left: 0;
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.warning-card {
    position: relative;
    background-color: var(--bg-white);
    padding: 34px 22px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cc3333, #e26a4a);
}

.warning-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.warning-icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 51, 51, 0.1), rgba(204, 51, 51, 0.03));
}

.warning-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Infographic Section */
.info-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(197, 155, 39, 0.07), transparent 40%),
        #f5f3ec;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-img-box img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-white);
    outline: 1px solid rgba(197, 155, 39, 0.25);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-img-box img:hover {
    transform: scale(1.02);
}

.effects-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.effect-item {
    background: var(--bg-white);
    padding: 22px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.effect-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.effect-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.danger-highlight {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.how-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(27, 94, 58, 0.07);
}

.how-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 155, 39, 0.35);
}

.how-number-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(27, 94, 58, 0.14), rgba(197, 155, 39, 0.14));
    border: 1px solid rgba(27, 94, 58, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--primary);
    transition: transform 0.35s ease;
}

.how-card:hover .how-number-icon {
    transform: scale(1.08) rotate(-4deg);
}

.how-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.how-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.how-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Why Choose & Certificates Section */
.why-certificates {
    background-color: var(--bg-white);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-point {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f2f9f5 100%);
    padding: 24px 28px 24px 30px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(27, 94, 58, 0.1);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Gold accent bar down the left edge */
.why-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gold-gradient);
    transform: scaleY(0.35);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.why-point:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 155, 39, 0.45);
}

.why-point:hover::before {
    transform: scaleY(1);
}

/* Circular gradient icon badge */
.why-point span {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(197, 155, 39, 0.22), rgba(27, 94, 58, 0.14));
    border: 1px solid rgba(197, 155, 39, 0.35);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.6), 0 4px 10px -4px rgba(27, 94, 58, 0.3);
    transition: transform 0.35s ease;
}

.why-point:hover span {
    transform: scale(1.08) rotate(-4deg);
}

.why-certificate-poster img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-white);
    outline: 1px solid rgba(197, 155, 39, 0.25);
}

/* How to use section */
.how-to-use-section {
    background-color: #fafaf8;
    text-align: center;
}

.how-use-box {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.how-use-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
}

.how-use-box .icon {
    font-size: 3.2rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.16), rgba(197, 155, 39, 0.04));
}

.how-use-box p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Form Section */
.form-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(197, 155, 39, 0.18), transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(197, 155, 39, 0.12), transparent 45%),
        linear-gradient(135deg, #1b5e3a 0%, #0e3a21 100%);
    color: var(--bg-white);
    position: relative;
}

.form-section .section-title {
    color: var(--bg-white);
}

.form-section .section-title::after {
    background: var(--gold-gradient);
}

.form-section .section-subtitle {
    color: #e2f0e7;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 44px;
    border-radius: 20px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(197, 155, 39, 0.35);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
}

.pricing-block {
    text-align: center;
    background: linear-gradient(135deg, #f3f9f5, #eaf4ee);
    padding: 24px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 2px dashed rgba(197, 155, 39, 0.6);
}

.offer-price {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-badge {
    background-color: var(--accent-red);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.price-numbers {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
}

.mrp-strike {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.cod-badge {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    background-color: #fafbf9;
    border: 1.5px solid #d8dfe0;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5a0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 94, 58, 0.12);
}

.submit-btn {
    position: relative;
    width: 100%;
    background: var(--gold-gradient);
    color: #3a2c07;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    margin-top: 12px;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -8px rgba(197, 155, 39, 0.6);
}

.submit-btn:hover::after {
    left: 130%;
}

/* Thank you page styles */
.thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.thank-you-box {
    max-width: 600px;
    width: 100%;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thank-you-box h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.thank-you-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.order-receipt {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 30px;
}

.order-receipt h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 8px;
}

.order-receipt p {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.order-receipt p span {
    font-weight: 600;
}

/* Admin Dashboard Styles */
.admin-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.admin-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.admin-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    width: 300px;
}

.btn-export, .btn-logout {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-export {
    background-color: var(--primary);
    color: var(--bg-white);
    border: 1px solid var(--primary);
}

.btn-export:hover {
    background-color: var(--primary-dark);
}

.btn-logout {
    background-color: transparent;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.btn-logout:hover {
    background-color: var(--accent-red);
    color: var(--bg-white);
}

.leads-table-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    border: 1px solid #e2e8f0;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.leads-table th {
    background-color: #f1f5f9;
    padding: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 2px solid #cbd5e1;
}

.leads-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.leads-table tr:hover {
    background-color: #f8fafc;
}

.lang-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lang-badge.gu {
    background-color: #dcfce7;
    color: #15803d;
}

.lang-badge.en {
    background-color: #dbeafe;
    color: #1d4ed8;
}

/* Admin Login Card */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.login-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.login-card h2 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* Footer */
footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(197, 155, 39, 0.12), transparent 45%),
        #0c2417;
    color: #a7c2b4;
    padding: 52px 20px 40px;
    text-align: center;
    border-top: 2px solid rgba(197, 155, 39, 0.3);
}

.footer-logo {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a7c2b4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Mobile Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(251, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -6px 20px rgba(14, 58, 33, 0.12);
    padding: 12px 20px;
    z-index: 999;
    display: none; /* Shown via media queries */
    border-top: 1px solid rgba(197, 155, 39, 0.3);
}

.sticky-cta .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 20px 20px;
        background: rgba(251, 250, 245, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(197, 155, 39, 0.25);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 1.05rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(27, 94, 58, 0.06);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image-container {
        order: -1; /* Display image on top of text on mobile/tablet */
    }
    
    .hero-desc {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 56px 20px;
    }

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

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

    .hero-img {
        animation: none;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .brand-logo-img {
        height: 52px;
    }
    
    .brand-name {
        font-size: 1.15rem;
    }
    
    .sticky-cta {
        display: block;
    }
    
    /* Extra padding at bottom of body so sticky CTA doesn't cover content */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .brand-logo-img {
        height: 44px;
    }
    
    .lang-switcher a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .pricing-block {
        padding: 15px 10px;
    }
    
    .offer-price {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-img,
    .pulse-animation {
        animation: none !important;
    }
}
