@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2C3E2D;
    --primary-light: #4A6B4E;
    --primary-dark: #1A2A1B;
    --secondary: #D4C5A9;
    --accent: #8B7355;
    --terracotta: #B8705A;
    --fog-blue: #8FA8B7;
    --bg-cream: #F7F4EF;
    --bg-sand: #EDEAE4;
    --bg-deep: #1A2A1B;
    --bg-warm-white: #FDFCFA;
    --text-dark: #2A2A2A;
    --text-body: #4A4A4A;
    --text-muted: #7A7A7A;
    --text-light: #F7F4EF;
    --gradient-dark: linear-gradient(180deg, #1A2A1B, #0F1A10);
    --gradient-accent: linear-gradient(135deg, #D4C5A9, #8B7355);
    --gradient-primary: linear-gradient(135deg, #2C3E2D, #1A2A1B);
    --shadow-sm: 0 2px 8px rgba(44, 62, 45, 0.06);
    --shadow-md: 0 4px 15px rgba(44, 62, 45, 0.08);
    --shadow-lg: 0 10px 30px rgba(44, 62, 45, 0.12);
    --shadow-xl: 0 20px 50px rgba(44, 62, 45, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-tag-light {
    color: var(--secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(44, 62, 45, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 25px rgba(44, 62, 45, 0.3);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.required {
    color: var(--terracotta);
    font-weight: 700;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    transition: var(--transition);
}

.site-header.scrolled .logo {
    color: var(--primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-list a:hover {
    color: #fff;
}

.site-header.scrolled .nav-list a {
    color: var(--text-body);
}

.site-header.scrolled .nav-list a:hover {
    color: var(--primary);
}

.site-header.scrolled .nav-list a::after {
    background: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

.site-header.scrolled .hamburger-line {
    background: var(--primary);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 80%, rgba(26, 42, 27, 0.3), rgba(26, 42, 27, 0.85));
    z-index: 1;
}

.fog-layer {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
}

.fog-1 {
    background: radial-gradient(ellipse at 20% 60%, rgba(255, 255, 255, 0.06), transparent 60%);
    animation: fogDrift1 12s ease-in-out infinite;
}

.fog-2 {
    background: radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, 0.04), transparent 55%);
    animation: fogDrift2 15s ease-in-out infinite;
}

.fog-3 {
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
    animation: fogDrift3 18s ease-in-out infinite;
}

@keyframes fogDrift1 {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes fogDrift2 {
    0%, 100% { opacity: 0.4; transform: scale(1.1); }
    50% { opacity: 0.8; transform: scale(1); }
}

@keyframes fogDrift3 {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Cormorant', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(44, 62, 45, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(44, 62, 45, 0.4), 0 0 60px rgba(74, 107, 78, 0.15); }
}

.about-section {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-body);
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.about-feature i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 62, 45, 0.08);
    color: var(--primary);
    transition: var(--transition);
}

.about-feature:hover i {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1);
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.stats-section {
    position: relative;
    background: var(--gradient-dark);
    padding: 60px 0 80px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--secondary);
    font-variant-numeric: tabular-nums;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(247, 244, 239, 0.7);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.how-section {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 100px;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    max-width: 240px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(44, 62, 45, 0.06);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(44, 62, 45, 0.2);
}

.step-card:hover .step-icon i {
    color: var(--text-light);
    animation: iconSway 0.6s ease;
}

@keyframes iconSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.step-title {
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    color: var(--secondary);
    font-size: 1rem;
    opacity: 0.5;
}

.locations-section {
    position: relative;
    background: var(--bg-sand);
    padding: 80px 0 100px;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.location-card {
    background: var(--bg-warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.location-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 27, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.location-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-name {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.location-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 12px;
}

.location-distance {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: auto;
}

.location-distance i {
    margin-right: 6px;
    color: var(--terracotta);
}

.program-section {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 100px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
    padding-left: 40px;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    padding: 0 0 40px 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 3px solid var(--primary);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(44, 62, 45, 0.1);
}

.timeline-content {
    background: var(--bg-warm-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-time {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.timeline-title {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.testimonials-section {
    position: relative;
    background: var(--gradient-dark);
    padding: 80px 0 100px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.5;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #E8B84B;
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(247, 244, 239, 0.8);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 197, 169, 0.3);
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: rgba(247, 244, 239, 0.5);
}

.team-section {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 100px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.team-card {
    background: var(--bg-warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.team-photo {
    height: 280px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-photo img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.team-name {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    min-height: auto;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.team-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.faq-section {
    position: relative;
    background: var(--bg-sand);
    padding: 80px 0 100px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

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

.faq-item {
    background: var(--bg-warm-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.5;
    min-height: 48px;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-section {
    position: relative;
    background: var(--bg-cream);
    padding: 80px 0 80px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(44, 62, 45, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover i {
    background: var(--primary);
    color: var(--text-light);
}

.contact-info-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: rgba(247, 244, 239, 0.9);
    backdrop-filter: blur(5px);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 197, 169, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-warm-white);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none;
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 45, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B7355' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-end;
    padding-bottom: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-body);
    min-height: 48px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.site-footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    color: rgba(247, 244, 239, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(247, 244, 239, 0.5);
}

.footer-links h4,
.footer-social h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(247, 244, 239, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(247, 244, 239, 0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(247, 244, 239, 0.35);
}

.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 27, 0.7);
    backdrop-filter: blur(4px);
}

.exit-modal-content {
    position: relative;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

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

.exit-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.exit-modal-close:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.exit-modal-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.exit-modal-content h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.exit-modal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.exit-modal-content p strong {
    color: var(--terracotta);
    font-size: 1.3rem;
}

.exit-modal-btn {
    display: inline-flex;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 62, 45, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 45, 0.35);
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(184, 112, 90, 0.3);
    transition: var(--transition);
    text-decoration: none;
    animation: callPulse 2s ease-in-out infinite;
}

.floating-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(184, 112, 90, 0.4);
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(184, 112, 90, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(184, 112, 90, 0.3), 0 0 0 10px rgba(184, 112, 90, 0.1); }
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-grid {
        gap: 40px;
    }

    .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 45%;
        flex: 0 0 45%;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .hamburger.active .hamburger-line {
        background: #fff;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-list a {
        font-size: 1.3rem;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-list a:hover {
        color: #fff;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-nav.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active .nav-list li:nth-child(5) { transition-delay: 0.3s; }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .about-image img {
        height: 300px;
    }

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

    .stat-number {
        font-size: 2.5rem;
        min-width: 120px;
    }

    .step-card {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

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

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-dot {
        left: -30px;
        width: 26px;
        height: 26px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .scroll-top-btn,
    .floating-call-btn {
        bottom: 20px;
        width: 48px;
        height: 48px;
    }

    .scroll-top-btn {
        right: 20px;
    }

    .floating-call-btn {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .hero-section {
        padding-bottom: 60px;
    }

    .about-section,
    .how-section,
    .locations-section,
    .program-section,
    .testimonials-section,
    .team-section,
    .faq-section,
    .contact-section {
        padding: 50px 0 70px;
    }

    .stats-section {
        padding: 40px 0 60px;
    }

    .fog-layer {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .exit-modal-content {
        padding: 36px 24px;
    }

    .exit-modal-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.85rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: auto;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-divider::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
    left: 10px;
}

.comparison-divider::after {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
    right: 10px;
}

@media (max-width: 768px) {
    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }
}