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

:root {
    /* Dark Yellow Button Color Palette - Softened for meditation */
    --primary-color: #B8860B;        /* Dark goldenrod yellow for buttons */
    --primary-dark: #9A7209;        /* Darker yellow for hover states */
    --primary-light: #D4AF37;       /* Medium yellow accent */
    --primary-soft: rgba(184, 134, 11, 0.1); /* Soft yellow for backgrounds */
    
    /* Off-white Background Colors - Calming, pure */
    --secondary-color: #fafafa;     /* Off-white background */
    --accent-color: #FFD700;        /* Yellow accent */
    --bg-dark: #fafafa;             /* Off-white background for sections */
    --bg-dark-light: #f8f8f5;       /* Softer off-white for contrast */
    --bg-pure: #ffffff;             /* Pure white */
    
    /* Neutrals - Softer, more calming tones */
    --text-dark: #1a1f2e;           /* Deep dark for readability */
    --text-light: #6b7280;          /* Softer muted gray */
    --text-lighter: #9ca3af;        /* Lighter gray for subtle text */
    --bg-light: #fafafa;            /* Off-white background */
    --bg-white: #ffffff;            /* Pure white for cards */
    --border-color: #e5e7eb;        /* Softer, more neutral border */
    --border-soft: rgba(184, 134, 11, 0.08); /* Soft primary border */

    /* Spacing System - Consistent, breathing room */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */
    --space-4xl: 8rem;     /* 128px */

    /* Section Padding - Generous for calm feeling */
    --section-padding-mobile: 3rem 0;
    --section-padding-tablet: 4rem 0;
    --section-padding-desktop: 6rem 0;

    /* Shadows - Softer, more subtle for meditation aesthetic */
    --shadow-sm: 0 2px 8px rgba(26, 31, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 31, 46, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 31, 46, 0.1);
    --shadow-xl: 0 12px 48px rgba(26, 31, 46, 0.12);
    --shadow-premium: 0 20px 60px rgba(184, 134, 11, 0.15);
    --shadow-soft: 0 4px 20px rgba(184, 134, 11, 0.08);

    /* Transitions - Smooth, meditative easing */
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Gradients - Softer, more elegant */
    --gradient-primary: linear-gradient(135deg, #B8860B 0%, #9A7209 100%);
    --gradient-soft: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(154, 112, 9, 0.05) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 31, 46, 0.4) 0%, rgba(26, 31, 46, 0.1) 100%);
    --gradient-bg: linear-gradient(135deg, #fafafa 0%, #f8f8f5 100%);
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1.5vw + 0.5rem, 17px); /* Responsive base font size */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem); /* 14px to 17px */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-light);
    letter-spacing: -0.01em;
}

/* Prevent text selection on most elements (allow in form fields) */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection in form fields */
input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Fluid Images - Responsive Base */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent image dragging and selection */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide broken images */
img[src=""],
img:not([src]),
img[alt]:not([src]) {
    display: none !important;
}

/* Smooth scroll animations */

/* Premium fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Professional section transitions */
section {
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

/* Typography - Elegant and Calm */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.section-title {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem); /* Responsive scaling */
    margin-bottom: var(--space-md);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(40px, 8vw, 60px); /* Responsive width */
    height: clamp(2px, 0.5vw, 3px); /* Responsive height */
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
    opacity: 0.8;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
    padding: 0 var(--space-md);
}

/* Navigation - Modern Horizontal Top Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(184, 134, 11, 0.15);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.875rem, 2.5vw + 0.5rem, 1.5rem); /* Responsive logo size */
    font-weight: 700;
    transition: var(--transition);
    z-index: 1001;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav-logo:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-logo::before {
    display: none; /* Removed emoji as per user request */
}

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

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

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

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-cta {
    padding: 0.75rem 1.75rem !important;
    font-size: 0.9375rem !important;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: none;
    transition: var(--transition);
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
    background: rgba(184, 134, 11, 0.1);
    border-color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    position: absolute;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: white;
    text-align: left;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /* Background image loaded inline to prevent layout shifts */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    /* Prevent layout shift during load */
    will-change: auto;
    transform: translateZ(0);
}

.hero-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    animation: gentlePulse 8s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.hero-content {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    max-width: 500px;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.2s ease-out;
    text-align: center;
}

