/*
   Gita Yatra - Architectural Spirituality Design System
   Version: 2.2
*/

:root {
    /* --- Palette --- */
    --bg-primary: #F9F7F2;
    /* Ivory White - Warm canvas */
    --bg-surface: #FFFFFF;
    /* Pure White - Cards/Sections */
    --bg-dark: #1A1A1A;
    /* Deep Charcoal - Footer/Hero overlay */

    --text-primary: #111111;
    /* Deepest Grey - Body text */
    --text-secondary: #444444;
    /* Secondary Text */
    --text-heading: #000000;
    /* Black - Headings */
    --text-light: #F9F7F2;
    /* Ivory - Text on dark */

    --accent-gold: #C19A6B;
    /* Burnished Gold - Primary Accent */
    --accent-saffron: #D35400;
    /* Deep Saffron - Spiritual highlights */

    --border-light: #E0E0E0;
    /* Light Stone */

    /* --- Typography --- */
    --font-display: 'Cinzel', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    /* --- Spacing --- */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* --- Shadows --- */
    --shadow-soft: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.12);

    /* --- Radius --- */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.text-display {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-xl {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.text-lg {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.text-md {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.text-base-lg {
    font-size: 1.125rem;
}

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

.text-gold {
    color: var(--accent-gold);
}

.text-saffron {
    color: var(--accent-saffron);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

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

/* Layout Utilities */
.container {
    max-width: 1350px;
    /* Slightly wider for better hero balance */
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.section {
    padding: var(--space-lg) 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

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

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

/* Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-heading);
    color: var(--bg-surface);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-surface);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
}

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

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-heading);
    color: var(--text-heading);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: #FFFFFF;
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--accent-gold);
    font-weight: 700;
}

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

/* Header Actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 1001;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 6px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    align-items: center;
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent backdrop */
    z-index: 2000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -300px;
    /* Hidden off-screen */
    width: 300px;
    height: 100%;
    background-color: var(--bg-surface);
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.close-menu-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--text-heading);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-heading);
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

.mobile-nav-link.active {
    color: var(--accent-gold);
}

.mobile-nav-link.active::before {
    height: 80%;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-surface);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--accent-gold);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    line-height: 1;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-saffron);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #FFFCF5;
    /* Light warm background */
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid rgba(193, 154, 107, 0.2);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-info .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.contact-info .value.link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .value.link:hover {
    color: var(--accent-saffron);
}

/* Responsive Menu Visibility */
@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }

    .header-actions {
        position: relative;
        z-index: 1001;
    }

    .header-right {
        gap: var(--space-sm);
    }
}

/* Hero */
.hero-section {
    min-height: 85vh;
    /* Taller */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Arch Image Mask - Optimized Space */
.arch-image {
    width: 100%;
    height: 650px;
    /* Taller image */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    cursor: pointer;
}

.arch-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 900px) {
    .arch-image {
        border-radius: 200px 200px 20px 20px;
        /* Taller Arch */
        height: 700px;
    }

    .hero-grid {
        grid-template-columns: 0.8fr 1.2fr;
        /* Give more space to image (40/60 split) */
        gap: var(--space-xl);
    }
}

/* Cards */
.arch-card {
    background: var(--bg-surface);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--accent-gold);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.arch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.03) 0%, rgba(211, 84, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.arch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(193, 154, 107, 0.25);
    border-top-color: var(--accent-saffron);
}

.arch-card:hover::before {
    opacity: 1;
}

.arch-card > * {
    position: relative;
    z-index: 1;
}

.icon-box {
    width: 70px;
    /* Larger icon box */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--accent-gold);
    border: 1px solid rgba(193, 154, 107, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.arch-card:hover .icon-box {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.3);
}

.arch-card:hover .icon-box::before {
    width: 100px;
    height: 100px;
}

/* Ancient Icon SVG Styling */
.ancient-icon {
    width: 36px;
    height: 36px;
    fill: none;
    /* Stroke is handled by inline SVG attributes usually, but we can enforce: */
}

/* Section Headings */
.section-title {
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
}

/* Partner Logo Grid */
.partner-logo {
    transition: all 0.4s ease;
    max-height: 90px;
    /* Increased Size */
    width: auto;
    object-fit: contain;
    opacity: 1;
    /* Full visibility */
    filter: none;
    /* Colorfull */
}

.partner-logo:hover {
    transform: scale(1.1);
}

.Miles-logo{
    max-height: 145px !important;
}
/* Referral Steps */
.step-item {
    position: relative;
    padding-left: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.step-item:last-child {
    border-left: none;
}

.step-number {
    position: absolute;
    left: -21px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-body);
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-lg) 0;
}

.footer-link {
    color: #BBBBBB;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.site-footer a[aria-label] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 4px;
}

.site-footer a[aria-label]:hover {
    transform: translateY(-2px);
}

.site-footer a[aria-label="Facebook"]:hover svg {
    stroke: #1877F2;
}

.site-footer a[aria-label="X"]:hover svg {
    stroke: #000000;
}

.site-footer a[aria-label="Instagram"]:hover svg {
    stroke: #E4405F;
}

.site-footer a[aria-label="LinkedIn"]:hover svg {
    stroke: #0077B5;
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsiveness */
@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        /* Stack everything on mobile/tablet */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        /* Reset for mobile */
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        padding-bottom: var(--space-lg);
    }

    .hero-visual {
        order: 1;
        margin-bottom: var(--space-md);
        width: 100%;
        padding: 0 var(--space-sm);
    }

    .arch-image {
        height: 350px;
        border-radius: 100px 100px 20px 20px;
    }

    .step-item {
        border-left: none;
        padding-left: 0;
        text-align: center;
        padding-bottom: var(--space-md);
    }

    .step-number {
        position: relative;
        left: 0;
        margin: 0 auto 10px auto;
        display: inline-flex;
    }
}

/* How It Works Section Specifics */
.step-number-badge {
    background: var(--accent-gold);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(193, 154, 107, 0.4);
}

.note-box {
    margin-top: 5rem;
    background: #FFFCF5;
    /* Very light warm tint */
    padding: 3rem;
    border-radius: var(--radius-lg);
    /* Larger radius */
    border: 2px solid var(--accent-gold);
    /* Gold border */
    display: inline-block;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 40px -10px rgba(193, 154, 107, 0.15);
    /* Soft gold shadow */
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.note-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gold);
}

.note-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px -10px rgba(193, 154, 107, 0.25);
}

.check-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left for better reading or center if preferred */
    gap: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 0.5rem 0;
    text-align: left;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.check-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .check-item {
        justify-content: center;
        text-align: center;
        border-bottom: none;
    }
}

.check-icon {
    color: var(--bg-surface);
    background: var(--accent-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Social Impact Section (Spiritual Theme) */
.section-spiritual {
    background: #FFF9ED;
    /* Soft Cream/Saffron tint */
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    border-top: 1px solid rgba(193, 154, 107, 0.1);
    border-bottom: 1px solid rgba(193, 154, 107, 0.1);
}

.impact-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    /* Temple Arch shape hint */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--accent-saffron);
    transition: transform 0.3s ease;
    text-align: left;
}

