/* ==========================================================
   SERVICE PAGES
   Airport • City • Private • VIP • Tours
========================================================== */

:root {
    --gold: #c9a84c;
    --gold-soft: #e6cf8a;

    --ink: #0a0a0a;
    --ink-2: #131313;

    --line: rgba(201, 168, 76, .18);
    --line-strong: rgba(201, 168, 76, .42);

    --text: #c9a84c;
    --muted: #9a9689;

    --white: #ffffff;
    --light: #f7f5f0;
}

.service-page {
    overflow: hidden;
}

.service-page section {
    position: relative;
}

.service-page .container {
    width: min(1200px, 92%);
    margin: auto;
}

.service-title {
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0 0 64px;
    text-align: center;
}

.service-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 20px auto 0;
    background: var(--gold);
}

.service-text {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}

/* ==========================================================
   HERO
========================================================== */

.service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78vh;
    overflow: hidden;
    color: var(--text);
    isolation: isolate;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 15% 40%, rgba(201, 168, 76, .10), transparent 60%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .35) 0%,
            rgba(0, 0, 0, .65) 55%,
            rgba(0, 0, 0, .90) 100%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    padding: 120px 0 100px;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 16px;

    border: 1px solid var(--line-strong);
    border-radius: 999px;

    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(6px);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;

    color: var(--gold);
}

.service-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.service-hero h1 {
    margin: 26px 0 22px;

    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -.02em;

    color: #fff;
    font-weight: 700;
}

.service-lead {
    max-width: 700px;

    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.8;

    color: rgba(255, 255, 255, .82);
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 42px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    border-radius: 999px;
    text-decoration: none;

    transition: .35s;
}

.service-btn-primary {
    background: var(--gold);
    color: #111;
    font-weight: 600;
}

.service-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, .35);
}

.service-btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.service-btn-outline:hover {
    background: rgba(255, 255, 255, .06);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-stat {
    padding: 28px 22px;
    border-right: 1px solid var(--line);
}

.service-stat:last-child {
    border-right: none;
}

.service-stat strong {
    display: block;

    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 600;

    color: var(--gold);
}

.service-stat span {
    display: block;
    margin-top: 8px;

    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .60);
}

/* ==========================================================
   INTRO
========================================================== */

.service-intro {
    padding: 120px 0;
    background: #fff;
}

.service-intro .container {
    max-width: 900px;
}

.service-intro h2 {
    position: relative;

    margin: 0 0 30px;
    padding-bottom: 24px;

    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;

    color: var(--ink);
}

.service-intro h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 50px;
    height: 2px;

    background: var(--gold);
}

.service-intro p {
    margin: 0 0 24px;

    font-size: 17px;
    line-height: 1.9;

    color: #4f4f4f;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

.service-intro strong {
    color: var(--ink);
    font-weight: 600;
}

.service-intro a {
    color: var(--gold);
    text-decoration: none;
    transition: .3s;
}

.service-intro a:hover {
    color: var(--gold-soft);
}

/* ==========================================================
   FEATURES
========================================================== */

.service-features {
    padding: 120px 0;
    background: var(--light);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;

    padding: 40px 34px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 6px;

    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .45s;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: var(--line-strong);

    box-shadow:
        0 24px 50px rgba(0, 0, 0, .08),
        0 8px 24px rgba(201, 168, 76, .18);
}

.service-card:hover::before {
    width: 100%;
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 22px;

    border-radius: 50%;

    background: rgba(201, 168, 76, .08);

    color: var(--gold);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin: 0 0 14px;

    font-size: 22px;
    font-weight: 600;

    color: var(--ink);
}

.service-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #666;
}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

.service-why {
    position: relative;
    padding: 120px 0;
    background: var(--ink);
    color: var(--text);
    overflow: hidden;
}

.service-why::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at 15% 20%, rgba(201, 168, 76, .08), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201, 168, 76, .06), transparent 40%);
}

.service-why .container {
    position: relative;
    z-index: 2;
}

.service-why .service-title {
    color: #fff;
}

.service-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;

    border: 1px solid var(--line);
    background: var(--line);
}

.service-why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;

    padding: 42px 38px;

    background: var(--ink);

    transition:
        background .35s,
        transform .35s;
}

.service-why-item:hover {
    background: var(--ink-2);
}

.service-why-icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--line-strong);

    background: rgba(201, 168, 76, .05);

    color: var(--gold);

    transition: .35s;
}

.service-why-item:hover .service-why-icon {
    transform: translateY(-4px);
    background: rgba(201, 168, 76, .10);
}

.service-why-icon svg {
    width: 28px;
    height: 28px;
}

.service-why-content {
    flex: 1;
}

.service-why-content h3 {
    margin: 4px 0 12px;

    font-size: 21px;
    font-weight: 600;

    color: #fff;
}

.service-why-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: var(--muted);
}

/* ==========================================================
   CTA
========================================================== */

.service-cta {
    padding: 100px 0;
    background: #fff;
}

.service-cta-box {
    padding: 70px 60px;

    text-align: center;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: linear-gradient(180deg,
            #181818 0%,
            #0f0f0f 100%);
}

.service-cta-box h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 52px);

    color: #fff;
}

.service-cta-box p {
    max-width: 760px;

    margin: 0 auto 35px;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, .72);
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================================================
   BOOKING STEPS
========================================================== */

.service-steps {
    padding: 120px 0;
    background: #fff;
}

.service-steps-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-steps-grid::before {
    content: "";

    position: absolute;
    top: 46px;
    left: 15%;
    right: 15%;

    height: 1px;

    background: linear-gradient(to right,
            transparent,
            var(--line-strong),
            transparent);
}

.service-step {
    position: relative;
    z-index: 2;

    text-align: center;
}

.service-step-number {
    position: relative;

    width: 90px;
    height: 90px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    border: 1px solid var(--line-strong);

    transition: .35s;
}

.service-step:hover .service-step-number {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(201, 168, 76, .18);
}

.service-step-number svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.service-step-badge {
    position: absolute;

    top: -8px;
    right: -8px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--ink);

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
}

.service-step h3 {
    margin: 0 0 14px;

    font-size: 22px;
    font-weight: 600;

    color: var(--ink);
}

.service-step p {
    max-width: 300px;

    margin: auto;

    font-size: 15px;
    line-height: 1.8;

    color: #666;
}

/* ==========================================================
   FAQ
========================================================== */

.service-faq {
    padding: 120px 0;
    background: var(--light);
}

.service-faq .container {
    max-width: 900px;
}

.service-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-faq-item {
    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 6px;

    transition:
        border-color .3s,
        box-shadow .3s;
}

.service-faq-item[open] {
    border-color: var(--line-strong);

    box-shadow:
        0 18px 40px rgba(201, 168, 76, .18);
}

.service-faq-item summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 28px;

    font-size: 17px;
    font-weight: 600;

    color: var(--ink);
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-item summary::after {
    content: "+";

    font-size: 26px;
    font-weight: 300;

    color: var(--gold);

    transition: .3s;
}

.service-faq-item[open] summary::after {
    content: "−";
}

.service-faq-content {
    padding: 0 28px 28px;

    font-size: 15px;
    line-height: 1.9;

    color: #555;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px) {

    .service-hero {
        min-height: 68vh;
    }

    .service-hero .container {
        padding: 90px 0 70px;
    }

    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-stat:nth-child(2) {
        border-right: none;
    }

    .service-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .service-why-grid {
        grid-template-columns: 1fr;
    }

    .service-steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-steps-grid::before {
        display: none;
    }

    .service-intro,
    .service-features,
    .service-why,
    .service-steps,
    .service-faq,
    .service-cta {
        padding: 80px 0;
    }

}

@media (max-width:768px) {

    .service-hero h1 {
        font-size: 42px;
    }

    .service-title {
        font-size: 32px;
    }

    .service-card,
    .service-why-item {
        padding: 30px 24px;
    }

    .service-cta-box {
        padding: 50px 30px;
    }

    .service-actions,
    .service-cta-buttons {
        flex-direction: column;
    }

    .service-btn {
        width: 100%;
    }

}

@media (max-width:576px) {

    .service-stats {
        grid-template-columns: 1fr;
    }

    .service-stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .service-stat:last-child {
        border-bottom: none;
    }

    .service-kicker {
        font-size: 10px;
        letter-spacing: .2em;
    }

    .service-lead {
        font-size: 16px;
    }

}

/* ==========================================================
   COMPACT / NARROWER SERVICE PAGES
   Applies to all individual service pages (airport, city, vip,
   private, tours) using .service-page wrapper.
========================================================== */

.service-page .container {
    width: min(1040px, 90%);
}

.service-page .service-hero {
    min-height: 62vh;
}

.service-page .service-hero .container {
    padding: 100px 0 80px;
}

.service-page .service-hero h1 {
    max-width: 820px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    margin: 22px 0 18px;
}

.service-page .service-lead {
    max-width: 560px;
    font-size: clamp(15px, 1.35vw, 17px);
    line-height: 1.75;
}

.service-page .service-actions {
    margin-top: 32px;
}

.service-page .service-stats {
    margin-top: 54px;
}

.service-page .service-stat {
    padding: 22px 18px;
}

.service-page .service-stat strong {
    font-size: clamp(22px, 2vw, 30px);
}

.service-page .service-stat span {
    font-size: 11px;
    letter-spacing: .14em;
}

.service-page .service-intro,
.service-page .service-features,
.service-page .service-why,
.service-page .service-fleet,
.service-page .service-steps,
.service-page .service-faq {
    padding: 90px 0;
}

.service-page .service-intro h2,
.service-page .service-title {
    font-size: clamp(26px, 3vw, 38px);
    margin: 0 0 24px;
}

.service-page .service-title {
    margin: 0 0 44px;
}

.service-page .service-title::after,
.service-page .service-intro h2::after {
    width: 40px;
}

.service-page .service-intro p {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.service-page .service-intro h3 {
    font-size: 20px;
    margin: 28px 0 14px;
}

.service-page .service-features-grid {
    gap: 22px;
}

.service-page .service-card {
    padding: 28px 24px;
}

.service-page .service-card h3 {
    font-size: 19px;
}

.service-page .service-card p {
    font-size: 14px;
    line-height: 1.7;
}

.service-page .service-card-icon {
    width: 52px;
    height: 52px;
}

.service-page .service-why-item {
    padding: 32px 28px;
}

.service-page .service-why-content h3 {
    font-size: 19px;
}

.service-page .service-why-content p {
    font-size: 14px;
    line-height: 1.7;
}

.service-page .service-cta-box {
    padding: 60px 40px;
}

.service-page .service-cta-box h2 {
    font-size: clamp(24px, 2.6vw, 34px);
}

.service-page .service-cta-box p {
    font-size: 15px;
}

@media (max-width: 768px) {
    .service-page .service-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .service-page .service-hero .container {
        padding: 0;
    }

    .service-page .service-hero h1 {
        font-size: clamp(30px, 9vw, 44px);
        max-width: 100%;
    }

    .service-page .service-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .service-page .service-intro,
    .service-page .service-features,
    .service-page .service-why,
    .service-page .service-fleet,
    .service-page .service-steps,
    .service-page .service-faq {
        padding: 64px 0;
    }
}