:root {
    --primary-color: #3B589E;
    --primary-dark: #2a3f75;
    --accent-color: #F9B700;
    --accent-hover: #e0a500;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-body: #ffffff;
    --bg-white: #ffffff;
    --bg-light-blue: #ffffff;

    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: #FFFFFF;
}

/* Clean white */
.bg-white {
    background: #F9FAFB;
}

/* Slight gray offset */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Navbar */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    padding-top: 5px;
    /* Alignment tweak */
}



.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
}

.nav-sep {
    color: #ddd;
    font-weight: 300;
    font-size: 0.9rem;
    pointer-events: none;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-header {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Refined (Pixel Perfect Match - Wide & Short) */
header#hero {
    background: transparent;
    padding: 20px 0;
    /* Reduced top/bottom padding */
    color: white;
    border-radius: 0;
    margin-bottom: 0;
}

.hero-container-box {
    /* User Requested: Blue Background (Fallback/Underlay) */
    background-color: #3655c4;

    /* Image removed from here, now in HTML */

    border-radius: 30px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* User: Clip the bottom overflow */
    overflow: hidden;

    /* Wide Banner Ratio (Horizontal Long) */
    width: 100%;
    min-height: 550px;
    /* Short vertical, wide horizontal */
}

/* New Class for the BG Image Tag */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area */
    /* User: "Resim çok yukarda" -> Fine tuning to lower it (move towards 0%) */
    object-position: center 35%;
    z-index: 1;
    /* Below content */
    pointer-events: none;
    /* Ignore clicks */
}

/* Wider Container for Banner Look */
header#hero .container {
    max-width: 1400px;
    width: 98%;
}

.hero-left {
    flex: 1.2;
    /* Give more space to form/text */
    z-index: 2;
    /* Keep above image (1) */
    padding-right: 10Px;
    position: relative;
    /* Ensure z-index works */
}

/* Phone Mockup Styling - Bottom Aligned & Overflowing */
.phone-mockup {
    width: 100%;
    height: auto;
    /* Let natural height take precedence */
    max-height: none;
    /* Remove constraint */
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));

    /* Push it down significantly (User requested more) */
    display: block;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Align to bottom so it starts low */
    align-items: flex-end;
    z-index: 2;
    position: relative;
    height: 100%;
    align-self: stretch;
    /* Overflow hidden inherited from parent effectively, but keep this clean */
    overflow: hidden;
}

