:root {
    --primary: #0f766e;
    --primary-dark: #064e3b;
    --accent: #f59e0b;
    --dark: #06111f;
    --soft: #f5f8fb;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
    --radius: 26px;
    --display-font: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14.5px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.75px;
    line-height: 1.55;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

body.site-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

.nav-custom {
    padding: 18px 0;
    background: transparent;
    transition: 0.35s ease;
    z-index: 999;
}

.nav-custom.scrolled {
    padding: 12px 0;
    background: rgba(6, 17, 31, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white !important;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-desktop {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-desktop-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.94rem;
    font-weight: 700;
    padding: 9px 14px !important;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.12);
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    border-radius: 999px;
    padding: 9px 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.btn-admin:hover {
    background: white;
    color: var(--dark);
}

.site-menu-toggle {
    display: none;
    position: relative;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    flex-shrink: 0;
}

.site-menu-toggle span,
.site-menu-toggle::before,
.site-menu-toggle::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-menu-toggle::before {
    transform: translateY(-5px);
}

.site-menu-toggle::after {
    transform: translateY(5px);
}

.site-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 17, 31, 0.52);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 1035;
}

.site-mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 320px);
    height: 100vh;
    padding: 18px 14px;
    background: linear-gradient(180deg, rgba(6, 17, 31, 0.98), rgba(6, 78, 59, 0.94));
    color: white;
    box-shadow: 24px 0 60px rgba(15, 23, 42, 0.18);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s ease;
    z-index: 1040;
    overflow-y: auto;
}

.site-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.site-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-mobile-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.site-mobile-brand-copy strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: white;
}

.site-mobile-brand-copy strong span {
    color: var(--accent);
}

.site-mobile-brand-copy small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.74rem;
}

.site-mobile-close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

.site-mobile-nav {
    margin-top: 14px;
    display: grid;
    gap: 4px;
}

.site-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.site-mobile-link:hover,
.site-mobile-link.active {
    background: rgba(255, 255, 255, 0.10);
    color: white;
    transform: translateX(2px);
}

.site-mobile-actions {
    margin-top: 18px;
}

.site-mobile-actions .btn {
    width: 100%;
    justify-content: center;
}

body.site-menu-open .site-sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.site-menu-open .site-mobile-sidebar {
    transform: translateX(0);
    visibility: visible;
}

body.site-menu-open .site-menu-toggle span {
    opacity: 0;
}

body.site-menu-open .site-menu-toggle::before {
    transform: rotate(45deg);
}

body.site-menu-open .site-menu-toggle::after {
    transform: rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    color: white;
    background:
        linear-gradient(120deg, rgba(6, 17, 31, 0.94), rgba(6, 78, 59, 0.76)),
        url('../images/background.png') center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(245, 158, 11, 0.24), transparent 28%),
        radial-gradient(circle at 80% 75%, rgba(20, 184, 166, 0.26), transparent 32%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.13);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-section h1 {
    max-width: 650px;
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.hero-desc {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-main {
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.3);
}

.btn-main:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-custom:hover {
    background: white;
    color: var(--dark);
}

.hero-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-mini-info div {
    min-width: 145px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
}

.hero-mini-info strong {
    display: block;
    font-size: 1.15rem;
    color: white;
}

.hero-mini-info span {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-service-panel {
    padding: 30px;
    border-radius: 34px;
    background: rgba(6, 17, 31, 0.55);
    color: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
}

.panel-header span {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.panel-header h4 {
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 8px 0 22px;
    color: white;
}

.hero-service-list {
    display: grid;
    gap: 14px;
}

.quick-service {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    transition: 0.28s ease;
}

.quick-service:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
}

.quick-service .icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.16));
    font-size: 1.45rem;
}

.quick-service strong {
    display: block;
    font-size: 0.96rem;
    color: white;
}

.quick-service small {
    color: rgba(255, 255, 255, 0.68);
}

.panel-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.16);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.24);
    font-size: 0.9rem;
    font-weight: 700;
}

.section-padding {
    padding: 90px 0;
}

.section-heading {
    max-width: 670px;
    text-align: center;
    margin: 0 auto 48px;
}

.section-heading span,
.booking-text span,
.contact-box span {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.section-heading h2,
.booking-text h2,
.contact-box h2 {
    margin-top: 10px;
    font-weight: 800;
    letter-spacing: -0.045em;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.section-heading p,
.booking-text p,
.contact-box p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.service-card {
    height: 100%;
    padding: 28px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.07);
    transition: 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.15));
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.service-card h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    min-height: 78px;
}

.service-card a {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.92rem;
}


.step-card {
    height: 100%;
    padding: 28px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.07);
}

.step-card b {
    color: var(--accent);
    font-size: 1.4rem;
}

.step-card h5 {
    margin-top: 18px;
    font-weight: 800;
}

.step-card p {
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(6, 17, 31, 0.95), rgba(6, 78, 59, 0.92)),
        url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
}

.contact-box h2 {
    color: white;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-light-custom {
    background: white;
    color: var(--dark);
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
}

.btn-wa {
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.28);
}

.btn-wa:hover {
    color: white;
    transform: translateY(-2px);
}

.footer {
    padding: 55px 0;
    background: #020617;
    color: rgba(255, 255, 255, 0.68);
}

.footer h5 {
    color: white;
    font-weight: 800;
}

.footer p {
    max-width: 650px;
    margin: 12px auto;
}

.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 999;
    background: #22c55e;
    color: white;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.38);
}

