/* ============================================================
   GRAHMILAN.COM - MAIN STYLESHEET
   ============================================================ */

:root {
    --color-primary: #c8102e;
    --color-primary-dark: #8b0a1f;
    --color-secondary: #d4a017;
    --color-accent: #fb923c;
    --color-dark: #1a0f1f;
    --color-cream: #fdf8f0;
    --color-text: #2d1b2e;
    --color-text-light: #5a4a5e;
    --color-border: #e8d5b7;
    
    --gradient-cosmic: linear-gradient(135deg, #1a0f1f 0%, #4a1a3e 50%, #8b0a1f 100%);
    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f4c842 50%, #d4a017 100%);
    --gradient-sunset: linear-gradient(135deg, #c8102e 0%, #fb923c 100%);
    
    --font-display: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-hindi: 'Tiro Devanagari Hindi', serif;
    
    --shadow-soft: 0 4px 20px rgba(26, 15, 31, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 15, 31, 0.15);
    --shadow-strong: 0 20px 60px rgba(26, 15, 31, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-dark); }
.logo-icon {
    font-size: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 160, 23, 0.3));
    animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 0.5px;
}
.logo-sub { font-size: 11px; color: var(--color-text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: width 0.3s;
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 100%; }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 28px; flex-direction: column; justify-content: space-between; }
.mobile-menu-toggle span { display: block; height: 3px; background: var(--color-primary); border-radius: 2px; }

/* HERO */
.hero {
    position: relative;
    background: var(--gradient-cosmic);
    color: var(--color-cream);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent),
        radial-gradient(2px 2px at 70% 40%, white, transparent),
        radial-gradient(1px 1px at 40% 20%, white, transparent);
    background-size: 250px 250px;
    opacity: 0.3;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes twinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.om-symbol {
    font-size: 56px;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 16px;
    animation: rotate 30s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hero-subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* FORM TABS */
.form-section { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.form-tabs { display: flex; gap: 0; margin-bottom: -2px; padding: 0 20px; }
.form-tab {
    flex: 1;
    padding: 16px 20px;
    background: rgba(253, 248, 240, 0.5);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-tab.active {
    background: var(--color-cream);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    border-bottom-color: var(--color-cream);
}
.form-tab:hover:not(.active) { background: rgba(253, 248, 240, 0.8); color: var(--color-text); }
.form-tab-icon { font-size: 20px; }

.form-card {
    background: var(--color-cream);
    border-radius: 0 24px 24px 24px;
    padding: 40px;
    box-shadow: var(--shadow-strong);
    color: var(--color-text);
    border: 2px solid var(--color-secondary);
    position: relative;
}
.form-content { display: none; }
.form-content.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-header { text-align: center; margin-bottom: 28px; }
.form-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 700;
}
.form-header p { font-size: 14px; color: var(--color-text-light); }

.kundali-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label .icon { color: var(--color-primary); font-size: 14px; }
.form-group input, .form-group select {
    padding: 13px 16px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    background: white;
    transition: all 0.3s;
    color: var(--color-text);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.gender-options { display: flex; gap: 12px; }
.gender-option { flex: 1; position: relative; }
.gender-option input { position: absolute; opacity: 0; }
.gender-option label {
    display: block;
    padding: 13px;
    text-align: center;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    background: white;
}
.gender-option input:checked + label {
    background: var(--gradient-sunset);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.partner-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px dashed var(--color-border);
    position: relative;
}
.partner-section::before {
    content: '💑';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-cream);
    padding: 0 12px;
    font-size: 24px;
}
.partner-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-submit {
    background: var(--gradient-sunset);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200, 16, 46, 0.4); }

/* SECTIONS */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}
.section-subtitle { font-size: 17px; color: var(--color-text-light); max-width: 650px; margin: 0 auto; }

/* FEATURES */
.features { background: white; position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--color-cream);
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: var(--color-secondary); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
    position: relative;
}
.feature-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--color-secondary);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 700;
}
.feature-card p { color: var(--color-text-light); font-size: 15px; line-height: 1.6; }

/* ZODIAC */
.zodiac-section {
    background: var(--gradient-cosmic);
    color: white;
    position: relative;
    overflow: hidden;
}
.zodiac-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 160, 23, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(251, 146, 60, 0.15) 0%, transparent 60%);
}
.zodiac-section .section-title { color: white; }
.zodiac-section .section-subtitle { color: rgba(255,255,255,0.8); }
.zodiac-section .section-eyebrow { color: var(--color-secondary); }
.zodiac-section .section-eyebrow::before, .zodiac-section .section-eyebrow::after { background: var(--color-secondary); }
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}
.zodiac-card {
    background: rgba(253, 248, 240, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.zodiac-card:hover {
    transform: translateY(-4px);
    background: rgba(253, 248, 240, 0.1);
    border-color: var(--color-secondary);
}
.zodiac-symbol { font-size: 40px; margin-bottom: 8px; color: var(--color-secondary); }
.zodiac-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.zodiac-hindi { font-size: 12px; color: rgba(255,255,255,0.6); }

/* WHY CHOOSE */
.why-choose { background: var(--color-cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; text-align: center; }
.mandala-bg {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mandala-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0.1;
    border-radius: 50%;
}
.mandala-bg::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px dashed var(--color-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}
.mandala-content {
    position: relative;
    z-index: 2;
    font-size: 180px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-points { list-style: none; margin-top: 32px; }
.why-points li { padding: 16px 0; display: flex; gap: 16px; align-items: flex-start; border-bottom: 1px solid var(--color-border); }
.why-points li:last-child { border-bottom: none; }
.why-point-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-sunset);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.why-point-content h4 { font-family: var(--font-display); font-size: 18px; color: var(--color-dark); margin-bottom: 4px; font-weight: 700; }
.why-point-content p { font-size: 14px; color: var(--color-text-light); line-height: 1.5; }

/* SEO SECTION */
.seo-section { background: white; padding: 60px 0; }
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content h2 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}
.seo-content h3 {
    font-family: var(--font-display);
    color: var(--color-dark);
    margin: 28px 0 12px;
    font-size: 22px;
    font-weight: 700;
}
.seo-content p { color: var(--color-text); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.seo-content strong { color: var(--color-primary); }

/* FOOTER */
.site-footer {
    background: var(--color-dark);
    color: rgba(253, 248, 240, 0.8);
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; position: relative; z-index: 2; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-title { color: var(--color-secondary); font-size: 26px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}
.footer-social a:hover { background: var(--color-secondary); transform: translateY(-3px); }
.footer-heading { font-family: var(--font-display); color: var(--color-secondary); font-size: 18px; margin-bottom: 16px; font-weight: 700; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { padding: 6px 0; font-size: 14px; }
.footer-links a { color: rgba(253, 248, 240, 0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--color-secondary); }
.footer-bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    position: relative;
    z-index: 2;
}
.footer-disclaimer { margin-top: 12px; font-size: 12px; opacity: 0.7; max-width: 800px; margin-left: auto; margin-right: auto; }

/* PAGE-SPECIFIC: DOWNLOAD PAGE */
.download-hero {
    background: var(--gradient-cosmic);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.download-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(2px 2px at 30% 40%, white, transparent),
        radial-gradient(2px 2px at 70% 60%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(2px 2px at 80% 30%, white, transparent);
    background-size: 200px 200px;
    opacity: 0.3;
    animation: twinkle 4s ease-in-out infinite;
}
.kundali-result {
    background: rgba(253, 248, 240, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
    z-index: 2;
}
.kundali-result h2 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    font-size: 24px;
    margin-bottom: 16px;
}
.kundali-blur {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}
.download-prompt {
    background: var(--color-cream);
    color: var(--color-text);
    padding: 60px 0;
    text-align: center;
}
.btn-download-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gradient-gold);
    color: var(--color-dark);
    padding: 20px 50px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s;
    box-shadow: 0 12px 35px rgba(212, 160, 23, 0.4);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 24px 0;
}
.btn-download-big:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(212, 160, 23, 0.5); }
.app-info-row { display: flex; justify-content: center; gap: 40px; margin: 24px 0; flex-wrap: wrap; }
.app-info-item { text-align: center; }
.app-info-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--color-primary); }
.app-info-label { font-size: 13px; color: var(--color-text-light); }

/* PAGE-SPECIFIC: LEGAL PAGES */
.legal-page { background: var(--color-cream); padding: 60px 0; min-height: 60vh; }
.legal-content { max-width: 900px; margin: 0 auto; background: white; padding: 50px; border-radius: 16px; box-shadow: var(--shadow-soft); }
.legal-content h1 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}
.legal-content h2 {
    font-family: var(--font-display);
    color: var(--color-dark);
    font-size: 22px;
    margin: 28px 0 12px;
}
.legal-content p { line-height: 1.8; margin-bottom: 14px; color: var(--color-text); }
.legal-content ul { margin: 12px 0 16px 24px; }
.legal-content li { padding: 4px 0; line-height: 1.7; }
.last-updated { text-align: center; color: var(--color-text-light); font-size: 14px; margin-bottom: 30px; }

/* CONTACT PAGE */
.contact-form { max-width: 600px; margin: 40px auto; }
.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.contact-error {
    background: #f8d7da;
    color: #721c24;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

/* THANK YOU PAGE */
.thank-you {
    background: var(--gradient-cosmic);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.thank-you-content { position: relative; z-index: 2; max-width: 600px; padding: 0 24px; }
.thank-you-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.thank-you h1 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}
.thank-you p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; line-height: 1.6; }
.thank-you-instructions {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
    text-align: left;
}
.thank-you-instructions h3 { color: var(--color-secondary); margin-bottom: 12px; font-family: var(--font-display); }
.thank-you-instructions ol { margin-left: 20px; }
.thank-you-instructions li { padding: 4px 0; }
.btn-back-home {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-dark);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        gap: 16px;
    }
    .main-nav.active { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .mandala-bg { width: 300px; height: 300px; }
    .mandala-content { font-size: 140px; }
}
@media (max-width: 640px) {
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 70px; }
    section { padding: 60px 0; }
    .form-card { padding: 28px 20px; }
    .form-tab { font-size: 13px; padding: 14px 10px; }
    .legal-content { padding: 30px 20px; }
}