.hero-instruction-text {
    font-size: 0.95rem;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease-out;
    font-weight: 400;
    text-align: center;
    white-space: normal;
}

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

@keyframes fadeInUpCentered {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.hero-title-above-tree {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 3;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    padding: 0 2rem;
    letter-spacing: 0.5px;
    animation: gentleFadeIn 1.5s ease-out;
}

@keyframes gentleFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


.hero-baba-wrapper {
    position: absolute;
    top: 1%;
    left: 1%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.hero-baba-image {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 25vh;
    padding-top: 1rem;
    padding-left: 1rem;
    filter: brightness(1.1) contrast(1.15) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    animation: fadeInUp 2s ease-out;
    object-fit: contain;
    object-position: left top;
    pointer-events: none;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-baba-quote {
    color: white;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.5;
    margin-top: 1.5rem;
    padding-left: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 320px;
    letter-spacing: 0.02em;
}

.hero-baba-quote .quote-author {
    display: block;
    margin-top: 1rem;
    font-size: 0.85em;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.95;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-branding-small {
    margin: 1rem 0;
}

.brand-symbol-small {
    width: 30px;
    height: 30px;
    background: #9b7fb8;
    border-radius: 50%;
    position: relative;
}

.brand-symbol-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #9b7fb8;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(155, 127, 184, 0.3);
}

.hero-image-wrapper {
    margin: 1rem 0;
    max-width: 300px;
    width: 100%;
}

.hero-maharishi-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-quote {
    margin: 1.5rem 0;
    text-align: left;
    max-width: 500px;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    width: 100%;
}

/* Compact and attractive hero button */
.hero-buttons .btn-primary {
    padding: 0.4375rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    border-radius: 40px;
    box-shadow: none;
    font-weight: 600;
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}


/* Programs Section */
.programs {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
    position: relative;
    color: var(--text-dark);
}

.programs .section-title {
    color: var(--text-dark);
}

.programs .section-subtitle {
    color: var(--text-light);
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.program-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    border-color: var(--border-soft);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
}

.program-icon::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;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.45);
}

.program-card:hover .program-icon::before {
    width: 120px;
    height: 120px;
}

.program-icon svg {
    width: 36px;
    height: 36px;
    z-index: 1;
    position: relative;
}

.program-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.program-card:hover .program-title {
    color: var(--primary-color);
}

.program-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    font-size: 17px;
    flex-grow: 1;
}

.program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

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

.program-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

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

/* Program Actions Container */
.program-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: nowrap;
    width: 100%;
}

/* Program CTA Button */
.btn-program-cta {
    margin-top: 0;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    width: auto;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
}

.program-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.85), rgba(154, 112, 9, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.program-image-wrapper:hover {
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.25);
    transform: translateY(-5px);
}

.program-image-wrapper:hover .program-overlay {
    opacity: 1;
}

.program-image-wrapper:hover .program-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.view-pdf {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border-radius: 8px;
}

/* About TM Section */
.about-tm {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
}

.about-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.about-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    display: block;
    width: 100%;
}

.about-tm .section-header {
    margin-bottom: 3rem;
}

.about-description {
    margin-bottom: 0;
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 17px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
}

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

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-soft);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Diagram and Video Section - Side by Side */
.diagram-video-section {
    padding: 4rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.diagram-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.diagram-column {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-column {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.tm-process-diagram {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.tm-process-diagram:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.tm-process-diagram .transcending-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 2;
    padding-left: 1rem;
}



/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    color: var(--text-dark);
}

.benefits .section-title {
    color: var(--text-dark);
}

.benefits .section-subtitle {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-card {
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
    position: relative;
    overflow: hidden;
}

.benefit-icon::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;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    z-index: 1;
    position: relative;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.45);
}

.benefit-card:hover .benefit-icon::before {
    width: 120px;
    height: 120px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-soft);
}

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

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Update program and benefit card text for dark backgrounds */
.programs .program-card,
.benefits .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(184, 134, 11, 0.2);
}