.floating-wa:hover {
    color: white;
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.toast-custom {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(120px);
    background: var(--dark);
    color: white;
    padding: 15px 22px;
    border-radius: 999px;
    z-index: 1200;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.35s ease;
}

.toast-custom.show {
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
    .nav-custom {
        background: rgba(6, 17, 31, 0.92);
        backdrop-filter: blur(16px);
        padding: 12px 0;
    }

    .nav-desktop {
        display: none;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 992px) {
    .site-menu-toggle,
    .site-mobile-sidebar,
    .site-sidebar-overlay {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-service-panel {
        padding: 24px;
        border-radius: 26px;
    }

    .hero-mini-info div {
        width: 100%;
    }

    .contact-actions .btn {
        width: 100%;
    }
}

/* Public content compact sizing */
.hero-section {
    min-height: 92vh;
    padding: 118px 0 58px;
}

.hero-section .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 1.5rem;
}

.hero-badge {
    padding: 7px 13px;
    font-size: 0.72rem;
    margin-bottom: 14px;
}

.hero-section h1 {
    max-width: 540px;
    font-size: clamp(1.78rem, 3.9vw, 3.2rem);
    margin-bottom: 14px;
    line-height: 0.98;
}

.hero-desc {
    max-width: 520px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-actions {
    gap: 10px;
    margin-top: 20px;
}

.btn-main,
.btn-outline-custom,
.btn-light-custom,
.btn-wa {
    padding: 11px 20px;
    font-size: 0.88rem;
}

.hero-actions .btn {
    padding: 10px 18px;
    font-size: 0.84rem;
}

.hero-mini-info {
    gap: 10px;
    margin-top: 22px;
}

.hero-mini-info div {
    min-width: 118px;
    padding: 12px 13px;
    border-radius: 16px;
}

.hero-mini-info strong {
    font-size: 0.92rem;
}

.hero-mini-info span {
    font-size: 0.72rem;
    line-height: 1.45;
}

.hero-service-panel {
    padding: 20px 22px;
    border-radius: 24px;
}

.panel-header span {
    font-size: 0.68rem;
}

.panel-header h4 {
    margin: 5px 0 14px;
    font-size: 0.98rem;
}

.hero-service-list {
    gap: 10px;
}

.quick-service {
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
}

.quick-service .icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 1rem;
}

.quick-service strong {
    font-size: 0.82rem;
}

.quick-service small {
    font-size: 0.74rem;
    line-height: 1.45;
}

.panel-note {
    margin-top: 12px;
    padding: 10px 12px;
    font-size: 0.76rem;
    line-height: 1.5;
}

.section-padding {
    padding: 78px 0;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading span,
.booking-text span,
.contact-box span {
    font-size: 0.72rem;
}

.section-heading h2,
.booking-text h2,
.contact-box h2 {
    margin-top: 8px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-heading p,
.booking-text p,
.contact-box p,
.footer p {
    font-size: 0.92rem;
    line-height: 1.68;
}

.service-card,
.step-card {
    padding: 24px;
    border-radius: 24px;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.service-card h5,
.step-card h5 {
    font-size: 1.02rem;
}

.service-card p,
.step-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.service-card a {
    font-size: 0.86rem;
}

.step-card b {
    font-size: 1.2rem;
}

.contact-section {
    padding: 68px 0;
}

.contact-box {
    gap: 24px;
}

.contact-actions {
    gap: 12px;
}

.footer {
    padding: 46px 0;
    font-size: 0.92rem;
}

.footer h5 {
    font-size: 1rem;
}

.floating-wa {
    width: 50px;
    height: 50px;
}

.back-to-top {
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.toast-custom {
    padding: 13px 18px;
    font-size: 0.84rem;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 112px 0 64px;
    }

    .hero-service-panel {
        padding: 18px 20px;
    }

    .section-padding {
        padding: 66px 0;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.86rem;
    }

    .btn-main,
    .btn-outline-custom,
    .btn-light-custom,
    .btn-wa {
        padding: 10px 18px;
        font-size: 0.84rem;
    }

    .hero-actions .btn {
        padding: 10px 18px;
        font-size: 0.84rem;
    }

    .hero-mini-info div,
    .service-card,
    .step-card {
        padding: 18px;
    }
}

.welcome-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.welcome-copy span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.welcome-copy h2 {
    margin-top: 10px;
    max-width: 560px;
    color: var(--dark);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.welcome-copy p {
    margin: 14px 0 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.72;
}

.welcome-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.welcome-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.welcome-list strong {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(245, 158, 11, 0.18));
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 800;
    flex-shrink: 0;
}

.welcome-list span {
    color: #334155;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.55;
}

.welcome-showcase {
    display: grid;
    gap: 14px;
}

.welcome-highlight-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(15, 118, 110, 0.9));
    color: white;
    box-shadow: 0 26px 70px rgba(6, 17, 31, 0.22);
}

.welcome-highlight-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.30), transparent 68%);
}

.welcome-highlight-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.welcome-highlight-card h3 {
    position: relative;
    z-index: 1;
    margin: 10px 0 10px;
    max-width: 420px;
    font-size: 1.26rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.welcome-highlight-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.68;
}

.welcome-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.welcome-metrics div {
    padding: 16px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.welcome-metrics strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.welcome-metrics span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.welcome-signature {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.10), rgba(15, 118, 110, 0.06));
    border: 1px dashed rgba(15, 118, 110, 0.18);
}

.welcome-signature strong {
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
}

.welcome-signature span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.testimonial-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6f7 100%);
}

.testimonial-card {
    height: 100%;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(14, 116, 144, 0.92));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    transform: translateY(-6px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.88rem;
}

.testimonial-card.featured .testimonial-stars {
    color: #fde68a;
}

.testimonial-stars span.is-off {
    color: #cbd5e1;
    opacity: 0.42;
}

.testimonial-quote {
    position: relative;
    margin: 0;
    padding-top: 14px;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.72;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -2px;
    left: 0;
    color: rgba(15, 118, 110, 0.28);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.testimonial-card.featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.82);
}

.testimonial-card.featured .testimonial-quote::before {
    color: rgba(253, 230, 138, 0.42);
}