@media (min-width: 768px) {
    .impact-card {
        text-align: center;
    }
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.15);
    /* Saffron shadow */
}

.impact-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FFFBF5;
    border-radius: 50%;
    color: var(--accent-saffron);
    border: 1px solid rgba(211, 84, 0, 0.2);
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
    background: var(--accent-saffron);
    color: #fff;
    transform: rotateY(180deg);
    /* 3D Flip effect on hover */
}

.impact-card h3 {
    color: #8E402A;
    /* Rust/Earth tone */
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: #6D5E4C;
    font-size: 0.95rem;
    line-height: 1.6;
}

.counters-row {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(193, 154, 107, 0.2);
    display: inline-grid;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.counter-box {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.counter-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .counter-box:not(:last-child)::after {
        display: block;
    }
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.counter-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #888;
    margin-top: 0.5rem;
    font-weight: 600;
}

.separator-top,
.separator-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
    overflow: hidden;
}

.separator-top {
    top: -1px;
    transform: rotate(180deg);
}

.separator-top svg,
.separator-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.separator-bottom {
    bottom: -1px;
}

/* Founder / Company Message Section */
.section-founder {
    background-color: #FEFDF9;
    /* Ultra light warm white */
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.founder-grid {
    position: relative;
    z-index: 2;
}

.founder-content {
    padding-right: var(--space-md);
}

.quote-box {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-gold);
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: #5D4037;
    /* Earthy brown */
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.quote-decoration {
    font-size: 8rem;
    color: rgba(193, 154, 107, 0.1);
    position: absolute;
    top: -4rem;
    left: 0;
    font-family: serif;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.visual-frame {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(193, 154, 107, 0.3);
    border-radius: 4px;
    /* Slight rounding but mostly boxy/clean */
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: sepia(20%) contrast(105%);
    /* Vintage/Warm feel */
    border-radius: 2px;
}

.frame-ornament {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .section-founder {
        text-align: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .founder-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .quote-box {
        padding-left: 0;
        padding-top: 2rem;
        border-left: none;
        border-top: 3px solid var(--accent-gold);
        max-width: 600px;
        margin: 0 auto;
    }

    .quote-decoration {
        left: 50%;
        transform: translateX(-50%);
        top: -1rem;
    }

    .founder-quote {
        font-size: 1.35rem;
        /* Slightly smaller on mobile */
    }

    .founder-content>div[style*="align-items: center"] {
        justify-content: center;
    }
}

/* CTA "Join Movement" Section */
.section-cta {
    background-color: #1A1A1A;
    /* Fallback for bg image */
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Subtle background visibility */
    transition: transform 10s linear;
}

.section-cta:hover .cta-bg-image {
    transform: scale(1.05);
    /* Slow zoom effect on section hover */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from Deep Saffron (Spiritual) to Dark Charcoal (Footer) */
    background: linear-gradient(180deg, rgba(160, 60, 0, 0.9) 0%, rgba(26, 26, 26, 1) 100%);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(193, 154, 107, 0.4);
    /* Gold Glow */
    border: 1px solid var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large:hover {
    box-shadow: 0 0 30px rgba(193, 154, 107, 0.6);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.cta-secondary-grid {
    margin-top: 4rem;
}

.secondary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.secondary-card:hover {
    background: rgba(255, 255, 255, 0.15);
    /* Slightly lighter background */
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Add shadow for depth */
}

.secondary-card:hover h3,
.secondary-card:hover p {
    color: #fff;
    /* Make text white on hover */
}

.secondary-card h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.secondary-card p {
    color: #AAAAAA;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.secondary-card:hover .icon-circle {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.disabled-card {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Adjustments for text-light utility if not fully defined earlier */
.text-light {
    color: var(--text-light);
    /* Defined in root as Ivory */
}

/* Responsive CTA */
@media (max-width: 768px) {
    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .cta-secondary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Referral Section (Divine / Traditional) */
.section-referral {
    background-color: #FFF9F0;
    /* Warm cream/saffron tint */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.referral-bg-motif {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    max-width: 50vw;
    max-height: 50vw;
    background-image: repeating-conic-gradient(#FFECCB 0 9deg, transparent 9deg 18deg);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.section-referral::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    max-width: 40vw;
    max-height: 40vw;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.referral-grid {
    position: relative;
    z-index: 2;
}

/* Reward Cards */
.rewards-list {
    margin-top: 2rem;
}

.reward-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.08);
    /* Soft gold shadow */
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #fff 0%, #FFFCF5 100%);
}

.reward-card:hover .reward-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--accent-saffron);
    color: #fff;
}

.reward-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reward-icon svg {
    transition: all 0.5s ease;
}

.reward-card:hover .reward-icon svg {
    stroke: #fff;
    transform: scale(1.1);
}

.reward-icon {
    font-size: 2rem;
    background: #FFF5E6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reward-text h4 {
    color: #8E402A;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.reward-text p {
    color: #6D5E4C;
    font-size: 0.95rem;
    margin: 0;
}

/* Image Arch Style */
.referral-visual {
    position: relative;
    padding: 2rem;
}

.arch-frame {
    position: relative;
    border-radius: 150px 150px 20px 20px;
    /* Temple Arch / Jharokha */
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}

.referral-img {
    width: 100%;
    height: 500px;
    /* Tall portrait style */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.referral-img:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.arch-frame {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.referral-visual:hover .arch-frame {
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.2);
}

.referral-visual:hover .arch-border {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Decorative Border around arch */
.arch-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 140px 140px 15px 15px;
    pointer-events: none;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .referral-visual {
        order: -1;
        /* Image first on mobile? Or keep bottom? Let's keep defaults for now */
        padding: 0;
        margin-bottom: 2rem;
    }

    .arch-frame {
        height: 300px;
        /* Shorter on mobile */
    }

    .referral-img {
        height: 300px;
    }
}

/* Mission Section Updates (Divine Modern - Compact) */
.section-mission {
    background-color: #F8F5F2;
    /* Slightly darker/richer cream for contrast */
    padding: 5rem 0;
    /* Reduced from 7rem */
    position: relative;
    overflow: hidden;
}

.mission-bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(193, 154, 107, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.mission-quote-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    /* Reduced from 5rem */
    position: relative;
    padding: 1.5rem;
}

.mission-quote-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    /* Slightly smaller for balance */
    color: var(--text-heading);
    line-height: 1.4;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.quote-icon-left,
.quote-icon-right {
    font-size: 4rem;
    /* Reduced from 5rem */
    color: rgba(193, 154, 107, 0.2);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.quote-icon-left {
    top: -1rem;
    left: -1rem;
}

.quote-icon-right {
    bottom: -2rem;
    right: -1rem;
}

.mission-grid {
    position: relative;
    z-index: 2;
}

/* Card Styling */
.mission-card {
    background: #FFFFFF;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    /* Significantly reduced padding */
    text-align: center;
    border-radius: 16px;
    /* Slightly tighter radius */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--accent-gold);
    /* Slightly thinner accent */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Watermark Number */
.mission-card::after {
    content: attr(data-number);
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 4rem;
    /* Reduced from 6rem */
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    z-index: -1;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.mission-card:hover::after {
    color: rgba(193, 154, 107, 0.12);
    transform: translateY(-3px);
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px -15px rgba(193, 154, 107, 0.25);
}

/* Hover Gradient Slat */
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Matches border-top */
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover::before {
    opacity: 1;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 249, 240, 0.5) 100%);
    z-index: -1;
}

.mission-icon-box {
    width: 80px;
    /* Reduced from 100px */
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* Reduced margin */
    color: var(--accent-gold);
    border: 1px solid rgba(193, 154, 107, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.5s ease;
}

/* Double Ring Effect */
.mission-icon-box::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(193, 154, 107, 0.3);
    animation: rotateSlow 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mission-card:hover .mission-icon-box {
    background: var(--accent-gold);
    color: #FFFFFF;
    border-color: var(--accent-gold);
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 35px rgba(193, 154, 107, 0.4);
}

.mission-icon-box {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .mission-icon-box::after {
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    /* Reduced from 1.5rem */
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    color: #2c2c2c;
}

.divider-small {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 1rem auto;
    transition: width 0.4s ease;
}

.mission-card:hover .divider-small {
    width: 60px;
}

.mission-card p {
    font-size: 0.95rem;
    /* Reduced from 1rem */
    color: #555;
    line-height: 1.6;
    max-width: 95%;
}

@media (max-width: 768px) {
    .mission-quote-text {
        font-size: 1.4rem;
    }

    .quote-icon-left,
    .quote-icon-right {
        font-size: 2.5rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }
}

/* Partners Section - Beautiful Card Design */
#partners {
    background: linear-gradient(180deg, #FFF9ED 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.partners-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
}

.partners-bg-decoration circle {
    fill: currentColor;
    color: var(--accent-gold);
}

.partners-container {
    position: relative;
    z-index: 2;
}

.partners-header {
    margin-bottom: 3rem;
}

.partners-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.partners-description {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.partners-grid {
    margin-top: var(--space-xl);
}

/* Partner Card Styles */
.partner-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-card-inner {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partner-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.05) 0%, rgba(193, 154, 107, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.partner-logo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.partner-logo-wrapper {
    background: #fafafa;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    border: 1px solid #f5f5f5;
}

.partner-logo-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.4s;
}

.partner-logo-fallback {
    display: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111;
    text-align: center;
    line-height: 1.2;
}

.partner-name-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    transition: color 0.4s;
}

.partner-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto;
    transition: width 0.4s;
}

/* Partner Card Hover Effects */
.partner-card:hover .partner-card-inner {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 45px rgba(193, 154, 107, 0.2);
    background: linear-gradient(135deg, #fff 0%, #FFFCF5 100%);
}

.partner-card:hover .partner-card-overlay {
    opacity: 1;
}

.partner-card:hover .partner-logo-wrapper img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(193, 154, 107, 0.2));
}

.partner-card:hover .partner-logo-wrapper {
    background: #fff;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.1);
}

.partner-card:hover .partner-name {
    color: var(--accent-gold);
}

.partner-card:hover .partner-divider {
    width: 60px;
    background: var(--accent-gold);
}

/* Responsive Design for Partners */
@media (max-width: 1024px) {
    #partners .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    #partners .grid.grid-4 {
        grid-template-columns: 1fr;
    }
}
        /* Custom Aesthetic Styles for this specific page */
        .page-wrapper {
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 1rem 4rem 1rem;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
        }


        .gita-card-modern {
            display: flex;
            flex-direction: column;
            max-width: 1100px;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(25px);
            border-radius: 24px;
            box-shadow: 0 30px 60px -15px rgba(0,0,0,0.12), 0 0 0 1px rgba(193, 154, 107, 0.1);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 900px) {
            .gita-card-modern {
                flex-direction: row;
                min-height: 700px;
            }
        }

        .gita-visual {
            flex: 1;
            background: linear-gradient(135deg, #C19A6B 0%, #a67c52 100%);
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .gita-visual::before {
            content: 'ॐ';
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 300px;
            opacity: 0.05;
            font-family: serif;
            line-height: 1;
            pointer-events: none;
        }

        .gita-visual-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .gita-visual-text {
            font-size: 1.1rem;
            opacity: 0.95;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
            font-weight: 500;
        }
        .feature-list li svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            padding: 4px;
            color: white;
        }

        .gita-form-wrapper {
            flex: 1.2;
            padding: 3.5rem 3rem;
            background: white;
        }

        .form-header {
            text-align: left;
            margin-bottom: 2.5rem;
        }

        .form-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .form-header p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        .form-grid-modern {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        @media (min-width: 600px) {
            .form-grid-modern {
                grid-template-columns: 1fr 1fr;
            }
            .form-col-span-2 {
                grid-column: span 2;
            }
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 0.4rem;
        }

        .input-field {
            padding: 0.85rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            color: #1a202c;
            font-family: inherit;
        }
        .input-field::placeholder {
            color: #a0aec0;
        }
        .input-field:focus {
            outline: none;
            border-color: #C19A6B;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.15);
        }

        textarea.input-field {
            min-height: 100px;
            resize: vertical;
        }

        .btn-modern-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 1rem;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            font-family: inherit;
        }
        .btn-modern-submit:hover {
            background: #C19A6B;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(193, 154, 107, 0.2);
        }

        .alert-modern {
            padding: 1rem 1.2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }
        .alert-success {
            background: #ecfdf5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }
        .alert-error {
            background: #fef2f2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .error-text {
            color: #e53e3e;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            display: block;
        }

        .back-link-modern {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #718096;
            text-decoration: none;
            font-weight: 500;
            margin-top: 2rem;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .back-link-modern:hover {
            color: #1a202c;
        }

/* ============================================
   GITA YATRA PAGE SPECIFIC STYLES
   ============================================ */

/* Utility Classes */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.mt-4 {
    margin-top: 1rem;
}

/* Hero Section Form Styles */
.hero-question-form {
    margin-top: 2rem;
    width: 100%;
}

.hero-question-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-input-wrapper {
    position: relative;
    margin-bottom: 0;
    width: 100%;
}

.form-input-wrapper input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 400;
    line-height: 1.5;
}

.form-input-wrapper input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.form-input-wrapper input:hover {
    border-color: rgba(193, 154, 107, 0.6);
    box-shadow: 0 4px 16px rgba(193, 154, 107, 0.12);
    background: #FAFAFA;
}

.form-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.15), 0 8px 24px rgba(193, 154, 107, 0.15);
    transform: translateY(-2px);
    background: var(--bg-surface);
}

.form-input-wrapper input:focus::placeholder {
    color: #D1D5DB;
}

.form-error-message {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: none;
    font-weight: 500;
    padding-left: 4px;
}

.form-error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-char-count {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    font-size: 12px;
    color: #6B7280;
    font-family: var(--font-body);
    font-weight: 500;
    pointer-events: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-input-wrapper input:focus ~ .form-char-count {
    color: var(--accent-gold);
}

.form-char-count span {
    font-weight: 600;
    color: var(--text-primary);
}

.form-input-wrapper input:focus ~ .form-char-count span {
    color: var(--accent-gold);
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-text {
    display: inline-block;
}

/* reCAPTCHA Styling */
.form-recaptcha-wrapper {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recaptcha-error-message {
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-align: left;
    padding-left: 4px;
    display: none;
}

.recaptcha-error-message:not(:empty) {
    display: block;
}

.hero-question-form .g-recaptcha {
    margin: 0;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

.hero-question-form .g-recaptcha > div {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.hero-question-form .g-recaptcha > div:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(193, 154, 107, 0.3);
}

.hero-question-form .g-recaptcha iframe {
    border-radius: 8px;
}

/* reCAPTCHA Error Styling */
.hero-question-form .col-lg-12 > div[style*="color: #ff4d4f"] {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    display: block;
    animation: slideDown 0.3s ease;
}

/* reCAPTCHA Error Styling for Get Free Gita Form */
.gita-form-wrapper .g-recaptcha {
    margin-bottom: 0.5rem;
}

.gita-form-wrapper .col-lg-12.has-error .g-recaptcha {
    border: 2px solid #ff4d4f !important;
    border-radius: 4px;
    padding: 2px;
}

.gita-form-wrapper .error-text {
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
    text-align: left;
    padding-left: 4px;
    animation: slideDown 0.3s ease;
}

.gita-form-wrapper .col-lg-12 .error-text {
    margin-top: 0.75rem;
}

/* Form Button Enhancement */
.hero-question-form .btn-primary {
    width: 100%;
    max-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-question-form .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.35);
}

.hero-question-form .btn-primary .btn-text {
    transition: opacity 0.3s ease;
}

.hero-question-form .btn-primary.loading .btn-text {
    opacity: 0;
}

.hero-question-form .btn-primary.loading .btn-loader {
    display: inline-flex !important;
    position: absolute;
}

/* Form Container Enhancement */
.hero-question-form {
    background: transparent;
    padding: 0;
}

/* Error Message Styling */
.hero-question-form .form-error-message {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

/* Form Loading State */
.hero-question-form .btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Form Validation Error States */
.input-error {
    border: 2px solid #DC2626 !important;
    background: #FEF2F2 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.input-error:focus {
    border: 2px solid #DC2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15) !important;
}

.input-group.has-error .input-label {
    color: #DC2626;
}

.input-group.has-error .input-field {
    border: 2px solid #DC2626;
    background: #FEF2F2;
}

.error-text {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
    padding-left: 4px;
    animation: slideDown 0.3s ease;
}

.error-text.field-error {
    display: none;
    margin-top: 0.5rem;
}

.error-text.field-error[style*="display: block"] {
    display: block !important;
}

.input-field.valid {
    border-color: #10B981 !important;
    background: #F0FDF4 !important;
}

.input-field.valid:focus {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}

.input-group.has-success .input-label {
    color: #10B981;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Real-time validation feedback */
.input-field:not(:placeholder-shown):valid {
    border-color: #10B981;
    background: #F0FDF4;
}

.input-field:not(:placeholder-shown):invalid:not(:focus) {
    border-color: #DC2626;
    background: #FEF2F2;
}

.input-field[type="date"]:invalid:not(:focus),
.input-field[type="time"]:invalid:not(:focus) {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.input-field[type="date"].touched:invalid:not(:focus),
.input-field[type="time"].touched:invalid:not(:focus) {
    border-color: #DC2626;
    background: #FEF2F2;
}

/* Form Success State */
.hero-question-form .form-input-wrapper.success input {
    border-color: #10B981;
    background: #F0FDF4;
}

.hero-question-form .form-input-wrapper.success input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .hero-question-form {
        margin-top: 1.5rem;
    }

    .hero-question-form form {
        gap: 0.875rem;
    }

    .form-input-wrapper input {
        padding: 1.1rem 1.4rem;
        padding-right: 1.4rem;
        font-size: 1.05rem;
    }

    .form-char-count {
        top: calc(100% + 4px);
        right: 0;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .form-input-wrapper input {
        padding: 1rem 1.25rem;
        padding-right: 1.25rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .form-char-count {
        top: calc(100% + 4px);
        right: 0;
        font-size: 12px;
    }

    .hero-question-form .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-question-form .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left top;
    }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
        #FDFCF8 0%,
        #FFF9ED 30%,
        #FDFCF8 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 1rem;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    max-width: 50vw;
    height: 500px;
    max-height: 50vw;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.thank-you-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    max-width: 40vw;
    height: 400px;
    max-height: 40vw;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.thank-you-container {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.thank-you-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 254, 251, 1) 100%);
    border-radius: 24px;
    padding: 5rem 4rem;
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(193, 154, 107, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(193, 154, 107, 0.08);
    border: 2px solid rgba(193, 154, 107, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    text-align: center;
}

.thank-you-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-gold) 20%,
        var(--accent-gold) 50%,
        var(--accent-gold) 80%,
        transparent 100%);
    border-radius: 24px 24px 0 0;
}

.thank-you-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg,
        rgba(193, 154, 107, 0.2) 0%,
        rgba(193, 154, 107, 0.12) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow:
        0 12px 40px rgba(193, 154, 107, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.7);
    border: 3px solid rgba(193, 154, 107, 0.3);
    animation: thankYouIconFloat 3s ease-in-out infinite;
}

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

.thank-you-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px dashed rgba(193, 154, 107, 0.4);
    animation: rotateSlow 20s linear infinite;
}

.thank-you-icon-wrapper svg {
    filter: drop-shadow(0 4px 8px rgba(193, 154, 107, 0.3));
    z-index: 2;
    position: relative;
    width: 60px;
    height: 60px;
}

.thank-you-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c2418;
    margin: 0 0 1.5rem 0;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #666;
    margin: 0 0 2.5rem 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.thank-you-email {
    background: rgba(193, 154, 107, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: inline-block;
    font-weight: 600;
    color: #4A3B2A;
    border: 1px solid rgba(193, 154, 107, 0.2);
    transition: all 0.3s ease;
}

.thank-you-email:hover {
    background: rgba(193, 154, 107, 0.12);
    transform: scale(1.02);
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.thank-you-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8906a 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow:
        0 8px 24px rgba(193, 154, 107, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
}

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

.thank-you-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(193, 154, 107, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #b8906a 0%, var(--accent-gold) 100%);
    text-decoration: none;
    color: #fff;
}

.thank-you-button:hover::before {
    left: 100%;
}

.thank-you-button-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}

.thank-you-button-secondary:hover {
    background: rgba(193, 154, 107, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
}

.thank-you-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.thank-you-button:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 3rem 1rem;
        min-height: calc(100vh - 150px);
    }

    .thank-you-card {
        padding: 3.5rem 2.5rem;
        border-radius: 24px;
    }

    .thank-you-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }

    .thank-you-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thank-you-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .thank-you-card {
        padding: 3rem 2rem;
    }

    .thank-you-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .thank-you-title {
        font-size: 1.75rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.hero-trust-badge:hover {
    background: rgba(193, 154, 107, 0.08);
    color: var(--accent-gold);
    transform: translateX(5px);
}

.hero-trust-badge-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-badge:hover .hero-trust-badge-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-saffron);
}

.hero-trust-badge-text {
    font-weight: 500;
    transition: all 0.4s ease;
}

/* How It Works Section */
.how-it-works-description {
    max-width: 600px;
    margin: 1rem auto 3rem auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.how-it-works-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 3rem;
}

.how-it-works-step-card {
    flex: 1 1 auto;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    position: relative;
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(193, 154, 107, 0.08);
}

.how-it-works-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(193, 154, 107, 0.15);
    border-color: rgba(193, 154, 107, 0.2);
}

.how-it-works-step-card:hover .icon-box {
    transform: scale(1.1);
    background: rgba(193, 154, 107, 0.1);
}

.how-it-works-step-card:hover .step-icon-wrapper svg {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.how-it-works-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0 1rem;
}

.how-it-works-arrow .arrow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(193, 154, 107, 0.3) 20%, rgba(193, 154, 107, 0.5) 50%, rgba(193, 154, 107, 0.3) 80%, transparent 100%);
    transform: translateY(-50%);
}

.how-it-works-arrow svg {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

.how-it-works-steps:hover .how-it-works-arrow {
    transform: translateX(5px);
}

.how-it-works-steps:hover .how-it-works-arrow svg {
    color: var(--accent-saffron);
}


/* Wisdom Section */
.wisdom-description {
    max-width: 700px;
    margin: 1rem auto 3rem auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Answer Preview Section */
.answer-preview-container {
    max-width: 1200px;
}

.answer-preview-header {
    margin-bottom: 3rem;
}

.answer-preview-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.answer-preview-title {
    margin-bottom: 1rem;
}

.answer-preview-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.answer-preview-grid {
    margin-top: 3rem;
}

.answer-preview-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.answer-preview-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--accent-gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.answer-preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 154, 107, 0.05), transparent);
    transition: left 0.6s ease;
}

.answer-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(193, 154, 107, 0.2);
    border-top-color: var(--accent-saffron);
}

.answer-preview-card:hover::after {
    left: 100%;
}

.answer-preview-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.answer-preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.answer-preview-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.answer-preview-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.answer-preview-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.answer-preview-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.answer-preview-section-title {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin: 0;
}

.answer-preview-shloka-box {
    text-align: center;
    padding: 2rem 1rem;
    background: #FFFCF5;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.answer-preview-shloka-card:hover .answer-preview-shloka-box {
    background: #FFF9ED;
    border-color: rgba(193, 154, 107, 0.3);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.1);
    transform: scale(1.02);
}

.answer-preview-shloka-card:hover .shloka-om-symbol {
    transform: scale(1.2) rotate(360deg);
    color: var(--accent-saffron);
}

.shloka-om-symbol {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shloka-ornament-top,
.shloka-ornament-bottom {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.shloka-sanskrit-container {
    position: relative;
    padding: 1.5rem 0;
}

.shloka-om-symbol {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: serif;
}

.answer-preview-shloka-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-heading);
    font-family: var(--font-heading);
    margin: 0;
}

.shloka-reference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.answer-preview-shloka-ref {
    font-family: var(--font-body);
}

.meaning-content-wrapper {
    position: relative;
    padding: 1.5rem;
}

.meaning-quote-mark {
    font-size: 4rem;
    color: rgba(193, 154, 107, 0.2);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: serif;
    line-height: 1;
}

.answer-preview-meaning-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.meaning-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.meaning-key-point {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.meaning-key-point:hover {
    background: rgba(193, 154, 107, 0.05);
    transform: translateX(5px);
}

.key-point-value {
    transition: color 0.3s ease;
}

.meaning-key-point:hover .key-point-value {
    color: var(--accent-gold);
    font-weight: 600;
}

.key-point-label {
    font-weight: 600;
    color: var(--text-heading);
    min-width: 120px;
}

.key-point-value {
    color: var(--text-secondary);
}

.answer-preview-guidance-box {
    padding: 1.5rem;
    background: #FFFCF5;
    border-radius: var(--radius-sm);
}

.guidance-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.answer-preview-guidance-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.answer-preview-guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-preview-guidance-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.answer-preview-guidance-list li:hover {
    background: rgba(193, 154, 107, 0.05);
    transform: translateX(5px);
    padding-left: 1rem;
}

.answer-preview-guidance-list li:hover .guidance-list-icon {
    transform: scale(1.3);
    color: var(--accent-saffron);
}

.guidance-list-icon {
    transition: all 0.3s ease;
}

.guidance-list-icon {
    color: var(--accent-gold);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.answer-preview-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.answer-preview-actions-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

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

.action-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.2);
    background: rgba(193, 154, 107, 0.05);
}

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

.action-btn svg {
    transition: transform 0.4s ease;
}

.action-btn:hover svg {
    transform: scale(1.2);
}

.answer-preview-trust {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.answer-preview-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(193, 154, 107, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.answer-preview-trust-badge:hover {
    background: rgba(193, 154, 107, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2);
}

.answer-preview-trust-badge svg {
    transition: transform 0.4s ease;
}

.answer-preview-trust-badge:hover svg {
    transform: scale(1.2) rotate(360deg);
}

.answer-preview-trust-text {
    font-family: var(--font-body);
}

/* Why Bhagavad Gita Section */
.why-gita-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.03) 0%, rgba(211, 84, 0, 0.03) 100%);
    z-index: 1;
}

