body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #1a1a1a;
}

/* Header */
:root {
    --accent: #0b74ff;
    --accent2: #00c2b3;
    --muted: #6b7280;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* sticky header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(11, 22, 55, 0.04);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 72px;
}

/* brand */
.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: #07102a;
}

/* desktop nav */
.nav {
    margin-left: auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    padding: 8px 12px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all .15s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #07102a;
    background: rgba(11, 116, 255, 0.06);
    transform: translateY(-1px);
}

.nav-link.cta {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #fff;
    padding: 8px 14px;
    box-shadow: 0 10px 24px rgba(11, 116, 255, 0.08);
}

/* mobile toggle */
.nav-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
}

.hamburger {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #07102a;
    border-radius: 2px;
    margin-top: 20px;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #07102a;
    border-radius: 2px;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* MOBILE MENU (initially hidden) */
.mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(9, 20, 40, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scaleY(.98);
    transition: transform .22s ease, opacity .22s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* visible when header has .mobile-open */
.site-header.mobile-open .mobile-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scaleY(1);
}

.mobile-link {
    text-decoration: none;
    color: #07102a;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.mobile-link:hover,
.mobile-link:focus {
    background: rgba(11, 116, 255, 0.06);
}

.mobile-cta {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #fff;
    padding: 10px 14px;
    display: inline-block;
    width: max-content;
}

/* RESPONSIVE: hide/show appropriate menus */
@media (max-width:900px) {
    .nav {
        display: none !important;
    }

    /* hide desktop nav on small screens */
    .nav-toggle {
        display: inline-flex;
    }

    /* save space */
    .header-inner {
        height: 64px;
    }
}

@media (min-width:901px) {
    .mobile-menu {
        display: block;
    }

    /* keep mobile-menu in DOM but hidden by transform */
}

/* small polish */
.site-header.mobile-open .nav-toggle {
    outline: 3px solid rgba(11, 116, 255, 0.12);
}

.nav-link.active {
    color: #0b74ff;
    font-weight: 600;
    border-bottom: 2px solid #0b74ff;
}

.mobile-link.active {
    background: #e7f1ff;
    border-left: 4px solid #0b74ff;
    padding-left: 10px;
    border-radius: 6px;
}

/* HERO SECTION */
.hero-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #f5faff 0%, #ebf3ff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #07102a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0b74ff, #00c2b3);
    padding: 14px 28px;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(11, 116, 255, 0.15);
    transition: all .25s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(11, 116, 255, 0.25);
}

/* IMAGE */
.hero-image {
    flex: 1;
    min-width: 320px;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease forwards;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-section {
        padding: 20px 20px;
    }
}

main {
    padding: 40px 16px;
    max-width: 1100px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 80px 20px;
    background: #f7f7f7;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 17px;
    color: #555;
}

.about-image {
    flex: 1 1 450px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px;
    height: 230px;
    object-fit: cover;
}

/* Approach */
.approach {
    margin-bottom: 60px;
}

.approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.approach p {
    max-width: 850px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.approach-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
}

.approach-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.highlight-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.highlight-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #222;
}

.highlight-box p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        text-align: center;
    }

    .gallery-item img {
        height: 200px;
    }
}

.about,
.values {
    padding: 80px 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1 1 450px;
}

.about-text h2,
.values h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 17px;
}

.about-image {
    flex: 1 1 450px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* VALUES SECTION */
.values-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.value-box img {
    width: 55px;
    margin-bottom: 15px;
}

.value-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.value-box p {
    font-size: 15px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        text-align: center;
    }
}

/* Portfolio Grid */
.portfolio-section {
    padding: 1px 20px;
    background: #fff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #07102a;
    text-align: center;
}

.section-sub {
    color: #6b7280;
    text-align: center;
    margin-bottom: 28px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(9, 20, 40, 0.05);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
}

.card-body .muted {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* hover */
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(9, 20, 40, 0.08);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 2000;
}

.modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.modal-inner {
    background: #fff;
    border-radius: 12px;
    width: 92%;
    max-width: 900px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.4);
}

.modal-close {
    background: transparent;
    border: 0;
    font-size: 28px;
    position: absolute;
    right: 18px;
    top: 14px;
    cursor: pointer;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.modal-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.modal-desc {
    color: #555;
    line-height: 1.6;
}

/* responsive modal */
@media (max-width:900px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-image img {
        height: 220px;
    }
}

/* Timeline styles */
.timeline-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    gap: 18px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 18px 18px 18px 90px;
    box-shadow: 0 8px 24px rgba(9, 20, 40, 0.05);
    overflow: hidden;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0b74ff, #00c2b3);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11, 116, 255, 0.12);
}

.timeline-item h3 {
    margin: 0 0 6px 0;
}

.timeline-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* simple reveal on scroll */
.timeline-item {
    opacity: 0;
    transform: translateY(12px);
    transition: all .6s cubic-bezier(.2, .9, .2, 1);
}

.timeline-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */
@media (max-width:700px) {
    .timeline-item {
        padding-left: 80px;
    }

    .timeline-item::before {
        left: 12px;
        top: 14px;
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }
}

.stats-section {
    padding: 60px 20px;
    background: #f7fbff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(9, 20, 40, 0.04);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0b74ff;
}

.stat-label {
    color: #6b7280;
    margin-top: 6px;
    font-weight: 600;
}

.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b1736, #1c2e55);
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 40px;
}

.contact-card {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 35px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    opacity: 0.9;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.icon {
    font-size: 38px;
    margin-bottom: 10px;
    display: block;
}

/* CTA BUTTON */
.contact-btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #0b1736;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #dce2ff;
}

/* ===== Footer Styling ===== */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-top: 3px solid #ff6600;
    /* Optional accent */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    margin-bottom: 10px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #ff6600;
}

.footer-right span {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 10px;
    }
}

/* ===== About Page Styling ===== */
.about-page {
    padding: 20px 20px;
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.about-page h1,
.about-page h2,
.about-page h3 {
    color: #0b74ff;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-member img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 15px;
    font-size: 18px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

.about-mission .mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.mission-item {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.value-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-box h3 {
    margin-bottom: 10px;
}

.team-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.team-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-cta {
    text-align: center;
    margin: 50px 0 0 0;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 15px;
}

.about-cta .hero-btn {
    background-color: #0b74ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-cta .hero-btn:hover {
    background-color: #064acb;
}

/* Contact */
/* Minimal page-specific styles to ensure layout looks good even if assets/style.css lacks some rules */
.contact-section {
    padding: 20px 20px;
    background: #fff;
    font-family: Inter, Arial, sans-serif;
    color: #222;
}

.contact-hero .lead {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #444;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
    margin-top: 20px;
}

.contact-form-card,
.contact-info-card {
    background: #f7f8fb;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(12, 20, 40, 0.04);
}

.contact-form-card h2,
.contact-info-card h2 {
    color: #0b74ff;
    margin-bottom: 8px;
}

.form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0b74ff;
    box-shadow: 0 0 0 4px rgba(11, 116, 255, 0.06);
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

.btn {
    background: #0b74ff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #0b2745;
    padding: 9px 14px;
    border-radius: 8px;
}

.privacy-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
}

.contact-info-card .contact-item {
    margin-bottom: 14px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.map-wrap {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-extra {
    margin-top: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.faq {
    background: #f3f6fb;
    padding: 16px;
    border-radius: 10px;
}

.invalid {
    border-color: #e11d48 !important;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.06) !important;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Page-specific minimal styling to match site */
.section-title {
    color: #0b74ff;
    margin-bottom: 6px;
}

.section-sub {
    color: #556;
    margin-bottom: 12px;
}

.lead {
    font-size: 1.05rem;
    color: #344;
}

.tag {
    background: #eef6ff;
    color: #0b74ff;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
}

details summary {
    cursor: pointer;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    list-style: none;
    outline: none;
}

details[open] summary {
    background: #eaf2ff;
}

details .faq-body {
    padding: 12px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    margin-top: 6px;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    z-index: 1200;
    background: rgba(7, 12, 20, 0.48);
}

.modal-inner {
    max-height: 88vh;
    overflow: auto;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #0b2745;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width:980px) {
    .services-hero img {
        display: block;
        margin: 0 auto;
    }
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.04)
}

.vehicle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
    text-align: center
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.price-card {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
    text-align: center
}

.faq-item {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.04)
}

.highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.highlight-box {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    color: #0f1724;
    flex: 1;
    min-width: 180px;
    text-align: center
}