.testimonial-meta {
    display: grid;
    gap: 4px;
}

.testimonial-meta strong {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.testimonial-meta span {
    color: var(--muted);
    font-size: 0.78rem;
}

.testimonial-card.featured .testimonial-meta strong {
    color: white;
}

.testimonial-card.featured .testimonial-meta span {
    color: rgba(255, 255, 255, 0.66);
}

.testimonial-submit-shell {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 16px;
    align-items: stretch;
}

.testimonial-submit-copy,
.testimonial-submit-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-submit-copy {
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.10));
}

.testimonial-submit-copy > span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.testimonial-submit-copy h3 {
    margin: 12px 0 0;
    color: var(--dark);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.3;
}

.testimonial-submit-copy p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.testimonial-submit-points {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.testimonial-submit-points div {
    display: grid;
    gap: 4px;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 118, 110, 0.10);
}

.testimonial-submit-points strong {
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.testimonial-submit-points small {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.55;
}

.testimonial-submit-card {
    background: white;
}

.testimonial-submit-form {
    display: grid;
    gap: 12px;
}

.testimonial-submit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.testimonial-submit-grid .full-span {
    grid-column: 1 / -1;
}

.public-field {
    display: grid;
    gap: 6px;
}

.public-field label {
    color: #334155;
    font-size: 0.72rem;
    font-weight: 800;
}

.public-field input,
.public-field select,
.public-field textarea {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid #dbe4ea;
    background: #f8fafc;
    color: var(--text);
    font-size: 0.82rem;
}

.public-field textarea {
    min-height: 120px;
    padding: 12px 14px;
    line-height: 1.58;
    resize: vertical;
}

.public-field input:focus,
.public-field select:focus,
.public-field textarea:focus {
    outline: none;
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.10);
    background: white;
}

.public-field small {
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.form-feedback {
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.5;
}

.form-feedback-error {
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #991b1b;
}

.contact-section {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(6, 17, 31, 0.97), rgba(6, 78, 59, 0.93)),
        url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.contact-shell {
    display: grid;
    gap: 16px;
}

.contact-box {
    align-items: stretch;
    gap: 18px;
}

.contact-copy {
    flex: 1;
}

.contact-copy > span {
    display: inline-flex;
    color: #bfdbfe;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.contact-copy h2 {
    margin-top: 10px;
}

.contact-copy p {
    max-width: 580px;
    font-size: 0.92rem;
    line-height: 1.68;
}

.contact-actions {
    margin-top: 20px;
}

.contact-actions .btn {
    min-width: 148px;
}

.contact-note-card {
    min-width: 280px;
    display: grid;
    gap: 7px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.contact-note-card span {
    color: #fde68a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-note-card strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.52;
}

.contact-note-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.58;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.contact-social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    transition: 0.28s ease;
}

.contact-social-card:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
}

.contact-social-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.10);
}

.contact-social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-social-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
}

.contact-social-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    line-height: 1.45;
}

.contact-social-phone .contact-social-icon {
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.16);
}

.contact-social-whatsapp .contact-social-icon {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.16);
}

.contact-social-instagram .contact-social-icon {
    color: #fdba74;
    background: rgba(249, 115, 22, 0.16);
}

.contact-social-tiktok .contact-social-icon {
    color: #99f6e4;
    background: rgba(20, 184, 166, 0.16);
}

.contact-social-email .contact-social-icon {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.16);
}

.contact-social-facebook .contact-social-icon {
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.16);
}

.contact-social-youtube .contact-social-icon {
    color: #fecaca;
    background: rgba(220, 38, 38, 0.16);
}

.contact-social-maps .contact-social-icon {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.16);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    .welcome-highlight-card,
    .testimonial-card,
    .testimonial-submit-copy,
    .testimonial-submit-card,
    .contact-note-card {
        padding: 20px;
    }

    .testimonial-submit-shell,
    .welcome-metrics,
    .contact-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card.featured {
        transform: none;
    }

    .contact-box {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .welcome-copy h2 {
        font-size: 1.8rem;
    }

    .welcome-list div,
    .welcome-highlight-card,
    .welcome-signature,
    .testimonial-card,
    .testimonial-submit-copy,
    .testimonial-submit-card,
    .contact-note-card,
    .contact-social-card {
        padding: 18px;
    }

    .testimonial-submit-grid,
    .welcome-metrics,
    .testimonial-submit-shell,
    .contact-social-grid {
        grid-template-columns: 1fr;
    }

    .footer-socials {
        justify-content: center;
    }
}

.hero-travel-home {
    overflow: hidden;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 120px 120px;
}

.hero-copy {
    max-width: 640px;
}

.hero-secondary-link {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-secondary-link:hover {
    color: white;
}

.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.hero-trust-item {
    min-width: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hero-trust-item strong {
    display: block;
    color: white;
    font-size: 1.14rem;
    font-weight: 800;
}

.hero-trust-item span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.55;
}

.hero-command-card {
    position: relative;
    padding: 32px;
    border-radius: 34px;
    background: rgba(6, 17, 31, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
}

.hero-command-head span {
    display: inline-flex;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-command-head h3 {
    margin: 12px 0 0;
    color: white;
    font-size: 1.48rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.hero-command-head p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.72;
}

.travel-service-stack {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.travel-service-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    transition: 0.28s ease;
}

.travel-service-item:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.travel-service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(245, 158, 11, 0.22));
}

.travel-service-copy strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
}

.travel-service-copy small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
}

.travel-service-arrow {
    color: #fde68a;
    font-size: 1.05rem;
    font-weight: 800;
}

.hero-command-foot {
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-command-note {
    display: grid;
    gap: 4px;
}

.hero-command-note strong {
    color: white;
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-command-note span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.55;
}

.hero-tracking-btn {
    min-width: 168px;
}

.travel-story-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.story-intro-shell {
    max-width: 980px;
    margin: 0 auto;
}

.story-copy-card--intro {
    padding: 34px 36px;
}

.story-copy-card--intro p {
    max-width: 760px;
}

.story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 20px;
    align-items: stretch;
}

.story-copy-card,
.story-highlight-panel {
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.story-copy-card {
    background: white;
}

.story-copy-card > span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-copy-card h2 {
    margin: 12px 0 0;
    color: var(--dark);
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.05em;
}

.story-copy-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.78;
}

.story-points {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.story-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.story-point-mark {
    color: var(--primary);
    font-size: 0.96rem;
    line-height: 1.6;
}

.story-point span {
    color: #334155;
    font-size: 0.86rem;
    line-height: 1.65;
}

.story-highlight-panel {
    background: linear-gradient(145deg, #07182a 0%, #0f766e 100%);
    color: white;
}

.story-highlight-card span {
    display: inline-flex;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-highlight-card h3 {
    margin: 12px 0 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.story-highlight-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.72;
}

.story-stat-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.story-stat-grid div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-stat-grid strong {
    display: block;
    color: white;
    font-size: 1.18rem;
    font-weight: 800;
}

.story-stat-grid span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.travel-advantage-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.travel-advantage-card {
    padding: 24px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.travel-advantage-card span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.travel-advantage-card h3 {
    margin: 12px 0 0;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.34;
}

.travel-advantage-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.coverage-ribbon {
    margin-top: 20px;
    padding: 22px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #07182a 0%, #0f766e 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.coverage-ribbon-copy {
    max-width: 560px;
}

.coverage-ribbon-copy strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.coverage-ribbon-copy span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.65;
}

.coverage-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-chip {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.travel-service-section {
    background:
        linear-gradient(180deg, #f7fafc 0%, #eef6f7 100%);
}

.home-service-card {
    --service-accent: #0f766e;
    --service-accent-strong: #0b5f59;
    --service-soft: rgba(15, 118, 110, 0.10);
    --service-glow: rgba(15, 118, 110, 0.16);
    height: 100%;
    display: grid;
    gap: 18px;
    padding: 28px 28px 26px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.96) 100%);
    border: 1px solid rgba(203, 213, 225, 0.92);
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.10),
        0 10px 24px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.home-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow:
        0 34px 82px rgba(15, 23, 42, 0.14),
        0 16px 34px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.home-service-card-top {
    display: block;
}

.home-service-media {
    position: relative;
    min-height: 190px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 18px 36px rgba(15, 23, 42, 0.16);
    transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.home-service-media--empty {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 34%),
        linear-gradient(145deg, #07182a 0%, rgba(15, 118, 110, 0.95) 100%);
}

.home-service-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 17, 31, 0.08) 0%, rgba(6, 17, 31, 0.78) 100%);
}

.home-service-card:hover .home-service-media {
    transform: scale(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 22px 42px rgba(15, 23, 42, 0.20);
}

.home-service-labels {
    display: grid;
    gap: 6px;
}

.home-service-labels--media {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 1;
}

.home-service-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--service-soft);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--service-accent-strong);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-service-kicker {
    max-width: none;
    color: #e2e8f0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.45;
    text-align: left;
    text-transform: none;
}

.home-service-card h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.26rem;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.home-service-card p {
    margin: 0;
    color: #475569;
    font-size: 0.89rem;
    line-height: 1.72;
}

.home-service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-service-points span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96));
    border: 1px solid rgba(203, 213, 225, 0.82);
    color: #334155;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-service-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.home-service-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #07182a 0%, var(--service-accent-strong) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 18px 36px var(--service-glow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.home-service-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px var(--service-glow);
    filter: saturate(1.04);
}

.home-service-button b {
    font-size: 1rem;
    line-height: 1;
}

.home-service-card--airport {
    --service-accent: #0f766e;
    --service-accent-strong: #0b5f59;
    --service-soft: rgba(15, 118, 110, 0.10);
    --service-glow: rgba(15, 118, 110, 0.20);
}

.home-service-card--rental {
    --service-accent: #1d4ed8;
    --service-accent-strong: #1e3a8a;
    --service-soft: rgba(37, 99, 235, 0.10);
    --service-glow: rgba(30, 64, 175, 0.20);
}

.home-service-card--lake {
    --service-accent: #0f766e;
    --service-accent-strong: #065f46;
    --service-soft: rgba(5, 150, 105, 0.10);
    --service-glow: rgba(6, 95, 70, 0.18);
}

.home-service-card--event {
    --service-accent: #b45309;
    --service-accent-strong: #92400e;
    --service-soft: rgba(245, 158, 11, 0.12);
    --service-glow: rgba(146, 64, 14, 0.18);
}

.travel-proof-section {
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.section-heading-narrow {
    max-width: 760px;
}

.story-proof-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 20px;
    align-items: stretch;
}

.story-highlight-panel--proof,
.story-proof-card {
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.story-proof-card {
    background: white;
}

.story-proof-card > span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fleet-highlight-section {
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.fleet-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fleet-preview-card {
    overflow: hidden;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.fleet-preview-media {
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.fleet-preview-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(6, 17, 31, 0.46) 100%);
}

.fleet-preview-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.fleet-preview-body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.fleet-preview-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.fleet-preview-line small {
    display: block;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fleet-preview-line h3 {
    margin: 8px 0 0;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.fleet-preview-line strong {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: right;
    line-height: 1.5;
}

.fleet-preview-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.72;
}

.fleet-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fleet-preview-tags span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
}

.fleet-preview-driver {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.06), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(15, 118, 110, 0.10);
}

.fleet-preview-driver strong {
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.fleet-preview-driver span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.52;
}

.fleet-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.destination-home-section,
.destination-directory-section,
.destination-detail-section {
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.destination-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.destination-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.destination-card {
    overflow: hidden;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    display: grid;
    height: 100%;
}

.destination-card-media {
    position: relative;
    min-height: 220px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 36%),
        radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.16), transparent 34%),
        linear-gradient(145deg, #f8fafc, #eef4f7);
    background-size: cover;
    background-position: center;
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 12%, rgba(6, 17, 31, 0.62) 100%);
}

.destination-card-badges {
    position: absolute;
    inset: 16px 16px auto 16px;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.destination-card-badge,
.destination-card-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 0.7rem;
    font-weight: 800;
}

.destination-card-badge {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.destination-card-kicker {
    background: rgba(7, 24, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

.destination-card-body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.destination-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.destination-card-head small {
    display: block;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destination-card-head h3 {
    margin: 8px 0 0;
    color: var(--dark);
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.destination-card-head strong {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: right;
    line-height: 1.45;
}

.destination-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.destination-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.destination-card-actions .btn {
    width: 100%;
    justify-content: center;
}

.destination-empty-state {
    padding: 28px 30px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.destination-empty-state strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.destination-empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.destination-page-hero {
    min-height: auto;
    padding-bottom: 54px;
}

.destination-hero-shell {
    max-width: 760px;
}

.destination-detail-hero {
    min-height: auto;
    padding-bottom: 56px;
}

.destination-back-link {
    display: inline-flex;
    margin-bottom: 18px;
}

.destination-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 20px;
    align-items: stretch;
}

.destination-detail-copy {
    max-width: 620px;
}

.destination-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.destination-detail-meta span {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.destination-detail-media {
    min-height: 360px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 36%),
        radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.16), transparent 34%),
        linear-gradient(145deg, #f8fafc, #eef4f7);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.18);
}

.destination-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}

.destination-detail-primary,
.destination-detail-side {
    display: grid;
    gap: 18px;
}

.destination-detail-panel {
    padding: 28px;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.destination-detail-panel.compact {
    padding: 24px;
}

.destination-detail-panel > span {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.destination-detail-panel h2 {
    margin: 12px 0 0;
    color: var(--dark);
    font-size: 1.44rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.destination-detail-panel p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.78;
}

.destination-side-metrics {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.destination-side-metrics div,
.destination-detail-list div {
    padding: 13px 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
}

.destination-side-metrics strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.destination-side-metrics small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.5;
}

.destination-detail-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.destination-detail-list div {
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.6;
}

.destination-detail-cta {
    margin-top: 14px;
}

.destination-detail-cta .btn {
    width: 100%;
    justify-content: center;
}

.btn-surface {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid #d9e2ec;
    background: #f8fafc;
    color: var(--dark);
    font-weight: 800;
}

.btn-surface:hover {
    color: var(--dark);
    background: white;
}

.booking-path-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef6f7 100%);
}

.booking-path-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
    align-items: stretch;
}

.booking-path-copy {
    padding: 30px;
    border-radius: 30px;
    background: #07182a;
    color: white;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.16);
}

.booking-path-copy span {
    display: inline-flex;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-path-copy h2 {
    margin-top: 12px;
    color: white;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.05em;
}

.booking-path-copy p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.74;
}

.booking-path-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.booking-step-card {
    padding: 24px;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.booking-step-card b {
    display: inline-flex;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
}

.booking-step-card h3 {
    margin: 14px 0 0;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.34;
}

.booking-step-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.68;
}

.travel-contact-section .contact-box {
    align-items: stretch;
}

.contact-quick-card {
    min-width: 300px;
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.contact-quick-card span {
    color: #fde68a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-quick-card strong {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.contact-quick-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.6;
}

.contact-quick-card .btn {
    margin-top: 6px;
}

@media (max-width: 1199px) {
    .hero-trust-bar,
    .travel-advantage-grid,
    .fleet-preview-grid,
    .destination-card-grid,
    .booking-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-shell,
    .story-proof-shell,
    .booking-path-shell,
    .destination-detail-grid,
    .destination-detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .hero-travel-home {
        min-height: auto;
        padding: 138px 0 82px;
    }

    .hero-command-card,
    .story-copy-card,
    .story-highlight-panel,
    .story-proof-card,
    .travel-advantage-card,
    .home-service-card,
    .destination-card-body,
    .booking-path-copy,
    .booking-step-card,
    .contact-quick-card {
        padding: 24px;
    }

    .hero-command-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-trust-bar,
    .travel-advantage-grid,
    .fleet-preview-grid,
    .destination-card-grid,
    .booking-step-grid,
    .story-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-command-card,
    .story-copy-card,
    .story-highlight-panel,
    .story-proof-card,
    .travel-advantage-card,
    .home-service-card,
    .fleet-preview-body,
    .destination-card-body,
    .booking-path-copy,
    .booking-step-card,
    .contact-quick-card {
        padding: 20px;
    }

    .travel-service-item {
        grid-template-columns: 46px minmax(0, 1fr) auto;
        padding: 14px;
    }

    .travel-service-icon {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .hero-tracking-btn,
    .contact-quick-card .btn,
    .booking-path-actions .btn {
        width: 100%;
    }

    .destination-section-head {
        align-items: stretch;
    }

    .destination-section-head .btn {
        width: 100%;
    }

    .booking-path-actions,
    .fleet-preview-actions {
        flex-direction: column;
    }

    .fleet-preview-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-service-kicker {
        max-width: none;
        text-align: left;
    }

    .home-service-media {
        min-height: 168px;
    }

    .home-service-button {
        width: 100%;
    }

    .coverage-ribbon {
        padding: 20px;
    }

    .contact-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

body {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.05), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.05), transparent 22%),
        var(--white);
}

.hero-badge {
    background: rgba(245, 158, 11, 0.11);
    color: #fef3c7;
    border-color: rgba(245, 158, 11, 0.26);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-section h1,
.section-heading h2,
.story-copy-card h2,
.story-highlight-card h3,
.home-service-card h3,
.fleet-preview-line h3,
.booking-path-copy h2,
.booking-step-card h3,
.testimonial-submit-copy h3,
.contact-copy h2,
.contact-quick-card strong {
    font-family: var(--display-font);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-section h1 {
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.story-copy-card h2,
.booking-path-copy h2 {
    line-height: 1.08;
}

.hero-route-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-route-chips span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-command-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 33px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 28%);
    pointer-events: none;
}

.hero-command-head h3 {
    font-size: 1.64rem;
}

.hero-premium-note {
    position: relative;
    margin-top: 18px;
    padding: 16px 18px 16px 20px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.18);
    overflow: hidden;
}

.hero-premium-note::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f59e0b, #fcd34d);
}

.hero-premium-note strong {
    display: block;
    color: white;
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-premium-note span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.58;
}

.travel-advantage-card,
.booking-step-card,
.home-service-card {
    position: relative;
    overflow: hidden;
}

.travel-advantage-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.9), rgba(245, 158, 11, 0.86));
}

.home-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 118, 110, 0), rgba(15, 118, 110, 0.38), rgba(245, 158, 11, 0.32), rgba(15, 118, 110, 0));
}

.home-service-card::after {
    content: "";
    position: absolute;
    top: -38px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--service-soft) 0%, transparent 70%);
    pointer-events: none;
}

.home-service-card h3 {
    font-size: 1.42rem;
}

.fleet-preview-card {
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.fleet-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.fleet-preview-line h3 {
    font-size: 1.5rem;
}

.booking-step-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(15, 118, 110, 0.92));
}

.booking-step-card h3 {
    font-size: 1.3rem;
}

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.testimonial-quote {
    font-size: 0.94rem;
}

.contact-quick-card strong {
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .hero-route-chips {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .hero-premium-note {
        padding: 14px 16px 14px 18px;
    }
}

/* Compact public sizing aligned with admin dashboard */
.nav-link {
    font-size: 0.88rem;
}

.btn-admin,
.btn-main,
.btn-outline-custom,
.btn-light-custom,
.btn-wa,
.btn-outline-soft,
.btn-surface,
.hero-tracking-btn,
.contact-quick-card .btn,
.booking-path-actions .btn {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.74rem;
}

.hero-badge,
.page-label,
.section-kicker,
.hero-route-chips span,
.travel-advantage-card span,
.booking-step-card b,
.contact-quick-card span,
.home-service-card-top small,
.fleet-preview-meta span,
.testimonial-submit-copy span,
.contact-note-card span {
    font-size: 0.68rem;
}

.hero-section {
    padding: 138px 0 86px;
}

.hero-section h1 {
    max-width: 620px;
    font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.hero-desc,
.section-heading p,
.story-copy-card p,
.story-highlight-card p,
.welcome-highlight-card p,
.travel-advantage-card p,
.home-service-card p,
.fleet-preview-body p,
.destination-card-body p,
.destination-detail-panel p,
.booking-step-card p,
.testimonial-quote,
.testimonial-submit-copy p,
.contact-note-card p,
.contact-social-card small,
.contact-quick-card p {
    font-size: 0.82rem;
    line-height: 1.65;
}

.section-heading h2,
.story-copy-card h2,
.story-highlight-card h3,
.welcome-highlight-card h3,
.travel-advantage-card h3,
.home-service-card h3,
.fleet-preview-line h3,
.destination-card-head h3,
.destination-detail-panel h2,
.booking-path-copy h2,
.booking-step-card h3,
.testimonial-submit-copy h3,
.contact-copy h2,
.contact-quick-card strong {
    letter-spacing: -0.03em;
}

.section-heading h2,
.booking-path-copy h2,
.contact-copy h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.hero-mini-info div,
.hero-service-panel,
.hero-command-card,
.story-copy-card,
.story-highlight-card,
.welcome-highlight-card,
.service-card,
.step-card,
.travel-advantage-card,
.home-service-card,
.fleet-preview-card,
.destination-card,
.destination-detail-panel,
.testimonial-card,
.testimonial-submit-card,
.contact-note-card,
.contact-social-card,
.booking-step-card,
.contact-quick-card {
    border-radius: 22px;
}

.hero-service-panel,
.hero-command-card,
.story-copy-card,
.story-highlight-card,
.welcome-highlight-card,
.service-card,
.step-card,
.travel-advantage-card,
.home-service-card,
.testimonial-card,
.testimonial-submit-card,
.contact-note-card,
.contact-social-card,
.booking-step-card,
.contact-quick-card {
    padding: 20px;
}

.hero-mini-info div,
.fleet-preview-body {
    padding: 16px;
}

@media (max-width: 767px) {
    html {
        font-size: 13.9px;
    }

    .hero-section {
        padding: 128px 0 72px;
    }

    .destination-page-hero,
    .destination-detail-hero {
        padding-bottom: 40px;
    }

    .btn-admin,
    .btn-main,
    .btn-outline-custom,
    .btn-light-custom,
    .btn-wa,
    .btn-outline-soft,
    .btn-surface,
    .hero-tracking-btn,
    .contact-quick-card .btn,
    .booking-path-actions .btn {
        min-height: 40px;
        padding: 9px 16px;
    }

    .destination-card-media {
        min-height: 200px;
    }

    .destination-card-head {
        flex-direction: column;
    }

    .destination-card-head strong {
        text-align: left;
    }

    .destination-card-actions {
        grid-template-columns: 1fr;
    }

    .destination-detail-media {
        min-height: 240px;
        border-radius: 26px;
    }

    .destination-detail-panel,
    .destination-detail-panel.compact {
        padding: 22px;
    }
}

/* Homepage opener fit */
.hero-travel-home {
    min-height: 100svh;
    padding: 104px 0 34px;
    display: flex;
    align-items: center;
}

.hero-travel-home .row {
    --bs-gutter-y: 1rem;
}

.hero-travel-home .hero-copy {
    max-width: 560px;
}

.hero-travel-home .hero-badge {
    margin-bottom: 12px;
}

.hero-travel-home h1 {
    max-width: 560px;
    margin-bottom: 12px;
    font-size: clamp(1.92rem, 3.7vw, 3.28rem);
}

.hero-travel-home .hero-desc {
    max-width: 540px;
    font-size: 0.82rem;
    line-height: 1.56;
}

.hero-travel-home .hero-route-chips {
    margin-top: 14px;
    gap: 8px;
}

.hero-travel-home .hero-route-chips span {
    padding: 8px 12px;
    font-size: 0.69rem;
}

.hero-travel-home .hero-actions {
    margin-top: 16px;
}

.hero-travel-home .hero-secondary-link {
    margin-top: 13px;
    font-size: 0.79rem;
}

.hero-travel-home .hero-trust-bar {
    margin-top: 18px;
    gap: 10px;
}

.hero-travel-home .hero-trust-item {
    padding: 13px 14px;
    border-radius: 18px;
}

.hero-travel-home .hero-trust-item strong {
    font-size: 0.98rem;
}

.hero-travel-home .hero-trust-item span {
    margin-top: 4px;
    font-size: 0.71rem;
    line-height: 1.42;
}

.hero-travel-home .hero-command-card {
    padding: 22px;
    border-radius: 26px;
}

.hero-travel-home .hero-command-head span {
    font-size: 0.66rem;
}

.hero-travel-home .hero-premium-note {
    margin-top: 14px;
    padding: 13px 14px 13px 17px;
    border-radius: 18px;
}

.hero-travel-home .hero-premium-note strong {
    font-size: 0.78rem;
}

.hero-travel-home .hero-premium-note span {
    font-size: 0.71rem;
    line-height: 1.44;
}

.hero-travel-home .travel-service-stack {
    margin-top: 14px;
    gap: 9px;
}

.hero-travel-home .travel-service-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 12px;
    border-radius: 18px;
}

.hero-travel-home .travel-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 1.18rem;
}

.hero-travel-home .travel-service-copy strong {
    font-size: 0.82rem;
    line-height: 1.26;
}

.hero-travel-home .travel-service-copy small {
    margin-top: 2px;
    font-size: 0.68rem;
    line-height: 1.36;
}

.hero-travel-home .travel-service-arrow {
    font-size: 0.92rem;
}

.hero-travel-home .hero-command-foot {
    margin-top: 14px;
    padding-top: 14px;
    gap: 12px;
}

.hero-travel-home .hero-command-note strong {
    font-size: 0.78rem;
}

.hero-travel-home .hero-command-note span {
    font-size: 0.69rem;
    line-height: 1.4;
}

.hero-travel-home .hero-tracking-btn {
    min-width: 150px;
}

@media (max-width: 991px) {
    .hero-travel-home {
        min-height: 100svh;
        padding: 92px 0 28px;
        align-items: flex-start;
    }

    .hero-travel-home .row {
        --bs-gutter-y: 12px;
    }

    .hero-travel-home .hero-desc {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .hero-travel-home .hero-command-card {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-travel-home .hero-premium-note {
        margin-top: 12px;
        padding: 11px 12px 11px 15px;
    }

    .hero-travel-home .travel-service-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-travel-home .travel-service-item {
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: flex-start;
        min-height: 100%;
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }

    .hero-travel-home .travel-service-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        font-size: 1.05rem;
    }

    .hero-travel-home .travel-service-copy strong {
        font-size: 0.74rem;
    }

    .hero-travel-home .travel-service-copy small {
        font-size: 0.63rem;
        line-height: 1.32;
    }

    .hero-travel-home .travel-service-arrow {
        display: none;
    }

    .hero-travel-home .hero-command-foot {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .hero-travel-home .hero-command-note strong {
        font-size: 0.72rem;
    }

    .hero-travel-home .hero-command-note span {
        display: none;
    }

    .hero-travel-home .hero-tracking-btn {
        width: auto;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 767px) {
    .hero-travel-home {
        min-height: auto;
        padding: 72px 0 18px;
        background-position: center center, center top;
    }

    .hero-travel-home .hero-primary-col {
        min-height: calc(100svh - 90px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-travel-home .hero-copy {
        width: 100%;
        margin-top: auto;
        padding: 16px 14px 14px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(6, 17, 31, 0.18), rgba(6, 17, 31, 0.62));
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 36px rgba(6, 17, 31, 0.18);
    }

    .hero-travel-home .hero-planner-col {
        margin-top: 14px;
    }

    .hero-travel-home h1 {
        max-width: none;
        margin-bottom: 12px;
        font-size: clamp(1.78rem, 8.6vw, 2.48rem);
    }

    .hero-travel-home .hero-desc {
        max-width: none;
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .hero-travel-home .hero-route-chips {
        margin-top: 14px;
        gap: 8px;
    }

    .hero-travel-home .hero-route-chips span {
        padding: 7px 10px;
        font-size: 0.64rem;
    }

    .hero-travel-home .hero-actions {
        margin-top: 16px;
    }

    .hero-travel-home .hero-actions .btn {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        padding: 9px 14px;
        font-size: 0.76rem;
    }

    .hero-travel-home .hero-secondary-link {
        margin-top: 14px;
        font-size: 0.74rem;
    }

    .hero-travel-home .hero-trust-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 15px;
    }

    .hero-travel-home .hero-trust-item {
        padding: 10px 9px;
        border-radius: 14px;
    }

    .hero-travel-home .hero-trust-item strong {
        font-size: 0.78rem;
    }

    .hero-travel-home .hero-trust-item span {
        margin-top: 3px;
        font-size: 0.58rem;
        line-height: 1.28;
    }

    .hero-travel-home .hero-command-card {
        padding: 14px;
        border-radius: 18px;
    }

    .hero-travel-home .hero-command-head span {
        font-size: 0.62rem;
    }

    .hero-travel-home .hero-premium-note {
        padding: 10px 11px 10px 14px;
        border-radius: 15px;
    }

    .hero-travel-home .hero-premium-note strong {
        font-size: 0.72rem;
    }

    .hero-travel-home .hero-premium-note span {
        font-size: 0.62rem;
        line-height: 1.32;
    }

    .hero-travel-home .travel-service-stack {
        margin-top: 10px;
        gap: 7px;
    }

    .hero-travel-home .travel-service-item {
        padding: 9px;
    }

    .hero-travel-home .travel-service-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 0.96rem;
    }

    .hero-travel-home .travel-service-copy strong {
        font-size: 0.68rem;
    }

    .hero-travel-home .travel-service-copy small {
        font-size: 0.58rem;
    }

    .hero-travel-home .hero-command-foot {
        margin-top: 10px;
        padding-top: 10px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-travel-home .hero-command-note strong {
        font-size: 0.66rem;
    }

    .hero-travel-home .hero-tracking-btn {
        width: 100%;
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

/* Hero layout refresh */
.hero-story-grid {
    display: grid;
    grid-template-columns: minmax(188px, 220px) minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    max-width: 670px;
    margin-top: 12px;
}

.hero-story-grid .hero-desc {
    max-width: none;
    margin: 0;
    padding-top: 4px;
}

.hero-route-chips {
    display: grid;
    gap: 10px;
    margin-top: 0;
}

.hero-route-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(173, 216, 230, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-route-icon {
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1;
    flex-shrink: 0;
}

.hero-route-chip b {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .story-copy-card--intro,
    .story-highlight-panel--proof,
    .story-proof-card {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .hero-story-grid {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 14px;
        max-width: 100%;
    }

    .hero-route-chip {
        min-height: 40px;
        padding: 0 11px;
    }

    .hero-route-chip b {
        font-size: 0.78rem;
    }
}

@media (max-width: 767px) {
    .hero-story-grid {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 12px;
        margin-top: 14px;
    }

    .hero-story-grid .hero-desc {
        padding-top: 2px;
        font-size: 0.74rem;
        line-height: 1.5;
    }

    .hero-route-chips {
        gap: 8px;
    }

    .hero-route-chip {
        min-height: 38px;
        padding: 0 10px;
        gap: 8px;
    }

    .hero-route-icon {
        width: 15px;
        font-size: 0.72rem;
    }

    .hero-route-chip b {
        font-size: 0.7rem;
    }

    .story-copy-card--intro,
    .story-highlight-panel--proof,
    .story-proof-card {
        padding: 20px;
    }

    .home-service-points {
        gap: 7px;
    }

    .home-service-points span {
        font-size: 0.72rem;
    }
}

.tariff-page-hero {
    padding-bottom: 34px;
}

.tariff-hero-shell {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.tariff-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tariff-hero-metrics div {
    padding: 12px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.tariff-hero-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
}

.tariff-hero-metrics span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    line-height: 1.4;
}

.tariff-directory-section {
    padding-top: 12px;
}

.tariff-filter-shell {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.tariff-filter-shell h2 {
    margin: 8px 0 0;
    color: #0f172a;
    font-size: clamp(1.18rem, 2vw, 1.46rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.tariff-filter-control {
    min-width: min(100%, 280px);
}

.tariff-filter-control label {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-size: 0.74rem;
    font-weight: 700;
}

.tariff-filter-control .form-select {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: none;
    font-size: 0.82rem;
    font-weight: 700;
}

.tariff-panels {
    display: grid;
    gap: 18px;
}

.tariff-panel {
    display: none;
}

.tariff-panel.is-active {
    display: block;
}

.tariff-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.tariff-panel-head h3 {
    margin: 8px 0 0;
    color: #0f172a;
    font-size: clamp(1.14rem, 2vw, 1.38rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.tariff-panel-head .btn-outline-custom {
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.tariff-panel-head .btn-outline-custom:hover {
    background: linear-gradient(135deg, var(--accent), #f97316);
    border-color: transparent;
    color: #ffffff;
}

.tariff-airport-stack {
    display: grid;
    gap: 14px;
}

.tariff-airport-card {
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.94));
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.tariff-airport-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.tariff-airport-head small,
.tariff-route-card small {
    display: block;
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tariff-airport-head h4 {
    margin: 5px 0 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.tariff-airport-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.14);
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
}

.tariff-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tariff-route-grid-travel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tariff-route-card {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.tariff-route-card strong {
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.tariff-route-card b {
    color: #f59e0b;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.3;
}

.tariff-route-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.52;
}

.tariff-route-actions {
    margin-top: 4px;
}

.tariff-route-actions .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1199px) {
    .tariff-route-grid,
    .tariff-route-grid-travel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .tariff-filter-shell,
    .tariff-panel-head {
        flex-direction: column;
        align-items: stretch;
    }

    .tariff-filter-control {
        min-width: 100%;
    }

    .tariff-panel-head .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .tariff-page-hero {
        padding-bottom: 20px;
    }

    .tariff-hero-shell {
        gap: 12px;
    }

    .tariff-hero-metrics,
    .tariff-route-grid,
    .tariff-route-grid-travel {
        grid-template-columns: 1fr;
    }

    .tariff-filter-shell,
    .tariff-airport-card,
    .tariff-route-card {
        padding: 14px;
    }

    .tariff-airport-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Prevent mobile browsers from zooming focused form controls. */
@media (max-width: 767px) {
    input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='hidden']):not([type='file']),
    select,
    textarea {
        font-size: 16px;
    }
}
