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

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary: #3b82f6;
    --accent: #60a5fa;
    --accent-light: #dbeafe;
    --background: #f8fafc;
    --surface: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --success: #22c55e;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

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

h1, h2, h3 {
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--accent-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 12px 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    font-weight: 400;
    color: var(--text-light);
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.header-cta:hover {
    background: #22c35e;
    transform: translateY(-1px);
}

.header-cta .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === About === */
.about {
    padding: 80px 0;
    background: var(--surface);
}

.about-content {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 3rem;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    background: var(--accent-light);
    border: 2px dashed var(--accent);
    border-radius: var(--radius);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 12px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.credentials {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.credentials li {
    background: var(--background);
    padding: 16px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.credentials strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.credentials span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.awards {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-light);
}

.awards h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.award-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: var(--accent-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* === Pricing === */
.pricing {
    padding: 80px 0;
    background: var(--background);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.save-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* === Motorway Training === */
.motorway {
    padding: 80px 0;
    background: var(--background);
}

.motorway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.motorway-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.motorway-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
}

@media (max-width: 768px) {
    .motorway-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* === Success Stories === */
.success {
    padding: 80px 0;
    background: var(--surface);
}

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

.testimonial-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.student-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
}

.student-photo .image-placeholder {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pass-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.quote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.student-name {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* === Area === */
.area {
    padding: 80px 0;
    background: var(--background);
}

.area-content {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.area-town {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.area-town h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.area-town p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}

.map-container iframe {
    display: block;
}

/* === CTA === */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--accent-light);
}

.cta-phone {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.cta-phone a {
    color: white;
    font-weight: 600;
}

/* === Footer === */
.footer {
    background: var(--text);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer p + p {
    margin-top: 4px;
}

/* === Responsive === */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .area-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .about, .pricing, .success, .area, .cta {
        padding: 60px 0;
    }

    .about-image {
        max-width: 100%;
    }

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

    .area-list {
        grid-template-columns: 1fr;
    }

    .header-content {
        padding: 0 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo span {
        display: none;
    }

    .header-cta {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 24px;
    }
}