/* Typography Compacted */
.hero-title {
    color: white;
    font-size: 2.1rem;
    /* Reduced from 2.8rem */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    /* Smaller font */
    font-weight: 500;
    margin-bottom: 25px;
    /* Reduced margin */
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Removed pill styling as requested */
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.check-red {
    color: #FF4D4D;
    font-weight: 900;
    font-size: 1.1rem;
}

/* Compact Form */
.hero-form-group {
    margin-bottom: 15px;
    /* Reduced margin */
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pin-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-input {
    width: 100%;
    padding: 12px 15px;
    /* Compact padding */
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    color: #333;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-hero-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: #222;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 14px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(249, 183, 0, 0.4);
    transition: transform 0.2s;
}

.btn-hero-submit:hover {
    transform: scale(1.02);
    background-color: #ffc107;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .hero-container-box {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        border-radius: 20px;
        aspect-ratio: auto;
        /* Dissolve ratio constraint on mobile */
    }

    header#hero .container {
        width: 100%;
        padding: 0 10px;
    }

    .hero-left {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-right {
        margin-top: 30px;
        width: 100%;
    }

    .phone-mockup {
        max-width: 250px;
        transform: rotate(0);
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Calc Box */
.calculation-box {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.calc-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f9f9f9;
}

.btn-calculate {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-calculate:hover {
    background: var(--accent-hover);
}

/* Common Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Feature Cards (Choose & Services) */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--bg-light-blue);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Steps (ChooseAlt) */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

/* Vehicle Section */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.vehicle-card.highlight-card {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
    z-index: 1;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.capacity-list {
    list-style: none;
    margin-top: 15px;
    text-align: left;
    background: #fafafa;
    padding: 15px;
    border-radius: 12px;
}

.capacity-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.capacity-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Locations */
.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.location-tag {
    padding: 8px 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
    cursor: pointer;
}

.location-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-light);
}

.faq-question .toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-bottom: 20px;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Footer */
.main-footer {
    background: #3756c4;
    color: rgba(255, 255, 255, 1);
    padding: 80px 0 40px;
    font-size: 0.95rem;
    border-top: 5px solid #fab700;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fab700;
    color: #3756c4;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: #fab700;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: white;
    transition: all 0.2s;
}

.footer-links ul li a:hover {
    color: #fab700;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.c-icon {
    font-size: 1.2rem;
    color: #fab700;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer-bottom strong {
    color: #fab700;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-wrapper,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    header#hero {
        padding: 40px 0;
        text-align: center;
        border-radius: 0 0 30px 30px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .vehicle-card.highlight-card {
        transform: none;
    }
}

/* Map Modal Styling (Existing) */
/* Map Modal Styling (Existing) */
.map-modal {
    display: none;
    /* Fixed/Added in previous replace, but making sure we don't have empty block */
}

/* ... */

/* Offer/Contact Form Styling */
.contact-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.offer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offer-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: #fdfdfd;
    transition: border 0.3s;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 183, 0, 0.1);
}

.btn-submit-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 65px;
    padding: 0 20px;
    margin: 25px 0 0;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-submit-offer:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-submit-offer .wa-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .btn-submit-offer {
        width: 100%;
        padding: 15px;
    }

    .offer-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.map-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    /* High z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.map-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    /* Centers it vertically a bit */
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    /* Ensure flex for centering contents if needed */
    flex-direction: column;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    margin: 15px 0;
    z-index: 1;
}

.btn-confirm-map {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    align-self: flex-end;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-confirm-map:hover {
    background-color: #2c447c;
}

/* --- STUDENT SECTION --- */
#student {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

#student .container {
    max-width: 1400px;
}

.student-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.student-content {
    flex: 1.2;
}

.student-badge {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
}

#student h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

#student p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

#student strong {
    color: var(--accent-hover);
    /* Darker yellow/orange */
}

.student-list {
    list-style: none;
    margin-bottom: 40px;
}

.student-list li {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.btn-student {
    background: #3756c4;
    /* Red color */
    color: white;
    padding: 15px 40px;
    /* Larger padding */
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    /* Larger text */
    display: inline-block;
    transition: transform 0.2s, background 0.3s;
    margin-top: 20px;
    /* Space from text */
}

.btn-student:hover {
    transform: translateX(5px);
    background: var(--primary-color);
}

.student-image-box {
    flex: 0.8;
    background: white;
    border-radius: 20px;
    /* var(--radius-lg) */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.student-icon-comp {
    font-size: 6rem;
    letter-spacing: -10px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .student-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .student-content {
        order: 1;
        /* Text first */
    }

    .student-image-box {
        order: 2;
        width: 100%;
        padding: 30px;
        margin-bottom: 30px;
    }

    .student-list {
        display: inline-block;
        text-align: left;
    }
}

/* --- NEW IMAGE STYLES --- */

.student-top-img {
    display: block;
    max-width: 250px;
    margin-bottom: 20px;
    height: auto;
}

.student-right-img {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    align-self: center;
    margin: 0 auto;
}

.student-right-img:hover {
    transform: scale(1.02);
}

/* --- SERVICES GRID --- */
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    position: relative;
    height: 350px;
    /* Fixed height for consistent grid */
    border-radius: 20px;
    text-align: center;
    transition: var(--transition), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    /* Important for full size image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;

    /* Reveal Initial State */
    opacity: 0;
    transform: translateY(40px);
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for grid items */
.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.service-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Image Full-Size Background */
.service-card-img {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 75%;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Label for Bottom */
.service-bottom-label {
    margin-top: auto;
    /* Pushes to bottom in flex column */
    z-index: 10;
    color: #000000;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover .service-card-img {
    transform: translate(-50%, -50%) scale(1.1);
}

.service-icon {
    position: relative;
    z-index: 2;
    /* Above colored bg, below overlay if they met */
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* --- STATS GRID --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.service-icon img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.color-grey {
    background: #f4f6f9;
    /* Off-white / Greyish */
    color: var(--text-dark);
}

.color-yellow {
    background: var(--accent-color);
    /* Yellow from logo */
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .student-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .student-top-img {
        margin: 0 auto 20px;
    }

    .student-content {
        order: 1;
    }

    .student-right-img {
        order: 2;
        width: 100%;
        margin-bottom: 30px;
        flex: none;
    }
}

/* --- HOW IT WORKS ZIGZAG --- */
.zigzag-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Reduced from 80px */
    position: relative;
    /* For midline */
}

/* Central Midline */
.zigzag-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            var(--accent-color) 20%,
            var(--primary-color) 50%,
            var(--accent-color) 80%,
            transparent);
    background-size: 100% 200%;
    animation: lineFlow 5s linear infinite;
    transform: translateX(-50%);
    z-index: 0;
}

@keyframes lineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.step-zigzag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    /* Reduced from 120px */
    /* More gap to clear line space */
    position: relative;
    z-index: 1;
}

.step-zigzag.reverse {
    flex-direction: row-reverse;
}

.step-info {
    flex: 1;
}

.step-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.step-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
    max-height: 350px;
    /* Limit image height */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.step-zigzag:hover .step-image img {
    transform: scale(1.05);
}

/* Scroll Reveal States */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .zigzag-wrapper::before {
        display: none;
    }

    .step-zigzag,
    .step-zigzag.reverse {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .step-info h3 {
        font-size: 1.8rem;
    }
}

/* Dots on the line */
.step-zigzag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    box-shadow: 0 0 0 5px rgba(249, 183, 0, 0.2);
}

.step-zigzag.active::after {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 992px) {
    .step-zigzag::after {
        display: none;
    }
}

/* --- LOCATION GRID SEO --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.location-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #f4f6f9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.location-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.location-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: auto;
    transition: color 0.2s;
}

.location-link:hover {
    color: var(--accent-color);
}

.seo-summary {
    margin-top: 60px;
    padding: 30px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    border-radius: 20px;
    text-align: center;
}

.seo-summary p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.seo-summary strong {
    color: #555;
    font-weight: 600;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Mobile Adjustments */
    .hero-bg-image {
        display: none !important;
    }

    .hero-container-box {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-features {
        justify-content: center;
        gap: 10px;
        font-size: 0.85rem;
    }

    .hero-right {
        display: none;
        /* Hide phone mockup on mobile */
    }

    .hero-left {
        padding-right: 0;
    }

    #price-calc {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-form-group {
        text-align: left;
    }

    .btn-hero-submit {
        width: 100%;
        padding: 16px;
    }

    /* Section Headers on Mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Mobile Menu Styling */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: var(--text-dark);
        font-weight: 600;
        font-size: 1.1rem;
        display: block;
        padding: 5px 0;
    }

    .nav-sep {
        display: none;
        /* Hide pipes on mobile */
    }

    .mobile-menu-btn {
        display: block;
        color: var(--primary-color);
        font-size: 1.8rem;
    }
}

/* Footer Contact Links */
.footer-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: background-color 0.3s;
}

.floating-call:hover {
    background-color: #128c7e;
    color: white;
}

/* Tablet & Mobile Visibility */
@media (min-width: 769px) {
    .floating-call {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-call {
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}