﻿/* =========================================================
   STEADY DRIVING SCHOOL
   Premium Responsive Stylesheet
   HTML / JS compatible with existing structure
   ========================================================= */

/* ===== CSS Variables & Reset ===== */

:root {
    --primary: #14243a;
    --primary-dark: #0c1727;
    --secondary: #1677b8;
    --secondary-dark: #0e5d91;
    --accent: #f47b45;

    --white: #ffffff;
    --light: #f5f8fb;
    --light-blue: #eef6fc;

    --gray: #687586;
    --gray-dark: #455364;
    --gray-light: #e5ebf1;

    --text: #253447;
    --border: #dce4ec;

    --success: #198754;

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

    --shadow-sm: 0 4px 14px rgba(20, 36, 58, 0.06);
    --shadow-md: 0 10px 30px rgba(20, 36, 58, 0.10);
    --shadow-lg: 0 18px 45px rgba(20, 36, 58, 0.14);
    --shadow-xl: 0 25px 60px rgba(20, 36, 58, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
}


/* ===== Reset ===== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;

    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

::selection {
    background: var(--secondary);
    color: var(--white);
}


/* ===== Container ===== */

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


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(20, 36, 58, 0.07);

    box-shadow: 0 4px 20px rgba(20, 36, 58, 0.05);

    transition: var(--transition);
}

.navbar:hover {
    box-shadow: 0 8px 28px rgba(20, 36, 58, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    min-height: 76px;

    margin: 0 auto;
    padding: 8px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);
    text-decoration: none;

    font-weight: 800;
    font-size: 1.1rem;
}

.logo-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.65rem;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu .menu-header {
    display: none;
}

.nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 0;

    color: var(--gray-dark);
    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-link i {
    display: none;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--secondary);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

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


/* ===== Mobile Toggle ===== */

.nav-toggle {
    display: none;

    flex-direction: column;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 8px;

    background: transparent;
    border: none;

    gap: 5px;

    z-index: 1002;
}

.nav-toggle span {
    display: block;

    width: 27px;
    height: 3px;

    background: var(--primary);

    border-radius: 10px;

    transition: var(--transition);
}

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

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

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


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 76px);
    height: 760px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("hero-desktop.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero .overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 22, 38, 0.78) 0%,
            rgba(8, 22, 38, 0.48) 42%,
            rgba(8, 22, 38, 0.16) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;
    padding: 40px 24px;

    text-align: center;
    color: var(--white);

    animation: heroFadeUp 0.8s ease-out both;
}

.hero-title {
    margin-bottom: 1.25rem;

    color: var(--white);

    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -1.5px;

    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    max-width: 680px;

    margin: 0 auto 2.25rem;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.2rem;
    line-height: 1.75;
    font-weight: 400;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 34px;

    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-dark)
    );

    color: var(--white);

    border: none;
    border-radius: 999px;

    font-size: 1rem;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(14, 93, 145, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(14, 93, 145, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    background: linear-gradient(
        135deg,
        #2189ca,
        var(--secondary-dark)
    );
}

.cta-button:active {
    transform: translateY(-1px);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   GENERAL SECTION STYLES
   ========================================================= */

.section-title {
    position: relative;

    margin-bottom: 3rem;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 850;

    text-align: center;
    letter-spacing: -0.7px;
}

.section-title::after {
    content: "";

    display: block;

    width: 48px;
    height: 4px;

    margin: 18px auto 0;

    background: var(--secondary);

    border-radius: 10px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    padding: 100px 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(22, 119, 184, 0.05),
            transparent 35%
        ),
        var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;

    text-align: center;
}

.about-text h2 {
    margin-bottom: 1.25rem;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.7px;
}

.about-text p {
    max-width: 820px;

    margin: 0 auto 3rem;

    color: var(--gray);

    font-size: 1.05rem;
    line-height: 1.85;
}

.stat-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1.25rem;

    max-width: 780px;
    margin: 0 auto;
}

.stat {
    position: relative;

    padding: 2rem 1.25rem;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.stat::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 40px;
    height: 3px;

    background: var(--secondary);

    border-radius: 0 0 10px 10px;

    transform: translateX(-50%);
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 119, 184, 0.25);
}

.stat-number {
    display: block;

    margin-bottom: 0.4rem;

    color: var(--secondary);

    font-size: 2.5rem;
    line-height: 1;
    font-weight: 850;
}

.stat-label {
    display: block;

    color: var(--gray);

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    padding: 100px 20px;

    background: var(--light);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(230px, 1fr));

    gap: 1.5rem;

    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;

    min-height: 270px;

    padding: 2.25rem 1.75rem;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    text-align: center;

    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--secondary),
        #55a9d5
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(22, 119, 184, 0.25);

    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 1.5rem;

    background: var(--light-blue);

    border-radius: 18px;

    font-size: 2rem;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card h3 {
    margin-bottom: 0.75rem;

    color: var(--primary);

    font-size: 1.2rem;
    font-weight: 750;
}

.service-card p {
    color: var(--gray);

    font-size: 0.94rem;
    line-height: 1.75;
}


/* =========================================================
   POLICIES
   ========================================================= */

.policies {
    padding: 100px 20px;

    background:
        linear-gradient(
            180deg,
            var(--light) 0%,
            #ffffff 100%
        );
}

.section-header {
    max-width: 720px;

    margin: 0 auto 3.5rem;

    text-align: center;
}

.section-subtitle {
    display: inline-block;

    margin-bottom: 0.75rem;

    color: var(--secondary);

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-description {
    margin-top: 1rem;

    color: var(--gray);

    font-size: 1.05rem;
}

.policy-heading {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 2rem;

    color: var(--primary);

    font-size: 1.4rem;
    font-weight: 750;
}

.policy-heading i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.policy-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(235px, 1fr));

    gap: 1.25rem;

    margin-bottom: 3rem;
}

.policy-card {
    padding: 2rem 1.5rem;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.policy-card:hover {
    transform: translateY(-5px);

    border-color: rgba(22, 119, 184, 0.25);

    box-shadow: var(--shadow-md);
}

.policy-card i,
.policy-icon {
    display: block;

    margin-bottom: 1rem;

    color: var(--secondary);

    font-size: 2rem;
}

.policy-card h4 {
    margin-bottom: 0.7rem;

    color: var(--primary);

    font-size: 1.05rem;
    font-weight: 750;
}

.policy-card p {
    color: var(--gray);

    font-size: 0.9rem;
    line-height: 1.7;
}

.policy-card span {
    display: block;
}


/* ===== Cancellation Box ===== */

.cancel-box {
    padding: 2.25rem;

    background: var(--white);

    border: 1px solid rgba(244, 123, 69, 0.2);
    border-left: 4px solid var(--accent);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.cancel-header {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 1rem;
}

.cancel-header i {
    color: var(--accent);
    font-size: 1.6rem;
}

.cancel-header h3 {
    color: var(--primary);

    font-size: 1.35rem;
    font-weight: 750;
}

.cancel-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 1rem 0;

    color: var(--text);

    border-bottom: 1px solid var(--border);
}

.cancel-item:last-child {
    border-bottom: none;
}

.cancel-item i {
    flex-shrink: 0;

    color: var(--secondary);

    font-size: 1.1rem;
}

.cancel-item span {
    font-size: 1rem;
}

.cancel-item strong {
    color: var(--primary);
}


/* =========================================================
   SKILLS
   ========================================================= */

.skills {
    padding: 100px 20px;

    background: var(--white);
}

.skills-list {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(290px, 1fr));

    gap: 1rem;

    max-width: 1200px;

    margin: 0 auto;
}

.skill-item {
    display: flex;
    align-items: center;

    gap: 1rem;

    min-height: 62px;

    padding: 0.9rem 1rem;

    background: var(--light);

    border: 1px solid transparent;
    border-radius: var(--radius-md);

    transition: var(--transition);
}

.skill-item:hover {
    background: var(--light-blue);

    border-color: rgba(22, 119, 184, 0.12);

    transform: translateX(4px);
}

.skill-check {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--secondary);

    color: var(--white);

    border-radius: 50%;

    font-size: 0.9rem;
    font-weight: 800;

    box-shadow: 0 4px 10px rgba(22, 119, 184, 0.2);
}

.skill-item span {
    color: var(--text);

    font-size: 0.95rem;
    font-weight: 600;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
    padding: 100px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(22, 119, 184, 0.07),
            transparent 35%
        ),
        var(--light);
}

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 1.5rem;

    max-width: 1200px;

    margin: 0 auto 2.5rem;
}

.testimonial-card {
    position: relative;

    padding: 2rem;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.testimonial-card::before {
    content: "“";

    position: absolute;

    top: 12px;
    right: 22px;

    color: rgba(22, 119, 184, 0.08);

    font-family: Georgia, serif;
    font-size: 5rem;

    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);

    border-color: rgba(22, 119, 184, 0.2);
}

.stars {
    margin-bottom: 1rem;

    color: #f5b301;

    font-size: 0.95rem;

    letter-spacing: 3px;
}

.testimonial-card p {
    margin-bottom: 1.25rem;

    color: var(--text);

    font-size: 0.95rem;
    line-height: 1.75;

    font-style: italic;
}

.testimonial-author {
    display: block;

    color: var(--gray);

    font-size: 0.85rem;
    font-weight: 700;
}

.google-badge {
    display: table;

    margin: 0 auto;

    padding: 9px 18px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--gray-dark);

    font-size: 0.9rem;
    font-weight: 700;

    box-shadow: var(--shadow-sm);
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing {
    padding: 100px 20px;

    background: var(--white);
}

.pricing-subtitle {
    max-width: 720px;

    margin: -1.5rem auto 4rem;

    color: var(--gray);

    font-size: 1rem;
    line-height: 1.7;

    text-align: center;
}


/* ===== Package Categories ===== */

.package-category {
    margin-bottom: 4.5rem;
}

.package-category:last-child {
    margin-bottom: 0;
}

.category-title {
    position: relative;

    display: block;

    width: fit-content;

    margin: 0 auto 2rem;

    padding-bottom: 0.8rem;

    color: var(--primary);

    font-size: 1.55rem;
    font-weight: 800;

    text-align: center;
}

.category-title::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 42px;
    height: 3px;

    background: var(--secondary);

    border-radius: 10px;

    transform: translateX(-50%);
}

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 1.5rem;

    max-width: 850px;

    margin: 0 auto;
}


/* ===== Lesson Cards ===== */

.lesson-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 300px;

    padding: 2rem;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;
}

.lesson-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--secondary),
        #58a9d4
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.lesson-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 119, 184, 0.25);

    box-shadow: var(--shadow-lg);
}

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

.card-header {
    margin-bottom: 1.5rem;

    padding-bottom: 1rem;

    border-bottom: 1px solid var(--gray-light);
}

.card-header h4 {
    margin-bottom: 0.45rem;

    color: var(--primary);

    font-size: 1.25rem;
    font-weight: 800;
}

.duration {
    display: inline-block;

    padding: 5px 10px;

    background: var(--light-blue);

    border-radius: 999px;

    color: var(--secondary-dark);

    font-size: 0.78rem;
    font-weight: 700;
}

.price-tag {
    display: flex;
    align-items: baseline;

    margin-bottom: 1.5rem;

    color: var(--secondary);

    font-size: 3rem;
    line-height: 1;

    font-weight: 850;
    letter-spacing: -1px;
}

.price-tag::before {
    content: "";

    font-size: 1.5rem;
    margin-right: 0.15rem;
}

.package-benefits {
    display: flex;
    flex-direction: column;

    gap: 0.7rem;

    flex-grow: 1;

    margin: 0;
    padding: 0;

    list-style: none;
}

.package-benefits li {
    position: relative;

    padding-left: 1.45rem;

    color: var(--gray-dark);

    font-size: 0.9rem;
    font-weight: 500;

    line-height: 1.5;
}

.package-benefits li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--success);

    font-weight: 800;
}


/* =========================================================
   OLD / OPTIONAL PRICING CLASSES
   Kept for compatibility
   ========================================================= */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 1.5rem;

    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;

    padding: 2.5rem 2rem;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(22, 119, 184, 0.25);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--secondary);

    box-shadow: var(--shadow-lg);

    transform: scale(1.02);
}

.featured-badge {
    position: absolute;

    top: -12px;
    left: 20px;

    padding: 0.45rem 1rem;

    background: var(--secondary);

    color: var(--white);

    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    margin-bottom: 1rem;

    color: var(--primary);

    font-size: 1.4rem;
    font-weight: 800;
}

.price {
    margin-bottom: 0.5rem;

    color: var(--secondary);

    font-size: 2.6rem;
    font-weight: 850;
}

.period {
    color: var(--gray);

    font-size: 0.9rem;
}

.package-hours {
    margin-bottom: 1.5rem;

    color: var(--gray);

    font-size: 0.9rem;
}

.price-features {
    margin: 1.5rem 0;
    padding: 0;

    list-style: none;
}

.price-features li {
    padding: 0.75rem 0;

    color: var(--text);

    border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
    border-bottom: none;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    position: relative;

    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(22, 119, 184, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);

    overflow: hidden;
}

.contact::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    bottom: -200px;

    background: rgba(22, 119, 184, 0.12);

    border-radius: 50%;
}

.contact .section-title {
    position: relative;

    color: var(--white);
}

.contact .section-title::after {
    background: var(--secondary);
}

.contact-subtitle {
    position: relative;

    max-width: 780px;

    margin: -1.25rem auto 3.5rem;

    color: rgba(255, 255, 255, 0.75);

    font-size: 1rem;
    line-height: 1.8;

    text-align: center;
}

.contact-content {
    position: relative;
    z-index: 2;

    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 3rem;

    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 1.5rem;
}

.contact-item {
    padding: 1.2rem 1.25rem;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--radius-md);

    backdrop-filter: blur(8px);

    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateX(4px);
}

.contact-label {
    margin-bottom: 0.25rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-value {
    color: var(--white);

    font-size: 1rem;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);
}

.contact-value:hover {
    color: #65b9e9;
}


/* ===== Contact Form ===== */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    padding: 2rem;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-xl);
}

.form-group {
    display: flex;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 1rem 1.1rem;

    background: #f7f9fb;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--text);

    font-size: 0.95rem;
    font-family: inherit;

    transition: var(--transition);

    resize: vertical;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8b97a5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    background: var(--white);

    border-color: var(--secondary);

    box-shadow:
        0 0 0 4px rgba(22, 119, 184, 0.1);
}

.contact-form .cta-button {
    width: 100%;

    margin-top: 0.25rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 4rem 20px 1.25rem;

    background: #0a1524;

    color: var(--white);
}

.footer-content {
    max-width: 1200px;

    margin: 0 auto 2rem;

    padding-bottom: 2.5rem;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 3rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-section h4 {
    margin-bottom: 1rem;

    color: var(--white);

    font-size: 1rem;
    font-weight: 750;
}

.footer-section p {
    max-width: 360px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-section ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;

    text-decoration: none;

    transition: var(--transition);
}

.footer-section a:hover {
    color: #67bce9;
}

.social-links {
    display: flex;

    gap: 0.7rem;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    color: var(--white);

    font-weight: 700;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);

    border-color: var(--secondary);

    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;

    margin: 0 auto;

    padding-top: 0.5rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.8rem;

    text-align: center;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.menu-overlay {
    display: none;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.82rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

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

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


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    /* ===== Navbar ===== */

    .nav-container {
        min-height: 68px;
        padding: 7px 18px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex;
    }

    .menu-overlay {
        display: block;

        position: fixed;
        inset: 0;

        background: rgba(5, 15, 25, 0.48);

        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);

        opacity: 0;
        visibility: hidden;

        transition: var(--transition);

        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        left: -300px;

        width: min(300px, 84vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 0 0 30px;
        margin: 0;

        background: var(--white);

        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.18);

        overflow-y: auto;

        transition: left 0.35s ease;

        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .menu-header {
        display: flex;
        align-items: center;

        gap: 12px;

        width: 100%;

        padding: 25px 22px;

        margin-bottom: 5px;

        background:
            linear-gradient(
                135deg,
                var(--primary),
                var(--primary-dark)
            );
    }

    .nav-menu .menu-header-logo {
        width: 52px;
        height: 52px;

        padding: 4px;

        object-fit: contain;

        background: var(--white);

        border-radius: 50%;

        flex-shrink: 0;
    }

    .nav-menu .menu-header-title {
        color: var(--white);

        font-size: 1rem;
        font-weight: 800;

        letter-spacing: 0.8px;
        line-height: 1.4;
    }

    .nav-menu .menu-header-title small {
        display: block;

        margin-top: 2px;

        color: rgba(255, 255, 255, 0.7);

        font-size: 0.68rem;
        font-weight: 500;

        letter-spacing: 0.7px;

        text-transform: uppercase;
    }

    .nav-menu li a {
        display: flex;
        align-items: center;

        width: 100%;

        gap: 14px;

        padding: 16px 22px;

        color: var(--gray-dark);

        font-size: 0.95rem;
        font-weight: 650;

        text-decoration: none;

        border-bottom: 1px solid #edf0f3;

        transition: var(--transition);
    }

    .nav-menu li a i {
        display: block;

        width: 22px;

        color: var(--secondary);

        font-size: 1.15rem;

        text-align: center;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-menu li a:hover {
        padding-left: 28px;

        background: var(--light);

        color: var(--secondary);
    }


    /* ===== Hero ===== */

    .hero {
        height: 100svh;
        min-height: 620px;

        background-image: url("hero-mobile.png");

        background-position: center top;
    }

    .hero .overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 22, 38, 0.28) 0%,
                rgba(8, 22, 38, 0.58) 55%,
                rgba(8, 22, 38, 0.78) 100%
            );
    }

    .hero-content {
        max-width: 100%;
        padding: 30px 22px;

        align-self: center;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem);

        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        margin-bottom: 1.8rem;

        font-size: 1rem;
        line-height: 1.7;
    }

    .cta-button {
        min-height: 52px;

        width: auto;
        max-width: 290px;

        padding: 0 28px;

        font-size: 0.95rem;
    }


    /* ===== Sections ===== */

    .about,
    .services,
    .policies,
    .skills,
    .testimonials,
    .pricing {
        padding: 75px 18px;
    }

    .section-title {
        margin-bottom: 2.4rem;
    }

    .section-title::after {
        margin-top: 14px;
    }

    .section-description {
        font-size: 0.95rem;
    }


    /* ===== About ===== */

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.96rem;
    }

    .stat-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.7rem;
    }

    .stat {
        padding: 1.4rem 0.5rem;
    }

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

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }


    /* ===== Services ===== */

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

    .service-card {
        min-height: auto;

        padding: 1.7rem 1.4rem;
    }


    /* ===== Policies ===== */

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

    .policy-card {
        padding: 1.6rem 1.25rem;
    }

    .cancel-box {
        padding: 1.4rem;
    }

    .cancel-item {
        align-items: flex-start;
    }


    /* ===== Skills ===== */

    .skills-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }


    /* ===== Testimonials ===== */

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

    .testimonial-card {
        padding: 1.6rem;
    }


    /* ===== Pricing ===== */

    .pricing-subtitle {
        margin-top: -1rem;
        margin-bottom: 3rem;

        font-size: 0.95rem;
    }

    .package-category {
        margin-bottom: 3.5rem;
    }

    .category-title {
        font-size: 1.35rem;

        margin-bottom: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;

        max-width: 500px;

        gap: 1rem;
    }

    .lesson-card {
        min-height: auto;

        padding: 1.5rem;
    }

    .price-tag {
        font-size: 2.5rem;
    }


    /* ===== Contact ===== */

    .contact {
        padding: 75px 18px;
    }

    .contact-subtitle {
        margin-bottom: 2.5rem;

        font-size: 0.95rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;

        gap: 0.8rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.4rem;

        border-radius: var(--radius-md);
    }


    /* ===== Footer ===== */

    .footer {
        padding: 3rem 18px 1rem;
    }

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

        gap: 2rem;
    }

    .footer-section p {
        max-width: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .nav-container {
        min-height: 64px;
    }

    .logo-img {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        font-size: 0.78rem;
    }

    .hero {
        min-height: 580px;
    }

    .hero-content {
        padding: 20px 18px;
    }

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

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

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

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

    .about-text h2 {
        font-size: 1.8rem;
    }

    .stat-group {
        gap: 0.5rem;
    }

    .stat {
        padding: 1.2rem 0.35rem;
    }

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

    .stat-label {
        font-size: 0.58rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;

        font-size: 1.8rem;
    }

    .cancel-header h3 {
        font-size: 1.15rem;
    }

    .cancel-item span {
        font-size: 0.9rem;
    }

    .skill-item {
        min-height: 58px;
    }

    .skill-item span {
        font-size: 0.88rem;
    }

    .lesson-card {
        padding: 1.25rem;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .price-tag {
        font-size: 2.25rem;
    }

    .package-benefits li {
        font-size: 0.86rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem;

        font-size: 16px;
    }
}


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.in-view {
    opacity: 1;

    transform: translateY(0);
}

.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.15s;
}

.reveal:nth-child(4) {
    transition-delay: 0.2s;
}

.reveal:nth-child(5) {
    transition-delay: 0.25s;
}

.reveal:nth-child(6) {
    transition-delay: 0.3s;
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(22, 119, 184, 0.35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}