/* ============================================
   MASTER TRUCK SCHOOL — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --green-50:  #f0f7f1;
    --green-100: #d9eedf;
    --green-200: #b7dfbf;
    --green-300: #88c496;
    --green-400: #5fa874;
    --green-500: #3d8b56;
    --green-600: #2a6f41;
    --green-700: #1a5f2a;
    --green-800: #134a22;
    --green-900: #0d3718;

    --off-white: #faf9f6;
    --cream:     #f5f3ee;
    --warm-gray: #f0ede6;
    --text-dark: #1a2e1e;
    --text-mid:  #3d4f42;
    --text-light:#6b7c70;

    --shadow-sm:  0 1px 3px rgba(26, 95, 42, 0.06), 0 1px 2px rgba(26, 95, 42, 0.04);
    --shadow-md:  0 4px 16px rgba(26, 95, 42, 0.08), 0 2px 6px rgba(26, 95, 42, 0.05);
    --shadow-lg:  0 12px 40px rgba(26, 95, 42, 0.12), 0 4px 12px rgba(26, 95, 42, 0.06);
    --shadow-xl:  0 24px 60px rgba(26, 95, 42, 0.14), 0 8px 20px rgba(26, 95, 42, 0.08);

    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--green-700);
    color: white;
    border-color: var(--green-700);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--green-700);
    border-color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover, .btn-outline-light:focus {
    background: rgba(255,255,255,0.12);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-700);
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
    background: var(--green-700);
    color: white;
    transform: translateY(-2px);
}

.btn-sm  { padding: 8px 18px; font-size: 14px; }
.btn-md  { padding: 12px 24px; font-size: 15px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 95, 42, 0.08);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--green-700);
}
.logo:hover { color: var(--green-600); }

.logo-text {
    line-height: 1.1;
}

.logo-light .logo-text { color: white; }
.logo-text-light { color: white !important; }

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-list a:hover,
.nav-list a:focus {
    color: var(--green-700);
    background: var(--green-50);
}
.nav-list .btn-primary {
    color: white;
    margin-left: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-700);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    background: var(--green-700);
    padding: 120px 0 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

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

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--green-200);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--green-200);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--green-300);
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/7;
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -32px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}
.hero-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.3;
}
.hero-float-card span {
    font-size: 13px;
    color: var(--text-light);
}

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

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Programs --- */
.programs {
    padding: 100px 0;
    background: var(--off-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 95, 42, 0.06);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.program-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.program-features {
    margin-bottom: 24px;
    flex: 1;
}
.program-features li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 8px;
}
.program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--green-300);
    border-radius: 50%;
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: var(--cream);
}

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

.why-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content .section-tag { margin-bottom: 16px; }
.why-content .section-title { text-align: left; margin-bottom: 16px; }
.why-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.why-feature-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* --- Process --- */
.process {
    padding: 100px 0;
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 95, 42, 0.06);
    height: 100%;
    transition: all var(--transition);
}
.step-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.step-connector {
    position: absolute;
    top: 44px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-200), var(--green-400));
    z-index: 1;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--green-700);
    position: relative;
    overflow: hidden;
}

.testimonials .section-tag {
    background: rgba(255,255,255,0.12);
    color: var(--green-200);
}
.testimonials .section-title { color: white; }
.testimonials .section-desc { color: var(--green-300); }

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

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-4px);
}

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

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--green-100);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar { flex-shrink: 0; }

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.author-detail {
    font-size: 0.8rem;
    color: var(--green-300);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: var(--cream);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--green-700);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
}

.cta-content { flex: 1; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    color: var(--green-200);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

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

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

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-600);
    margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.contact-detail a:hover { color: var(--green-700); text-decoration: underline; }

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

/* --- Form --- */
.form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 95, 42, 0.06);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

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

.required {
    color: var(--green-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--green-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(42, 111, 65, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 32px 16px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success strong {
    display: block;
    font-size: 1.2rem;
    color: var(--green-700);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    color: white;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--green-300);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.footer-links a, .footer-contact a {
    font-size: 0.9rem;
    color: var(--green-300);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: white; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--green-300);
    line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--green-400);
}
.footer-bottom a {
    color: var(--green-300);
}
.footer-bottom a:hover { color: white; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .step-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 100;
    }
    .nav-list.open { right: 0; }
    .nav-list a { padding: 12px 16px; font-size: 16px; }
    .nav-list .btn-primary { text-align: center; justify-content: center; margin-left: 0; margin-top: 8px; }

    .hero { padding: 100px 0 0; min-height: auto; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 80px;
    }
    .hero-image { order: -1; }
    .hero-img-wrapper { aspect-ratio: 4/3; }
    .hero-float-card { left: 16px; bottom: 20px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }

    .programs-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-image { aspect-ratio: 4/3; }
    .why-content .section-title { text-align: center; }
    .why-content .section-tag { display: block; text-align: center; }
    .why-intro { text-align: center; }

    .process-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    .cta-text { margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { display: block; text-align: center; }
    .contact-intro { text-align: center; }

    .form-card { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-headline { font-size: 2rem; }
    .programs-grid,
    .testimonials-grid { gap: 20px; }
    .program-card { padding: 28px 24px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-float-card { animation: none; }
}