.why-gita-container {
    position: relative;
    z-index: 2;
}

.why-gita-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-gita-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-gold);
}

.why-gita-title {
    margin-bottom: 1.5rem;
}

.why-gita-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
}

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

.why-gita-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.why-gita-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-gita-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(193, 154, 107, 0.25);
    border-top-color: var(--accent-saffron);
}

.why-gita-card:hover::before {
    transform: scaleX(1);
}

.why-gita-card:hover .why-gita-card-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
}

.why-gita-card-icon-wrapper {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-gita-card-icon-wrapper svg {
    transition: all 0.5s ease;
}

.why-gita-card:hover .why-gita-card-icon-wrapper svg {
    stroke: #fff;
    transform: scale(1.1);
}

.why-gita-card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.why-gita-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.why-gita-card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Section */
.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(193, 154, 107, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(211, 84, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.features-container {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.features-title {
    margin-bottom: 1rem;
}

.features-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(193, 154, 107, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgba(193, 154, 107, 0.3);
    border-top-color: var(--accent-saffron);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-card-number {
    color: rgba(193, 154, 107, 0.15);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.2) rotate(360deg);
    background: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.4);
}

.feature-icon-wrapper {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper svg {
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper svg {
    stroke: #fff;
    transform: scale(1.1);
}

.feature-card-number {
    transition: all 0.5s ease;
}

.feature-card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.feature-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.feature-card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Daily Wisdom CTA Section */
#daily-wisdom-cta {
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.daily-wisdom-bg-decoration,
.daily-wisdom-bg-decoration-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.daily-wisdom-bg-decoration {
    top: -50px;
    left: -50px;
    width: 300px;
    max-width: 40vw;
    height: 300px;
    max-height: 40vw;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.daily-wisdom-bg-decoration-2 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    max-width: 40vw;
    height: 300px;
    max-height: 40vw;
    background: radial-gradient(circle, var(--accent-saffron) 0%, transparent 70%);
}

.daily-wisdom-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    box-sizing: border-box;
}

.daily-wisdom-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0;
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.daily-wisdom-icon {
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.daily-wisdom-title {
    margin-bottom: 0.75rem;
}

.daily-wisdom-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.daily-wisdom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.daily-wisdom-input-wrapper {
    position: relative;
    width: 100%;
}

.daily-wisdom-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: all 0.3s ease;
    min-height: 52px;
    box-sizing: border-box;
}

.daily-wisdom-input::placeholder {
    color: #999;
}

.daily-wisdom-input:hover {
    border-color: rgba(193, 154, 107, 0.5);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.1);
}

.daily-wisdom-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.15), 0 8px 20px rgba(193, 154, 107, 0.1);
    transform: translateY(-2px);
}

.g-recaptcha-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.recaptcha-error {
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-align: left;
    width: 100%;
}

.g-recaptcha-wrapper .recaptcha-error-message {
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-align: left;
    width: 100%;
    display: none;
}

.g-recaptcha-wrapper .recaptcha-error-message:not(:empty) {
    display: block;
}

#newsletterError {
    text-align: left;
    margin-top: 8px;
    color: #ff4d4f;
    font-size: 13px;
    font-weight: 500;
}