.programs .program-card:hover,
.benefits .benefit-card:hover {
    background: #ffffff;
    border-color: rgba(184, 134, 11, 0.4);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.3);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-size: 17px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.testimonial-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-soft);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 1.25rem;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.2);
    transform: translateY(-3px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.tm-process-diagram {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.transcending-label {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    white-space: nowrap;
}

.consciousness-funnel {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.funnel-top {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.mind-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.funnel-body {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.05) 50%, rgba(184, 134, 11, 0.02) 100%);
    border-radius: 0 0 150px 150px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    padding: 2rem 0;
}

.consciousness-sphere {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(154, 112, 9, 0.2));
    border: 3px solid rgba(184, 134, 11, 0.2);
    position: relative;
    animation: gentlePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.15);
}

.consciousness-sphere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.sphere-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 70px;
    height: 70px;
    animation-delay: 0.3s;
}

.sphere-3 {
    width: 60px;
    height: 60px;
    animation-delay: 0.6s;
}

.sphere-4 {
    width: 50px;
    height: 50px;
    animation-delay: 0.9s;
}

.sphere-5 {
    width: 40px;
    height: 40px;
    animation-delay: 1.2s;
}

.sphere-6 {
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
}

.funnel-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.consciousness-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.tm-process-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B8860B, #D4AF37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.15);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-soft);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 8px 28px rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    text-align: center;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.contact-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
}

.social-icons-horizontal {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 246, 0.95) 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-form-wrapper:hover {
    box-shadow: 0 16px 50px rgba(184, 134, 11, 0.15);
    transform: translateY(-4px);
    border-color: rgba(184, 134, 11, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

/* Compact form styling for modal */
#journeyForm .form-group {
    margin-bottom: 0.875rem;
}

.form-group label {
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Compact labels for journey form */
#journeyForm .form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group label::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    padding: 1.125rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Compact inputs for journey form */
#journeyForm .form-group input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

#journeyForm .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    min-height: 80px;
    resize: none;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(184, 134, 11, 0.3);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.08);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12), 0 6px 20px rgba(184, 134, 11, 0.15);
    transform: translateY(-2px);
    outline: none;
    background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* WhatsApp-themed submit button */
#journeyForm .btn-primary {
    background: transparent;
    color: #25D366;
    box-shadow: none;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-shrink: 0;
    border: 2px solid #25D366;
}

#journeyForm .btn-primary::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;
}

#journeyForm .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

#journeyForm .btn-primary:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    border-color: #128C7E;
}

#journeyForm .btn-primary::after {
    content: '📱';
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

/* Success message */
.form-success-message {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

/* Footer */
.footer {
    background: #fafafa;
    color: var(--text-dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.footer-design-credit {
    text-align: center;
}

.footer-design-credit a:hover {
    transform: translateY(-2px);
}

.footer-design-credit a:hover span {
    color: var(--primary-dark) !important;
}

.footer-design-credit img {
    transition: transform 0.3s ease;
}

.footer-design-credit a:hover img {
    transform: scale(1.1);
}

/* Eligibility Section */
.eligibility {
    padding: var(--space-2xl) 0;
    background: var(--bg-light);
    position: relative;
}

.eligibility-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

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

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.eligibility-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.religious-unity-image {
    max-width: 100%;
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    display: block;
}

.symbols-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.symbol-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.symbol {
    position: absolute;
    width: 60px;
    height: 60px;
    color: #000;
    stroke: #000;
    fill: #000;
}

.symbol svg {
    width: 100%;
    height: 100%;
}

.symbol-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.symbol-top-right {
    top: 15%;
    right: 15%;
}

.symbol-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.symbol-bottom-right {
    bottom: 15%;
    right: 15%;
}

.symbol-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.symbol-bottom-left {
    bottom: 15%;
    left: 15%;
}

.symbol-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.symbol-top-left {
    top: 15%;
    left: 15%;
}

.eligibility-text {
    padding: 0.5rem 0;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.eligibility-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.4;
}

.eligibility-list li:last-child {
    margin-bottom: 0;
}

/* Clients Section */
.clients {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
    position: relative;
}

.clients-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 120px;
    height: 100%;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-soft);
    background: var(--bg-white);
}

.logo-placeholder {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-img {
    max-width: 90%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.client-logo:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 90%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Session Flow Section */
.session-flow {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.session-flow .section-title {
    color: var(--text-dark);
}

.session-flow .section-subtitle {
    color: var(--text-light);
}


.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    max-width: 100%;
    margin: var(--space-2xl) auto 0;
    position: relative;
}

.flow-step {
    text-align: left;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    border: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
}


.day-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Inter', sans-serif;
    border-radius: 8px 8px 0 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.content-box {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 0 0 16px 16px;
    padding: var(--space-lg);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.session-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.session-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.session-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.time-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    margin-top: 0.25rem;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.flow-step:hover .content-box {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}







/* Floating WhatsApp Button */
/* Hidden Admin Button */
.admin-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(184, 134, 11, 0.4);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0.3;
    backdrop-filter: blur(5px);
}

.admin-float svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.admin-float:hover {
    opacity: 1;
    background: rgba(184, 134, 11, 0.25);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Vertical Social Icons */
.vertical-social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    z-index: 999;
    align-items: center;
}

.vertical-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
    flex-shrink: 0;
}

.vertical-social-icon::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.4s ease, height 0.4s ease;
}

.vertical-social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.vertical-social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.vertical-social-icon:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}

.icon-label {
    position: absolute;
    bottom: -48px;
    right: calc(100% + 15px);
    transform: translateY(8px);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    min-width: 75px;
    text-align: center;
    line-height: 1.2;
}

.icon-label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--primary-color);
}

.vertical-social-icon:hover .icon-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 2.5rem;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 95vh;
    overflow-y: visible;
    overflow-x: hidden;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.2), 0 0 0 1px rgba(184, 134, 11, 0.1);
    border: 2px solid rgba(184, 134, 11, 0.1);
    display: flex;
    flex-direction: column;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
    flex-shrink: 0;
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Ensure modal content fits without scroll */
.modal-content {
    box-sizing: border-box;
}

.modal.active .modal-content {
    max-height: calc(100vh - 2rem);
}

#journeyForm {
    margin-top: 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.pdf-modal {
    max-width: 900px;
    padding: 1rem;
}

.pdf-modal iframe {
    width: 100%;
    height: 80vh;
    border: none;
}

/* Image Modal Styles */
.image-modal {
    max-width: 95%;
    max-height: 95vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(184, 134, 11, 0.02));
    position: relative;
}

.image-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.download-btn svg {
    width: 18px;
    height: 18px;
}

.image-modal-body {
    padding: 1.5rem;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: calc(95vh - 100px);
}

.image-modal-body img {
    max-width: 100%;
    max-height: calc(95vh - 150px);
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.close-modal {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: none;
    padding: 0;
    line-height: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--text-dark);
    background: rgba(184, 134, 11, 0.1);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Base: Ensure all images are fluid and prevent horizontal scroll */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    position: relative;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all elements respect container bounds */
* {
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2rem); /* Responsive padding */
    padding-right: clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0 auto;
}

/* ============================================
   MOBILE (PORTRAIT) - 320px to 480px
   ============================================ */
@media (min-width: 320px) and (max-width: 480px) {
    /* Typography - Mobile */
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.875rem; /* 14px */
    }

    .section-title {
        font-size: 1.75rem; /* 28px */
        margin-bottom: 1rem;
    }

    .section-title::after {
        width: 3rem; /* 48px */
        height: 0.25rem; /* 4px */
    }

    .section-subtitle {
        font-size: 0.875rem; /* 14px */
    }

    /* Navigation - Mobile */
    .navbar {
        padding: 0;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        padding: 0.875rem 0;
        gap: 1rem;
    }

    .nav-logo {
        font-size: clamp(0.75rem, 3vw, 1.25rem); /* Responsive logo */
        gap: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90%;
    }

    .nav-logo::before {
        display: none; /* Remove emoji on mobile */
    }
    
    .nav-logo span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(184, 134, 11, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        text-align: center;
        border-radius: 12px;
        width: 100%;
    }

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

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

    .nav-menu.active .nav-cta-wrapper {
        display: flex;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(184, 134, 11, 0.1);
    }

    .nav-menu.active .btn-nav-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem !important;
    }

    .nav-toggle {
        display: flex;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay for mobile */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        backdrop-filter: blur(2px);
    }

    /* Hero Section - Mobile */
    .hero {
        min-height: 100vh;
        padding: 0;
        overflow: hidden;
        position: relative;
    }

    .hero-background-image {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }

    .hero-background-image::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.05) 100%);
    }

    /* Very small screens - optimize hero image */
    @media (max-width: 360px) {
        .hero-background-image {
            background-size: cover;
            background-position: center center;
            min-height: 100vh;
        }

        .hero {
            min-height: 100vh;
            height: 100vh;
        }
    }

    .hero-title-above-tree {
        font-size: 1.75rem; /* 28px */
        top: 3%;
        padding: 0 1rem;
        white-space: normal;
        line-height: 1.3;
        z-index: 3;
        position: absolute;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .hero-baba-wrapper {
        top: 1%;
        left: 0.5rem;
        max-width: 200px;
    }
    
    .hero-baba-image {
        position: relative;
        max-width: 120px;
        max-height: 20vh;
        min-width: 0;
        width: auto;
        height: auto;
        left: 0;
        top: 0;
        bottom: auto;
        padding-top: 0.75rem;
        padding-left: 0.75rem;
        z-index: 4;
        object-fit: contain;
        object-position: left top;
        box-sizing: border-box;
        display: block;
        transform: none;
    }
    
    .hero-baba-quote {
        font-size: 0.875rem;
        margin-top: 1rem;
        padding-left: 0.75rem;
        max-width: 180px;
        line-height: 1.4;
    }
    
    .hero-baba-quote .quote-author {
        margin-top: 0.75rem;
        font-size: 0.75em;
    }

    /* Very small screens - ensure image doesn't overflow */
    @media (max-width: 360px) {
        .hero-baba-wrapper {
            max-width: 160px;
        }
        
        .hero-baba-image {
            max-width: 100px;
            max-height: 18vh;
            left: 0;
            top: 0;
            padding-top: 0.5rem;
            padding-left: 0.5rem;
            transform: none;
        }
        
        .hero-baba-quote {
            font-size: 0.8rem;
            max-width: 140px;
            line-height: 1.4;
        }
        
        .hero-baba-quote .quote-author {
            margin-top: 0.5rem;
            font-size: 0.7em;
        }

        .hero-title-above-tree {
            top: 2%;
            font-size: 1.5rem;
        }
    }

    .hero-content {
        bottom: 3%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
        padding: 0 1rem;
        z-index: 3;
        position: absolute;
    }

    .hero-instruction-text {
        font-size: 0.8rem; /* 12.8px */
        white-space: normal;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
        letter-spacing: 0.3px;
        border-radius: 35px;
        min-height: 40px;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem; /* 14px */
        white-space: nowrap;
        min-height: 44px; /* Touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Container - Mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure all sections don't overflow */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Programs Section - Mobile */
    .programs {
        padding: 3rem 0;
        width: 100%;
        overflow-x: hidden;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .program-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .program-link {
        word-break: break-word;
    }
    
    .program-actions {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .btn-program-cta {
        width: auto;
        white-space: nowrap;
        min-height: 44px;
        box-sizing: border-box;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .program-link {
        font-size: 0.875rem;
    }

    .program-image-wrapper {
        height: 180px;
    }

    /* About Section - Mobile */
    .about-tm {
        padding: 3rem 0;
    }

    .about-content {
        gap: 2rem;
    }
    
    .about-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-column {
        order: 2;
    }
    
    .about-description {
        order: 1;
        margin-bottom: 0;
    }

    /* TM Diagram Section - Mobile */
    .tm-diagram-section {
        padding: 2rem 0;
    }

    .tm-process-diagram {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }

    .tm-process-diagram .transcending-label {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        text-align: center;
        letter-spacing: 1px;
    }

    .consciousness-funnel {
        max-width: 180px;
        height: 240px;
    }

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

    .feature-item {
        padding: 1.25rem;
    }

    /* Benefits Section - Mobile */
    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Testimonials Section - Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    /* Video Section - Mobile */
    .video-wrapper {
        width: 100%;
        padding-top: 56.25%;
    }

    /* FAQ Section - Mobile */
    .faq {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    /* Eligibility Section - Mobile */
    .eligibility {
        padding: 2rem 0;
    }

    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .eligibility-graphic {
        padding: 0.5rem;
    }

    .religious-unity-image {
        max-width: 250px;
    }

    .symbols-circle {
        width: 220px;
        height: 220px;
    }

    .symbol {
        width: 35px;
        height: 35px;
    }

    .symbol-center {
        width: 45px;
        height: 45px;
    }

    .eligibility-list li {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
    }

    /* Clients Section - Mobile */
    .clients {
        padding: 3rem 0;
    }

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

    .client-logo {
        padding: 1rem;
        min-height: 100px;
    }

    .client-logo-img,
    .client-logo img {
        max-width: 85%;
        max-height: 70px;
    }

    .logo-placeholder {
        font-size: 0.75rem;
    }

    /* Session Flow - Mobile */
    .session-flow {
        padding: 3rem 0;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .day-banner {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .session-title {
        font-size: 0.9375rem;
    }

    .session-description {
        font-size: 0.875rem;
    }

    /* Contact Section - Mobile */
    .contact {
        padding: 3rem 0;
        width: 100%;
        overflow-x: hidden;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        order: 1;
    }

    .contact-form-wrapper {
        order: 2;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-full {
        width: 100%;
        min-height: 48px;
        box-sizing: border-box;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }

    .contact-intro {
        font-size: 0.875rem;
    }

    /* Footer - Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Floating Elements - Mobile */
    .vertical-social-icons {
        display: none;
    }

    .admin-float {
        width: 35px;
        height: 35px;
        bottom: 15px;
        left: 15px;
        opacity: 0.25;
    }
    
    .admin-float svg {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        min-width: 50px;
        min-height: 50px;
        z-index: 999;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* Ensure text doesn't overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Fix any table or pre elements */
    table, pre {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }

    /* Modal - Mobile */
    .modal-content {
        padding: 1.5rem 1.25rem;
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
        overflow-y: visible;
    }

    .modal-content h2 {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.5rem;
    }

    .modal-content h2::after {
        width: 45px;
        height: 2px;
    }

    #journeyForm {
        margin-top: 0.25rem;
    }

    #journeyForm .form-group {
        margin-bottom: 0.75rem;
    }

    #journeyForm .form-group label {
        margin-bottom: 0.4rem;
        font-size: 0.8125rem;
    }

    #journeyForm .form-group input,
    #journeyForm .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    #journeyForm .form-group textarea {
        min-height: 70px;
    }

    #journeyForm .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        margin-top: 0.5rem;
    }

    .close-modal {
        top: 0.875rem;
        right: 0.875rem;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }

    .pdf-modal {
        padding: 0.75rem;
    }

    .pdf-modal iframe {
        height: 70vh;
    }
    
    .image-modal {
        max-width: 98%;
        max-height: 98vh;
    }
    
    .image-modal-header {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .image-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .image-modal-body {
        padding: 1rem;
        max-height: calc(98vh - 120px);
    }
    
    .image-modal-body img {
        max-height: calc(98vh - 170px);
    }
}

/* ============================================
   TABLET (PORTRAIT) - 768px to 1024px
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Typography - Tablet Portrait */
    html {
        font-size: 16px;
    }

    body {
        font-size: 1rem; /* 16px */
    }

    .section-title {
        font-size: 2.25rem; /* 36px */
    }

    .section-title::after {
        width: 4rem; /* 64px */
    }

    /* Navigation - Tablet Portrait */
    .navbar .container {
        padding: 0 2rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-nav-cta {
        padding: 0.625rem 1.5rem !important;
        font-size: 0.875rem !important;
    }

    .nav-toggle {
        display: none;
    }

    /* Hero Section - Tablet Portrait */
    .hero-title-above-tree {
        font-size: 2rem; /* 32px */
        top: 4%;
    }

    .hero-baba-wrapper {
        top: 1%;
        left: 1%;
        max-width: 240px;
    }
    
    .hero-baba-image {
        max-width: 180px;
        max-height: 22vh;
        left: 0;
        top: 0;
        padding-top: 1rem;
        padding-left: 1rem;
        transform: none;
    }
    
    .hero-baba-quote {
        font-size: 1rem;
        max-width: 240px;
        line-height: 1.5;
    }
    
    .hero-baba-quote .quote-author {
        margin-top: 0.875rem;
        font-size: 0.8em;
    }

    .hero-content {
        bottom: 3%;
        max-width: 500px;
    }

    .hero-instruction-text {
        font-size: 0.9rem; /* 14.4px */
    }

    /* Container - Tablet Portrait */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Programs Section - Tablet Portrait */
    .programs {
        padding: 4rem 0;
    }

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

    /* About Section - Tablet Portrait */
    .about-tm {
        padding: 4rem 0;
    }

    .about-content {
        gap: 2rem;
    }
    
    .about-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-description {
        margin-bottom: 0;
    }

    /* TM Diagram Section - Tablet */
    .tm-diagram-section {
        padding: 3rem 0;
    }

    .tm-process-diagram {
        min-height: 450px;
    }

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

    /* Benefits Section - Tablet Portrait */
    .benefits {
        padding: 4rem 0;
    }

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

    /* Testimonials Section - Tablet Portrait */
    .testimonials {
        padding: 4rem 0;
    }

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


    /* FAQ Section - Tablet Portrait */
    .faq {
        padding: 4rem 0;
    }

    /* Eligibility Section - Tablet Portrait */
    .eligibility {
        padding: 3rem 0;
    }

    .eligibility-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .eligibility-graphic {
        padding: 0.75rem;
    }

    .religious-unity-image {
        max-width: 300px;
    }

    .symbols-circle {
        width: 320px;
        height: 320px;
    }

    .symbol {
        width: 50px;
        height: 50px;
    }

    .symbol-center {
        width: 65px;
        height: 65px;
    }

    /* Clients Section - Tablet Portrait */
    .clients {
        padding: 4rem 0;
    }

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

    .client-logo {
        padding: 1.5rem;
    }

    .client-logo-img,
    .client-logo img {
        max-width: 90%;
        max-height: 85px;
    }
    
    /* Session Flow - Tablet Portrait */
    .session-flow {
        padding: 4rem 0;
    }

    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .flow-step:nth-child(5) {
        grid-column: span 2;
    }

    /* Contact Section - Tablet Portrait */
    .contact {
        padding: 4rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer - Tablet Portrait */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Floating Elements - Tablet Portrait */
    .vertical-social-icons {
        right: 15px;
    }

    .vertical-social-icon {
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }
}

/* ============================================
   TABLET (LANDSCAPE) - 768px to 1024px
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Typography - Tablet Landscape */
    html {
        font-size: 16px;
    }

    /* Hero Section - Tablet Landscape */
    .hero {
        min-height: 100vh;
    }

    .hero-title-above-tree {
        font-size: 2.125rem;
        top: 4%;
    }

    .hero-baba-wrapper {
        top: 1%;
        left: 1%;
        max-width: 260px;
    }
    
    .hero-baba-image {
        max-width: 200px;
        max-height: 24vh;
        left: 0;
        top: 0;
        padding-top: 1rem;
        padding-left: 1rem;
        transform: none;
    }
    
    .hero-baba-quote {
        font-size: 1.125rem;
        max-width: 260px;
        line-height: 1.5;
    }
    
    .hero-baba-quote .quote-author {
        margin-top: 1rem;
        font-size: 0.85em;
    }

    .hero-content {
        bottom: 3%;
    }

    /* Programs Section - Tablet Landscape */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* About Section - Tablet Landscape */
    .about-content {
        gap: 2.5rem;
    }
    
    .about-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .about-description {
        margin-bottom: 0;
    }


    /* Benefits Section - Tablet Landscape */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Clients Section - Tablet Landscape */
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }

    /* Session Flow - Tablet Landscape */
    .flow-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .flow-step:nth-child(4),
    .flow-step:nth-child(5) {
        grid-column: span 1;
    }

    /* Contact Section - Tablet Landscape */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Footer - Tablet Landscape */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LAPTOP / SMALL DESKTOP - 1025px to 1280px
   ============================================ */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* Typography - Laptop */
    html {
        font-size: 17px;
    }

    body {
        font-size: 1.0625rem; /* 17px */
    }

    .section-title {
        font-size: 2.5rem; /* 40px */
    }

    .section-title::after {
        width: 5rem; /* 80px */
    }

    /* Container - Laptop */
    .container {
        max-width: 1200px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Navigation - Laptop - Floating sidebar */
    .navbar {
        left: 2rem;
    }

    /* Hero Section - Laptop */
    .hero-title-above-tree {
        font-size: 2.25rem; /* 36px */
        top: 4%;
    }

    .hero-baba-wrapper {
        top: 1%;
        left: 1%;
        max-width: 280px;
    }
    
    .hero-baba-image {
        max-width: 220px;
        max-height: 26vh;
        left: 0;
        top: 0;
        padding-top: 1rem;
        padding-left: 1rem;
        transform: none;
    }
    
    .hero-baba-quote {
        font-size: 1.25rem;
        max-width: 280px;
        line-height: 1.5;
    }
    
    .hero-baba-quote .quote-author {
        margin-top: 1rem;
        font-size: 0.85em;
    }

    /* Programs Section - Laptop */
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }

    /* About Section - Laptop */
    .about-content {
        gap: 2.5rem;
    }
    
    .about-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .about-description {
        margin-bottom: 0;
    }


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

    /* Benefits Section - Laptop */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Clients Section - Laptop */
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }

    /* Session Flow - Laptop */
    .flow-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.75rem;
    }

    /* Contact Section - Laptop */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    /* Footer - Laptop */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* ============================================
   DESKTOP / LARGE SCREENS - 1281px and above
   ============================================ */
@media (min-width: 1281px) {
    /* Typography - Desktop */
    html {
        font-size: 18px;
    }

    body {
        font-size: 1.125rem; /* 18px */
    }

    .section-title {
        font-size: 2.75rem; /* 44px */
    }

    .section-title::after {
        width: 5rem; /* 80px */
    }

    /* Container - Desktop */
    .container {
        max-width: 1400px;
        padding-left: 4%;
        padding-right: 4%;
    }

    /* Navigation - Desktop - Floating sidebar */
    .navbar {
        left: 2rem;
    }

    /* Hero Section - Desktop */
    .hero-title-above-tree {
        font-size: 2.5rem; /* 40px */
        top: 4%;
    }

    .hero-baba-wrapper {
        top: 1%;
        left: 1%;
        max-width: 300px;
    }
    
    .hero-baba-image {
        max-width: 250px;
        max-height: 28vh;
        left: 0;
        top: 0;
        padding-top: 1rem;
        padding-left: 1rem;
        transform: none;
    }
    
    .hero-baba-quote {
        font-size: 1.5rem;
        max-width: 320px;
        line-height: 1.5;
    }
    
    .hero-baba-quote .quote-author {
        margin-top: 1.25rem;
        font-size: 0.85em;
    }

    .hero-content {
        max-width: 550px;
    }

    /* Programs Section - Desktop */
    .programs {
        padding: 6rem 0;
    }

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

    /* About Section - Desktop */
    .about-tm {
        padding: 6rem 0;
    }

    .about-content {
        gap: 3rem;
    }
    
    .about-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-description {
        margin-bottom: 0;
    }


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

    /* Benefits Section - Desktop */
    .benefits {
        padding: 6rem 0;
    }

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


    /* FAQ Section - Desktop */
    .faq {
        padding: 6rem 0;
    }

    /* Eligibility Section - Desktop */
    .eligibility {
        padding: 3rem 0;
    }

    .eligibility-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .eligibility-graphic {
        padding: 1rem;
    }

    .religious-unity-image {
        max-width: 350px;
    }

    .symbols-circle {
        width: 400px;
        height: 400px;
    }

    /* Clients Section - Desktop */
    .clients {
        padding: 6rem 0;
    }

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

    /* Session Flow - Desktop */
    .session-flow {
        padding: 6rem 0;
    }

    .flow-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }

    /* Contact Section - Desktop */
    .contact {
        padding: 6rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    /* Footer - Desktop */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    /* Floating Elements - Desktop */
    .vertical-social-icons {
        right: 20px;
    }

    .vertical-social-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }
}

    /* Session Flow - Desktop */
    .session-flow {
        padding: 6rem 0;
    }

    .flow-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }

    /* Contact Section - Desktop */
    .contact {
        padding: 6rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    /* Footer - Desktop */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    /* Floating Elements - Desktop */
    .vertical-social-icons {
        right: 20px;
    }

    .vertical-social-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }


