@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    --red: #ef4444;
    --red-dk: #c53030;
    --red-lt: #f87171;
    --dark: #0d0d0d;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --light: #f7f5f3;
    --text: #3d3d3d;
    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
}

body {
    font-family: var(--sans);
    color: var(--text);
}

/* BUTTONS */
.btn-red {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: none;
    padding: 16px 42px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-red:hover {
    background: var(--red-dk);
    color: #fff;
    text-decoration: none;
}

.btn-outline-hero {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.45);
    padding: 14px 40px;
    text-decoration: none;
    transition: border-color 0.3s;
}

.btn-outline-hero:hover {
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: #25d366;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-wa:hover {
    background: #1da851;
    color: #fff;
    text-decoration: none;
}

/* HERO */
.con-hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.con-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.82) 0%,
        rgba(13, 13, 13, 0.52) 100%
    );
}

.con-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--red);
}

.con-hero .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 880px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red-lt);
    margin-bottom: 24px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 7px 20px;
}

.con-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
}

.con-hero h1 em {
    font-style: italic;
    color: var(--red-lt);
}

.hero-divider {
    width: 50px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 26px;
}

.hero-sub {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto 40px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* STRIP */
.con-strip {
    background: var(--red);
    padding: 16px 0;
}

.con-strip .strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.con-strip .strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.con-strip .strip-item:hover {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.con-strip .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* SECTION HELPERS */
.con-section {
    padding: 110px 0;
}

.bg-light-warm {
    background: var(--light);
}

.bg-dark-rich {
    background: var(--dark2);
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.section-title-serif {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title-serif.light {
    color: #fff;
}

.section-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
}

.section-body.light {
    color: rgba(255, 255, 255, 0.72);
}

.red-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-bottom: 28px;
}

/* ABOUT */
.con-about .about-img {
    position: relative;
}

.con-about .about-img > img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.con-about .about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--red);
    padding: 26px 30px;
    text-align: center;
    min-width: 130px;
}

.con-about .about-badge .num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    display: block;
}

.con-about .about-badge .lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    display: block;
    margin-top: 4px;
}

.con-about .about-content {
    padding-left: 56px;
    padding-top: 10px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 36px;
}

.about-list li {
    font-size: 13px;
    font-weight: 400;
    padding: 11px 0 11px 26px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background: var(--red);
}

/* SERVICE CARDS — $serviceData */
.con-services .svc-header {
    text-align: center;
    margin-bottom: 58px;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 430px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.87) 0%,
        rgba(13, 13, 13, 0.08) 55%
    );
    transition: background 0.4s;
}

.service-card:hover .card-overlay {
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.93) 0%,
        rgba(13, 13, 13, 0.28) 55%
    );
}

.service-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 26px;
}

.service-card .card-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red-lt);
    display: block;
    margin-bottom: 7px;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}

.service-card .card-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.service-card .card-desc p {
    margin: 0;
}

.service-card:hover .card-desc {
    max-height: 120px;
}

.service-card .card-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-lt);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.4s 0.1s;
}

.service-card:hover .card-wa {
    opacity: 1;
}

/* AIRPORT TABS */
.con-airport .airport-img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}

.airport-tabs .tab-nav {
    display: flex;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 28px;
}

.airport-tabs .tab-btn {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 20px;
    cursor: pointer;
    border: none;
    background: none;
    color: rgba(0, 0, 0, 0.35);
    position: relative;
    transition: color 0.3s;
}

.airport-tabs .tab-btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.airport-tabs .tab-btn.active {
    color: var(--dark);
}

.airport-tabs .tab-btn.active::after {
    transform: scaleX(1);
}

.airport-tabs .tab-content {
    display: none;
}

.airport-tabs .tab-content.active {
    display: block;
}

.airport-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.airport-checklist li {
    font-size: 13px;
    font-weight: 400;
    padding: 9px 0 9px 22px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    break-inside: avoid;
}

.airport-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

/* FLEET CARDS — $carList */
.fleet-card {
    background: var(--dark3);
    overflow: hidden;
    transition: transform 0.35s;
    border-top: 3px solid transparent;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--red);
}

.fleet-card img {
    width: 100%;
    height: 195px;
    object-fit: contain;
    background: var(--dark3);
    padding: 10px;
    filter: brightness(0.9);
    transition: filter 0.4s;
}

.fleet-card:hover img {
    filter: brightness(1);
}

.fleet-card .fleet-info {
    padding: 18px 22px 22px;
}

.fleet-card .fleet-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 7px;
}

.fleet-card h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.fleet-card .fleet-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--red-lt);
    margin-bottom: 0;
}

.fleet-card .fleet-price del {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.32);
    margin-right: 5px;
    font-size: 11px;
}

.fleet-card .fleet-links {
    display: flex;
    gap: 16px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 14px;
    padding-top: 13px;
}

.fleet-card .fleet-links a {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s;
}

.fleet-card .fleet-links .lnk-detail {
    color: rgba(255, 255, 255, 0.42);
}

.fleet-card .fleet-links .lnk-detail:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.fleet-card .fleet-links .lnk-wa {
    color: var(--red);
}

.fleet-card .fleet-links .lnk-wa:hover {
    color: var(--red-lt);
    text-decoration: none;
}

/* TOURING */
.tour-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.tour-feature .tf-num {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--red);
    line-height: 1;
    min-width: 48px;
}

.tour-feature .tf-text h5 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.tour-feature .tf-text p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}

/* STATS */
.con-stats {
    background: var(--red);
    padding: 64px 0;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item .stat-num {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-item .stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 8px;
}

/* CTA */
.con-cta {
    position: relative;
    padding: 160px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.con-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.76);
}

.con-cta .container {
    position: relative;
    z-index: 2;
}

.con-cta h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 18px;
}

.con-cta h2 em {
    color: var(--red-lt);
    font-style: italic;
}

.con-cta p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.85;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .con-about .about-content {
        padding-left: 0;
        padding-top: 52px;
    }

    .airport-checklist {
        columns: 1;
    }
}

@media (max-width: 767px) {
    .con-hero {
        min-height: 80vh;
    }

    .con-section {
        padding: 80px 0;
    }
}