.daily-wisdom-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--text-heading);
    color: var(--bg-surface);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-height: 52px;
}

.daily-wisdom-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.daily-wisdom-submit:hover {
    background: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.daily-wisdom-submit:hover::before {
    width: 300px;
    height: 300px;
}

.daily-wisdom-submit:active {
    transform: translateY(-1px) scale(1.02);
}

.daily-wisdom-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Trust Section */
.trust-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(193, 154, 107, 0.02) 10px, rgba(193, 154, 107, 0.02) 20px);
    z-index: 1;
    pointer-events: none;
}

.trust-container {
    position: relative;
    z-index: 2;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.trust-title {
    margin-bottom: 1rem;
}

.trust-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.trust-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(193, 154, 107, 0.25);
    border-top-color: var(--accent-saffron);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover .trust-badge {
    transform: scale(1.2) rotate(360deg);
    background: var(--accent-gold);
    color: #fff;
}

.trust-card:hover .trust-icon-wrapper {
    transform: scale(1.15) rotate(-10deg);
    background: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
}

.trust-badge {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-icon-wrapper {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-icon-wrapper svg {
    transition: all 0.5s ease;
}

.trust-card:hover .trust-icon-wrapper svg {
    stroke: #fff;
    transform: scale(1.1);
}

.trust-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
}

.trust-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.trust-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.trust-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile UX Section */
.mobile-ux-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(193, 154, 107, 0.03) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.mobile-ux-container {
    position: relative;
    z-index: 2;
}

.mobile-ux-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-ux-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.mobile-ux-title {
    margin-bottom: 1rem;
}

.mobile-ux-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.mobile-ux-card {
    background: var(--bg-surface);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.mobile-ux-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mobile-ux-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(193, 154, 107, 0.25);
    border-top-color: var(--accent-saffron);
}

.mobile-ux-card:hover::before {
    transform: scaleX(1);
}

.mobile-ux-card:hover .mobile-ux-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.mobile-ux-card:hover .mobile-ux-feature-badge {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.05);
}

.mobile-ux-card-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-ux-card-icon svg {
    transition: all 0.5s ease;
}

.mobile-ux-card:hover .mobile-ux-card-icon svg {
    stroke: var(--accent-saffron);
    transform: scale(1.1);
}

.mobile-ux-feature-badge {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-ux-card-icon {
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-ux-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.mobile-ux-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.mobile-ux-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(193, 154, 107, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Join Movement Section */
.join-movement-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(193, 154, 107, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(211, 84, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.join-movement-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.join-movement-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.join-movement-orb-1 {
    width: 250px;
    max-width: 35vw;
    height: 250px;
    max-height: 35vw;
    top: -50px;
    left: -50px;
    background: var(--accent-gold);
}

.join-movement-orb-2 {
    width: 200px;
    max-width: 30vw;
    height: 200px;
    max-height: 30vw;
    bottom: -30px;
    right: -30px;
    background: var(--accent-saffron);
}

.join-movement-orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gold);
}

.join-movement-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.join-movement-header-decoration {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.join-movement-header-icon {
    color: var(--accent-gold);
}

.join-movement-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.join-movement-title {
    margin-bottom: 1.5rem;
}

.join-movement-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 1.5rem auto;
}

.join-movement-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.join-movement-main-action {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.join-movement-primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--text-heading);
    color: var(--bg-surface);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.join-movement-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.join-movement-primary-btn:hover .join-movement-btn-glow {
    transform: translateX(100%);
}

.join-movement-primary-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.join-movement-btn-icon,
.join-movement-btn-arrow {
    flex-shrink: 0;
}

.join-movement-grid {
    position: relative;
    z-index: 2;
}

.join-movement-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.join-movement-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgba(193, 154, 107, 0.3);
    border-top-color: var(--accent-saffron);
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #fff 0%, #FFFCF5 100%);
}

.join-movement-card-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.join-movement-card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.join-movement-card-icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-movement-card:hover .join-movement-card-icon-glow {
    opacity: 1;
}

.join-movement-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.join-movement-card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.join-movement-card-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.join-movement-card:hover .join-movement-card-arrow {
    transform: translateX(8px) scale(1.2);
    color: var(--accent-saffron);
}

.join-movement-card-arrow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-movement-card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.join-movement-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(193, 154, 107, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Responsive Styles */
/* Tablet/Medium screens: 769px - 899px */
@media (min-width: 769px) and (max-width: 899px) {
    .how-it-works-steps {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: center;
        padding: 0 1rem;
    }

    .how-it-works-step-card {
        min-width: 180px;
        max-width: 220px;
        flex: 1 1 auto;
        padding: 1.5rem 1rem;
    }

    .how-it-works-arrow {
        flex-shrink: 0;
        width: 16px;
        padding: 0 0.5rem;
    }

    .how-it-works-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/* Keep cards in one row at 900-1100px with adjusted sizing */
@media (min-width: 900px) and (max-width: 1100px) {
    .how-it-works-steps {
        flex-wrap: nowrap;
        gap: 1.25rem;
        justify-content: space-between;
    }

    .how-it-works-step-card {
        min-width: 200px;
        max-width: 240px;
        flex: 1 1 0;
        padding: 1.5rem 1rem;
    }

    .how-it-works-arrow {
        flex-shrink: 0;
        width: 24px;
    }
}

@media (max-width: 768px) {
    .hero-trust-badges {
        justify-content: center;
    }

    .how-it-works-steps {
        flex-direction: column;
    }

    .how-it-works-arrow {
        transform: rotate(90deg);
    }

    .answer-preview-grid {
        grid-template-columns: 1fr;
    }

    .why-gita-cards,
    .trust-grid,
    .mobile-ux-grid {
        grid-template-columns: 1fr;
    }

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

    .join-movement-grid {
        grid-template-columns: 1fr;
    }

    .daily-wisdom-form {
        flex-direction: column;
    }

    #daily-wisdom-cta {
        min-height: 100vh;
        height: 100vh;
    }

    .daily-wisdom-content {
        padding: 2.25rem 1.75rem;
        max-height: calc(100vh - 1.5rem);
    }

    .daily-wisdom-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .daily-wisdom-subtitle {
        margin-bottom: 1.75rem;
    }

    .daily-wisdom-form {
        gap: 1.125rem;
        margin-top: 1.5rem;
    }

    .answer-preview-actions-container {
        flex-direction: column;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-question-form {
        margin-top: 1.5rem;
    }

    .form-input-wrapper input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .answer-preview-card {
        padding: 1.5rem;
    }

    .answer-preview-shloka-text {
        font-size: 1.25rem;
    }

    #daily-wisdom-cta {
        min-height: 100vh;
        height: 100vh;
    }

    .daily-wisdom-container {
        padding: 1rem;
    }

    #daily-wisdom-cta {
        min-height: 100vh;
        height: 100vh;
    }

    .daily-wisdom-container {
        padding: 0.75rem;
    }

    .daily-wisdom-content {
        padding: 1.75rem 1.25rem;
        max-height: calc(100vh - 1.5rem);
    }

    .daily-wisdom-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }

    .daily-wisdom-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .daily-wisdom-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .daily-wisdom-form {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .daily-wisdom-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .daily-wisdom-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .daily-wisdom-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .daily-wisdom-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .daily-wisdom-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .daily-wisdom-form {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .join-movement-primary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   QR Code Section - Modern & Aesthetic Design
   ============================================ */

.qr-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    overflow: hidden;
}

.qr-section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(193, 154, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.qr-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.qr-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, rgba(193, 154, 107, 0.05) 100%);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.qr-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.qr-orb-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 8%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* QR Section Header */
.qr-section-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.qr-header-decoration {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qr-header-icon {
    color: var(--accent-gold, #C19A6B);
    filter: drop-shadow(0 4px 12px rgba(193, 154, 107, 0.2));
    transition: transform 0.3s ease;
}

.qr-header-decoration:hover .qr-header-icon {
    transform: rotate(90deg) scale(1.1);
}

.qr-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-gold, #C19A6B);
}

.qr-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.qr-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold, #C19A6B), transparent);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.qr-description {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    margin-bottom: 0;
}

/* QR Cards Grid */
.qr-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* QR Card */
.qr-card {
    position: relative;
    perspective: 1000px;
}

.qr-card-inner {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(193, 154, 107, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.qr-card:hover .qr-card-glow {
    opacity: 1;
}

.qr-card:hover .qr-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(193, 154, 107, 0.2);
    border-color: rgba(193, 154, 107, 0.3);
}

/* QR Icon Wrapper */
.qr-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, rgba(193, 154, 107, 0.05) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.qr-card:hover .qr-icon-bg {
    transform: rotate(45deg) scale(1.1);
}

.qr-icon {
    position: relative;
    z-index: 1;
    color: var(--accent-gold, #C19A6B);
    transition: transform 0.3s ease;
}

.qr-card:hover .qr-icon {
    transform: scale(1.1) rotate(5deg);
}

/* QR Card Content */
.qr-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.qr-card:hover .qr-card-title {
    color: var(--accent-gold, #C19A6B);
}

.qr-card-description {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* QR Code Wrapper */
.qr-code-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.qr-code-container {
    position: relative;
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(193, 154, 107, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-card:hover .qr-code-container {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(193, 154, 107, 0.25);
    border-color: rgba(193, 154, 107, 0.4);
}

.qr-code-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.qr-card:hover .qr-code-image {
    transform: scale(1.02);
}

.qr-code-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #CBD5E0;
    text-align: center;
}

.qr-code-placeholder svg {
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.qr-code-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #A0AEC0;
}

/* QR Card Footer */
.qr-card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
}

.qr-scan-hint {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold, #C19A6B);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 1.5rem;
}

.qr-scan-hint::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-gold, #C19A6B);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .qr-section {
        padding: 2rem 0;
    }

    .qr-section-header {
        margin-bottom: 2rem;
    }

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

    .qr-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .qr-card-inner {
        padding: 1.75rem 1.5rem;
    }

    .qr-code-container {
        width: 180px;
        height: 180px;
    }

    .qr-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .qr-card-description {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .qr-section {
        padding: 1.5rem 0;
    }

    .qr-section-header {
        margin-bottom: 1.5rem;
    }

    .qr-header-decoration {
        margin-bottom: 0.75rem;
    }

    .qr-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .qr-divider {
        margin-bottom: 0.75rem;
    }

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

    .qr-cards-grid {
        gap: 1rem;
    }

    .qr-card-inner {
        padding: 1.5rem 1rem;
    }

    .qr-code-container {
        width: 160px;
        height: 160px;
    }

    .qr-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }

    .qr-card-description {
        margin-bottom: 1rem;
    }
}

/* ============================================
   Enhanced UI Styles for Gita Yatra Page
   ============================================ */

/* Mission Section Enhancements */
.mission-card-enhanced {
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(193, 154, 107, 0.3);
}

.mission-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mission-card-enhanced:hover .mission-icon-glow {
    opacity: 1;
}

.mission-card-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem 0;
    min-height: 80px;
}

.mission-card-example {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.05) 0%, rgba(193, 154, 107, 0.02) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.example-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.example-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

/* How It Works Section Enhancements */
.section-how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(193, 154, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.how-it-works-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.how-it-works-description {
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.step-number-badge {
    position: absolute;
    top: -18px;
    right: 24px;
    width: 56px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B88A5A 100%);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.35);
    z-index: 10;
    transition: all 0.3s ease;
}

.how-it-works-step-card:hover .step-number-badge {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(193, 154, 107, 0.45);
}

.step-icon-wrapper {
    position: relative;
    margin: 0 auto 1.5rem auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper .icon-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-icon-wrapper svg {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.step-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.how-it-works-step-card:hover .step-icon-glow {
    opacity: 1;
}

.how-it-works-step-title {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

.how-it-works-step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.step-features {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(193, 154, 107, 0.12);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.step-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.6rem 1.1rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.08) 0%, rgba(193, 154, 107, 0.04) 100%);
    border-radius: 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 154, 107, 0.12);
}

.step-feature-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.step-feature-item:hover {
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.15) 0%, rgba(193, 154, 107, 0.08) 100%);
    border-color: rgba(193, 154, 107, 0.25);
    transform: translateY(-2px);
    color: var(--text-heading);
}

.arrow-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 20%, var(--accent-gold) 80%, transparent 100%);
    transform: translateY(-50%);
    opacity: 0.3;
}

/* Wisdom Section Enhancements */
.section-wisdom {
    position: relative;
    overflow: hidden;
}

.wisdom-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(193, 154, 107, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(193, 154, 107, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.wisdom-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.wisdom-description {
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.wisdom-card {
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wisdom-card-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    pointer-events: none;
}

.wisdom-card:hover .wisdom-card-glow {
    opacity: 1;
}

.wisdom-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px -15px rgba(193, 154, 107, 0.25);
}

.wisdom-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.wisdom-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.wisdom-card:hover .wisdom-icon-bg {
    opacity: 1;
}

.wisdom-card-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem 0;
    flex-grow: 1;
}

.wisdom-card-details {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.05) 0%, rgba(193, 154, 107, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(193, 154, 107, 0.1);
}

.wisdom-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wisdom-detail-item:last-child {
    margin-bottom: 0;
}

.wisdom-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.wisdom-detail-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.wisdom-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, rgba(193, 154, 107, 0.05) 100%);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid rgba(193, 154, 107, 0.2);
    transition: all 0.3s ease;
}

.wisdom-card:hover .wisdom-tag {
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.15) 0%, rgba(193, 154, 107, 0.1) 100%);
    border-color: rgba(193, 154, 107, 0.3);
    transform: scale(1.05);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .mission-card-description {
        min-height: auto;
        font-size: 0.9rem;
    }

    .mission-card-example {
        padding: 0.75rem;
    }

    .how-it-works-step-text {
        min-height: auto;
        font-size: 0.9rem;
    }

    .step-features {
        flex-direction: column;
        align-items: stretch;
    }

    .step-feature-item {
        justify-content: center;
    }

    .wisdom-card-description {
        font-size: 0.95rem;
    }

    .wisdom-card-details {
        padding: 1rem;
    }

    .how-it-works-step-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.75rem 1.25rem;
    }

    .step-number-badge {
        width: 48px;
        height: 32px;
        font-size: 1rem;
        top: -16px;
        right: 20px;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .step-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .how-it-works-step-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .how-it-works-step-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-card-enhanced {
        padding: 1.5rem;
    }

    .how-it-works-step-card {
        padding: 1.5rem;
    }

    .wisdom-card {
        padding: 1.5rem;
    }
}

/* ============================================
   GET FREE GITA PAGE - RESPONSIVE STYLES
   ============================================ */

/* Mobile-First Responsive Styles for Form */
@media (max-width: 599px) {
    .page-wrapper {
        padding: 2rem 0.75rem 2rem 0.75rem;
    }

    .gita-card-modern {
        border-radius: 16px;
        margin: 0;
    }

    .gita-visual {
        padding: 2rem 1.5rem;
    }

    .gita-visual-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .gita-visual-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .feature-list li svg {
        width: 20px;
        height: 20px;
    }

    .gita-form-wrapper {
        padding: 2rem 1.25rem;
    }

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

    .form-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-grid-modern {
        gap: 1rem;
    }

    .form-col-span-2 {
        grid-column: span 1;
    }

    .form-col-span-mobile {
        grid-column: span 1 !important;
    }

    .input-label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }

    .input-field {
        padding: 0.75rem 0.875rem;
        font-size: 16px;
        border-radius: 12px;
    }

    .input-field:focus {
        padding: 0.75rem 0.875rem;
    }

    textarea.input-field {
        min-height: 100px;
        resize: vertical;
    }

    .col-lg-12 {
        margin-top: 1.5rem;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        margin-left: -5px;
    }

    .btn-modern-submit {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .form-col-span-2 {
        width: 100%;
    }

    .submit-button-wrapper {
        grid-column: span 1;
        width: 100%;
    }

    .alert-modern {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }

    .alert-modern svg {
        width: 18px;
        height: 18px;
    }

    .back-link-modern {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }

    .error-text {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
}

@media (max-width: 374px) {
    .page-wrapper {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }

    .gita-visual {
        padding: 1.5rem 1rem;
    }

    .gita-visual-title {
        font-size: 1.5rem;
    }

    .gita-visual-text {
        font-size: 0.875rem;
    }

    .gita-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .form-header h2 {
        font-size: 1.35rem;
    }

    .input-field {
        padding: 0.7rem 0.75rem;
        font-size: 16px;
    }

    .g-recaptcha {
        transform: scale(0.78);
        margin-left: -8px;
    }
}

@media (min-width: 375px) and (max-width: 599px) {
    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: 0 0;
        margin-left: -4px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .page-wrapper {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }

    .gita-card-modern {
        flex-direction: column;
    }

    .gita-visual {
        padding: 2.5rem 2rem;
    }

    .gita-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .form-grid-modern {
        grid-template-columns: 1fr 1fr;
    }

    .form-col-span-2 {
        grid-column: span 2;
    }

    .form-col-span-mobile {
        grid-column: span 2 !important;
    }

    .submit-button-wrapper {
        grid-column: span 2;
    }

    .g-recaptcha {
        transform: scale(0.95);
        transform-origin: 0 0;
    }
}

.gita-sections-container {
    max-width: 1200px;
    margin: -2rem auto 0 auto;
    padding: 2rem 1.5rem 6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #1a202c;
    position: relative;
    z-index: 2;
}

@media (max-width: 599px) {
    .gita-sections-container {
        padding: 1.5rem 1rem 4rem 1rem;
        margin: -1rem auto 0 auto;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .why-read-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    .mission-section {
        padding: 2rem 1.5rem;
        flex-direction: column;
    }

    .mission-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-step {
        padding: 1.5rem 1.25rem;
    }

    .faq-section {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1.25rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 374px) {
    .gita-sections-container {
        padding: 1.25rem 0.75rem 3rem 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem;
    }

    .mission-section {
        padding: 1.5rem 1rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1.25rem 0.875rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.why-read-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #edf2f7;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15);
    border-color: rgba(193, 154, 107, 0.5);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 154, 107, 0.1);
    color: #C19A6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: #C19A6B;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
}

.mission-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #f8fafc;
    padding: 4rem;
    border-radius: 24px;
    margin-bottom: 5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .mission-section {
        flex-direction: row;
    }
}

.mission-content {
    flex: 1;
}

.mission-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: #C19A6B;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C19A6B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-step {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
}

.timeline-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(193, 154, 107, 0.25);
    border-color: rgba(193, 154, 107, 0.5);
}

.timeline-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C19A6B 0%, #a67c52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 28px;
    height: 28px;
    color: white;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    pointer-events: none;
}

.timeline-step:hover .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(193, 154, 107, 0.5);
    background: linear-gradient(135deg, #D35400 0%, #C19A6B 100%);
    color: transparent;
}

.timeline-step:hover .timeline-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.timeline-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.timeline-step:hover h4 {
    color: #C19A6B;
}

.timeline-step p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.05) 0%, rgba(211, 84, 0, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.timeline-step:hover::before {
    opacity: 1;
}

.timeline-content {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .timeline-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .timeline-container::after {
        content: '';
        position: absolute;
        top: 92px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: linear-gradient(90deg,
            transparent 0%,
            #e2e8f0 10%,
            #e2e8f0 90%,
            transparent 100%);
        z-index: 1;
        border-radius: 2px;
    }
}

@media (max-width: 767px) {
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-step {
        padding: 1.75rem 1.25rem;
    }

    .timeline-step::before {
        display: none;
    }
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.faq-item {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(193, 154, 107, 0.4);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #718096;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(193, 154, 107, 0.2);
    background: #fff;
}

.testimonial-quote {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: serif;
    z-index: -1;
    line-height: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #C19A6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

 .footer-copyright-link {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright-link:hover {
            color: var(--accent-gold, #C19A6B);
        }
        .alert-modern {
            padding: 1rem 1.2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }
        .alert-success {
            background: #ecfdf5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }
        .alert-error {
            background: #fef2f2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }
