/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --coral: #F2705A;
    --coral-dark: #E5594A;
    --coral-light: #FF9A8A;
    --coral-bg: #FFF0ED;
    --charcoal: #2D3436;
    --charcoal-light: #4A5568;
    --charcoal-lighter: #718096;
    --cream: #FFFAF8;
    --white: #FFFFFF;
    --gray-50: #F7FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(45,52,54,0.06), 0 1px 2px rgba(45,52,54,0.04);
    --shadow-md: 0 4px 14px rgba(45,52,54,0.08);
    --shadow-lg: 0 10px 40px rgba(45,52,54,0.10);
    --shadow-xl: 0 20px 60px rgba(45,52,54,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', 'Segoe UI', system-ui, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'Quicksand', sans-serif;
    font-weight: 800;
    line-height: 1.25;
    color: var(--charcoal);
}

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

a:hover {
    color: var(--coral-dark);
}

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(242, 112, 90, 0.1);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 250, 248, 0.97);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--coral);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-nav a {
    color: var(--charcoal-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}

.primary-nav a:hover {
    color: var(--coral);
    background: var(--coral-bg);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    position: relative;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    box-shadow: 0 4px 14px rgba(242, 112, 90, 0.35);
}

.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 112, 90, 0.45);
    color: white;
}

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

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

.btn-white {
    background: white;
    color: var(--charcoal);
    border-color: white;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--charcoal);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    max-width: 640px;
    margin: 0 auto 60px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-bg);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--charcoal);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--charcoal-lighter);
    line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 96px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--coral-bg) 50%, var(--cream) 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,112,90,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--charcoal-light);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.text-coral {
    color: var(--coral);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal-light);
}

/* Hero Images */
.hero-image-wrap {
    position: relative;
    height: 620px;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-1 {
    width: 380px;
    height: 460px;
    top: 20px;
    right: 0;
    z-index: 2;
}

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

.hero-img-2 {
    width: 240px;
    height: 180px;
    bottom: 40px;
    left: 0;
    z-index: 3;
}

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

.hero-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--coral);
    opacity: 0.08;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

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

.about-image-wrap {
    position: relative;
    height: 620px;
}

.about-img-main {
    width: 340px;
    height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    width: 240px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 20px;
    border: 4px solid white;
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    bottom: 180px;
    left: -20px;
    background: var(--coral);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(242, 112, 90, 0.35);
    z-index: 2;
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.about-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 600;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--charcoal-lighter);
    line-height: 1.85;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

.about-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== PROGRAMS ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.program-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 112, 90, 0.2);
}

.program-card-icon {
    padding: 28px 28px 0;
}

.program-card-title {
    font-size: 1.2rem;
    margin: 0 28px 12px;
    color: var(--charcoal);
}

.program-card-desc {
    padding: 0 28px;
    color: var(--charcoal-lighter);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.program-card-img {
    margin: 0 28px 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 160px;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.program-card:hover .program-card-img img {
    transform: scale(1.05);
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 112, 90, 0.15);
}

.why-card-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--coral);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}

.why-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.why-card-desc {
    font-size: 0.92rem;
    color: var(--charcoal-lighter);
    line-height: 1.75;
}

/* ===== SAFETY ===== */
.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-lead {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.85;
    margin-bottom: 28px;
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.safety-list li strong {
    color: var(--charcoal);
}

.safety-image-wrap {
    position: relative;
    height: 620px;
}

.safety-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.safety-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--coral);
    color: white;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(242, 112, 90, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 112, 90, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d4649 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242,112,90,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta .section-tag {
    background: rgba(242, 112, 90, 0.2);
}

.cta .section-title {
    color: white;
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
    position: relative;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.85;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--charcoal-light);
}

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

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: white;
    box-shadow: 0 0 0 3px rgba(242, 112, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--charcoal-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-success a {
    font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo-name {
    color: white;
}

.footer-desc {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-contact a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--coral-light);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(242, 112, 90, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--coral-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .safety-grid,
    .contact-grid,
    .cta .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrap {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-1 {
        width: 280px;
        height: 340px;
    }

    .hero-img-2 {
        width: 180px;
        height: 140px;
    }

    .about-image-wrap {
        height: 450px;
        max-width: 450px;
        margin: 0 auto;
    }

    .safety-image-wrap {
        height: 400px;
    }

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

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        z-index: 999;
    }

    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .primary-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    .primary-nav .btn-coral {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 100px 0 64px;
    }

    .hero-grid {
        gap: 40px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-image-wrap {
        height: 360px;
    }

    .hero-img-1 {
        width: 200px;
        height: 260px;
    }

    .hero-img-2 {
        width: 140px;
        height: 110px;
    }

    .hero-trust {
        gap: 16px;
    }

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

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

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

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

    .contact-form-wrap {
        padding: 28px 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

    .about-image-wrap {
        height: 340px;
    }

    .about-img-main {
        width: 220px;
        height: 300px;
    }

    .about-img-float {
        width: 160px;
        height: 140px;
    }

    .about-stat {
        left: -10px;
        padding: 12px 16px;
    }

    .safety-badge {
        left: -10px;
        padding: 14px 18px;
        font-size: 0.8rem;
    }
}
