/* ============================================================
   LomboKita — Gili Waters Design System
   Palet: Teal #0C7A8B | Coral #E05D3A | Sand #F8F6F2 | Navy #1A2B3C
   Font:  Cormorant Garamond (display) · Outfit (body)
   ============================================================ */

/* --- Variables --- */
:root {
    --teal-50: #e0f5f7;
    --teal-100: #b2e4ea;
    --teal-200: #7ecfdb;
    --teal-300: #4bbacc;
    --teal-400: #1caabb;
    --teal-500: #0c7a8b;
    --teal-600: #096c7c;
    --teal-700: #075c6a;
    --teal-800: #044b57;
    --teal-900: #023844;
    --coral-400: #e87859;
    --coral-500: #e05d3a;
    --coral-600: #c44f2e;
    --coral-700: #a84023;
    --sand-50: #f8f6f2;
    --sand-100: #ede8e0;
    --sand-200: #ddd5c8;
    --sand-300: #c9bea9;
    --sand-400: #b4a78e;
    --navy-600: #344f65;
    --navy-700: #253d51;
    --navy-800: #1a2b3c;
    --navy-900: #0f1e2d;
    --font-d: "Cormorant Garamond", Georgia, serif;
    --font-b: "Outfit", system-ui, sans-serif;
    --shadow-sm: 0 1px 6px rgba(26, 43, 60, 0.06);
    --shadow: 0 2px 16px rgba(26, 43, 60, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 43, 60, 0.12);
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-pill: 50rem;
}

/* --- Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: var(--font-b);
    background: var(--sand-50);
    color: var(--navy-800);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-d);
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.15;
    margin-bottom: 1rem;
}
a {
    color: var(--teal-500);
    text-decoration: none;
}
a:hover {
    color: var(--teal-700);
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Image Placeholders --- */
.img-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-family: var(--font-b);
    letter-spacing: 0.05em;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 12px,
        rgba(255, 255, 255, 0.03) 12px,
        rgba(255, 255, 255, 0.03) 24px
    );
}
.img-ph i {
    font-size: 1.5rem;
    opacity: 0.45;
}
.ph-beach {
    background-color: #1a6e7d;
}
.ph-mountain {
    background-color: #0a4050;
}
.ph-culture {
    background-color: #7a6152;
}
.ph-food {
    background-color: #8a5a40;
}
.ph-green {
    background-color: #1a5a4a;
}
.ph-hero {
    background: linear-gradient(
        160deg,
        rgba(10, 48, 64, 0.95) 0%,
        rgba(2, 56, 68, 0.88) 45%,
        rgba(12, 122, 139, 0.75) 80%,
        rgba(28, 170, 187, 0.65) 100%
    );
}

/* --- Navbar --- */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0.9rem 0;
    background: transparent;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}
#mainNav.nav-solid {
    background: var(--teal-500);
    box-shadow: 0 2px 20px rgba(15, 30, 45, 0.2);
}
#mainNav.nav-scrolled {
    background: var(--teal-600);
    box-shadow: 0 2px 20px rgba(15, 30, 45, 0.2);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-brand {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}
.nav-brand:hover {
    color: rgba(255, 255, 255, 0.9);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9375rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-sm);
    transition:
        color 0.2s,
        background 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-b);
    text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.lang-sw {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0 0.3rem;
    cursor: pointer;
    font-family: var(--font-b);
    transition: color 0.15s;
}
.lang-btn.active {
    color: #fff;
    font-weight: 700;
}
.lang-div {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}
.btn-wa-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--coral-500);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.45rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition:
        background 0.2s,
        transform 0.15s;
    cursor: pointer;
    font-family: var(--font-b);
}
.btn-wa-nav:hover {
    background: var(--coral-600);
    color: #fff;
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 30, 45, 0.75) 0%,
        rgba(2, 56, 68, 0.55) 55%,
        rgba(164, 64, 35, 0.18) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 5rem;
}
.hero-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}
.hero-title {
    font-family: var(--font-d);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(15, 30, 45, 0.3);
}
.hero-title em {
    font-style: italic;
    color: var(--teal-300);
}
.hero-sub {
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin-bottom: 2.5rem;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-num {
    font-family: var(--font-d);
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}
.hero-inner {
    min-height: 40vh;
    align-items: flex-end;
    padding-bottom: 2.5rem;
    padding-top: 80px;
}
.hero-inner .hero-content {
    padding-top: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.875rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-b);
    text-decoration: none;
    white-space: nowrap;
}
.btn-teal {
    background: var(--teal-500);
    color: #fff;
}
.btn-teal:hover {
    background: var(--teal-600);
    color: #fff;
    transform: translateY(-2px);
}
.btn-coral {
    background: var(--coral-500);
    color: #fff;
}
.btn-coral:hover {
    background: var(--coral-600);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}
.btn-outline-teal {
    background: transparent;
    color: var(--teal-500);
    border: 1.5px solid var(--teal-200);
}
.btn-outline-teal:hover {
    background: var(--teal-500);
    color: #fff;
}
.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.875rem;
}
.btn-ghost-teal {
    background: var(--teal-50);
    color: var(--teal-700);
    border: 1px solid var(--teal-100);
}
.btn-ghost-teal:hover {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
}

/* --- Sections --- */
.section {
    padding: 5rem 0;
}
.section-sand {
    background: var(--sand-100);
}
.section-navy {
    background: var(--navy-800);
    color: rgba(255, 255, 255, 0.8);
}
.section-teal {
    background: var(--teal-900);
    color: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-800);
}
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 0.75rem;
}
.section-desc {
    font-weight: 300;
    color: var(--navy-600);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-header::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--coral-500);
    border-radius: 2px;
    margin: 1.25rem auto 0;
}
.section-header-left {
    text-align: left;
}
.section-header-left::after {
    margin: 1rem 0 0;
}

/* --- Package Card --- */
.package-card {
    border: 1px solid var(--sand-200);
    border-radius: 0.875rem;
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.package-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--sand-100);
}
.package-img .img-ph {
    height: 100%;
    transition: transform 0.4s;
}
.package-card:hover .package-img .img-ph {
    transform: scale(1.05);
}
.badge-feat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--coral-500);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-dur {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(15, 30, 45, 0.72);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}
.package-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pkg-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 0.375rem;
}
.pkg-title {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.pkg-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--navy-600);
    margin-bottom: 1rem;
    flex: 1;
}
.pkg-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.pkg-info i {
    color: var(--teal-500);
}
.package-foot {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--sand-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-lbl {
    font-size: 0.6875rem;
    color: var(--navy-600);
    display: block;
    line-height: 1;
    margin-bottom: 0.125rem;
}
.price-amt {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
}
.price-cta {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal-500);
}

/* --- Testimonial --- */
.testi-wrap {
    background: var(--sand-100);
    border-radius: 1.5rem;
    padding: 4rem 2.5rem;
}
.testi-card {
    background: #fff;
    border-radius: 0.875rem;
    padding: 1.75rem;
    border: 1px solid var(--sand-200);
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 43, 60, 0.09);
}
.stars {
    display: flex;
    gap: 0.2rem;
    color: var(--coral-500);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.testi-card blockquote {
    font-family: var(--font-d);
    font-size: 1.075rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--navy-700);
    margin: 0 0 1.25rem;
    border: none;
    padding: 0;
}
.testi-card blockquote::before {
    content: "\201C";
}
.testi-card blockquote::after {
    content: "\201D";
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.reviewer-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--teal-700);
    flex-shrink: 0;
}
.reviewer-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy-800);
    margin: 0;
    line-height: 1.3;
}
.reviewer-org {
    font-size: 0.8125rem;
    color: var(--navy-600);
    margin: 0;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item .img-ph {
    height: 100%;
    transition: transform 0.4s;
}
.gallery-ov {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 45, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gallery-ov i {
    color: #fff;
    font-size: 1.75rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s;
}
.gallery-item:hover .img-ph {
    transform: scale(1.06);
}
.gallery-item:hover .gallery-ov {
    background: rgba(15, 30, 45, 0.45);
}
.gallery-item:hover .gallery-ov i {
    opacity: 1;
    transform: scale(1);
}
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.chip {
    background: none;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-pill);
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    color: var(--navy-700);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-b);
    white-space: nowrap;
}
.chip:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
}
.chip.active {
    background: var(--teal-500);
    border-color: var(--teal-500);
    color: #fff;
    font-weight: 500;
}

/* --- Blog --- */
.blog-card {
    border: 1px solid var(--sand-200);
    border-radius: 0.875rem;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 43, 60, 0.1);
}
.blog-img {
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
}
.blog-img .img-ph {
    height: 100%;
    transition: transform 0.4s;
}
.blog-card:hover .blog-img .img-ph {
    transform: scale(1.04);
}
.blog-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--navy-600);
    flex-wrap: wrap;
}
.blog-cat {
    background: var(--teal-50);
    color: var(--teal-700);
    border-radius: 0.375rem;
    padding: 0.15rem 0.625rem;
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
}
.blog-title {
    font-family: var(--font-d);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.35;
    margin-bottom: 0.625rem;
    display: block;
}
.blog-title:hover {
    color: var(--teal-500);
}
.blog-excerpt {
    font-size: 0.9rem;
    color: var(--navy-600);
    line-height: 1.7;
    flex: 1;
}
.blog-featured {
    display: flex;
    border: 1px solid var(--sand-200);
    border-radius: 0.875rem;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.25s;
}
.blog-featured:hover {
    box-shadow: var(--shadow-lg);
}
.blog-featured .blog-img {
    width: 42%;
    aspect-ratio: auto;
    flex-shrink: 0;
}
.blog-featured .blog-img .img-ph {
    height: 100%;
}
.blog-featured .blog-body {
    padding: 2rem;
}
.blog-featured .blog-title {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
}

/* --- Inquiry Card --- */
.inquiry-card {
    background: #fff;
    border: 1px solid var(--sand-200);
    border-radius: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 92px;
    box-shadow: var(--shadow-lg);
}
.inq-title {
    font-family: var(--font-d);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--navy-800);
    margin-bottom: 0.25rem;
}
.inq-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-500);
    margin-bottom: 1.25rem;
}
.inq-div {
    text-align: center;
    color: var(--sand-400);
    font-size: 0.8125rem;
    margin: 0.75rem 0;
    position: relative;
}
.inq-div::before,
.inq-div::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--sand-200);
}
.inq-div::before {
    left: 0;
}
.inq-div::after {
    right: 0;
}
.form-grp {
    margin-bottom: 0.875rem;
}
.form-grp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}
.form-lbl {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-700);
    margin-bottom: 0.375rem;
}
.form-ctrl {
    width: 100%;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-b);
    color: var(--navy-800);
    background: #fff;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
}
.form-ctrl:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 0.2rem rgba(12, 122, 139, 0.15);
}
.form-ctrl::placeholder {
    color: var(--sand-400);
}

/* --- Section Title Bar --- */
.section-title-bar { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.25rem; padding: .875rem 1.25rem; background: var(--teal-500); border-radius: .875rem; }
.section-title-bar-icon { width: 36px; height: 36px; border-radius: .625rem; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.section-title-bar-icon i { color: #fff; font-size: 1.125rem; }
.section-title-bar h3 { font-size: 1.25rem; margin: 0; color: #fff; font-family: var(--font-b); font-weight: 600; }

/* --- Itinerary v2 (cards) --- */
.itinerary { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.itin-item { display: flex; gap: 0; padding-bottom: 0; position: relative; align-items: stretch; }
.itin-item:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: -1rem; width: 2px; background: var(--sand-200); z-index: 0; }
.itin-card { flex: 1; border: 1px solid var(--sand-200); border-radius: .875rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.itin-head { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.25rem; background: var(--teal-500); border-bottom: none; }
.itin-num { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-500); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 600; flex-shrink: 0; position: relative; z-index: 1; }
.itin-title-card { font-family: var(--font-d); font-size: 1.075rem; font-weight: 500; color: #fff; margin: 0; line-height: 1.3; }
.itin-body { padding: 1rem 1.25rem; }
.itin-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.itin-step { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--navy-700); line-height: 1.6; }
.itin-step-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); flex-shrink: 0; margin-top: .5rem; }

/* --- Inclusion cards v2 --- */
.incl-card { border-radius: .875rem; overflow: hidden; border: 1px solid var(--sand-200); }
.incl-card-head { display: flex; align-items: center; gap: .625rem; padding: .875rem 1.25rem; font-weight: 600; font-size: .9375rem; }
.incl-card-head.included { background: #F0FBF6; color: #1B5E3B; border-bottom: 1px solid #C6EDD9; }
.incl-card-head.excluded { background: #FFF5F3; color: #C44F2E; border-bottom: 1px solid #FECDBE; }
.incl-card-body { padding: 1.125rem 1.25rem; background: #fff; }
.incl-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .625rem; }
.incl-list li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; color: var(--navy-700); line-height: 1.6; }
.incl-list li i { font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.incl-list.included li i { color: #1B5E3B; }
.incl-list.excluded li i { color: #C44F2E; }

/* --- Contact --- */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: var(--teal-50);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-lbl {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 0.2rem;
}
.contact-val {
    font-size: 0.9375rem;
    color: var(--navy-700);
}
.map-ph {
    border-radius: 0.875rem;
    overflow: hidden;
    height: 280px;
    background: var(--sand-100);
    border: 1px solid var(--sand-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--sand-400);
}
.map-ph i {
    font-size: 2.5rem;
}

/* --- Breadcrumb --- */
.bc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.bc a {
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}
.bc a:hover {
    color: #fff;
}
.bc-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.bc-cur {
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}
.bc-dark a {
    color: var(--teal-500);
}
.bc-dark .bc-sep {
    color: var(--sand-400);
}
.bc-dark .bc-cur {
    color: var(--navy-800);
    font-weight: 500;
}

/* --- Footer --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer {
    background: var(--navy-800);
    color: rgba(255, 255, 255, 0.72);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-family: var(--font-d);
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.75rem;
    display: block;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.52);
    max-width: 260px;
}
.footer h6 {
    font-family: var(--font-b);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9375rem;
    transition: color 0.15s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-ci {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0.75rem;
}
.footer-ci i {
    color: var(--coral-400);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.32);
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
}
.footer-socials a:hover {
    background: var(--teal-600);
    color: #fff;
}

/* --- Floating WA --- */
.wa-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 1060;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    color: #fff;
}
.wa-fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.28);
    animation: wapulse 2.2s ease-out infinite;
}
@keyframes wapulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    60% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}
.wa-tip {
    position: fixed;
    bottom: 2rem;
    right: 5.25rem;
    z-index: 1059;
    background: var(--navy-800);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.2s;
}
.wa-tip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy-800);
    border-right: none;
}
.wa-fab:hover + .wa-tip {
    opacity: 1;
    transform: translateX(0);
}

/* --- Lightbox --- */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 45, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lb-overlay.open {
    display: flex;
}
.lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lb-close:hover {
    background: rgba(255, 255, 255, 0.1);
}
.lb-inner {
    width: min(92vw, 1100px);
    height: min(80vh, 700px);
    background: var(--navy-800);
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}
.lb-inner .img-ph {
    height: 100%;
}
.lb-caption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* --- Pagination --- */
.pgn {
    display: flex;
    gap: 0.375rem;
    justify-content: center;
    margin-top: 3rem;
}
.pg-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--navy-700);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-b);
}
.pg-btn:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
}
.pg-btn.active {
    background: var(--teal-500);
    border-color: var(--teal-500);
    color: #fff;
}

/* --- Page transitions --- */
.page {
    display: none;
    animation: fadeUp 0.3s ease;
}
.page.active {
    display: block;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Article content --- */
.article-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article-body p {
    margin-bottom: 1.25rem;
    color: var(--navy-700);
    line-height: 1.85;
    font-size: 0.9875rem;
}
.article-body .img-ph {
    border-radius: 0.875rem;
    aspect-ratio: 16/9;
    margin: 2rem 0;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    color: var(--navy-700);
    transition: all 0.2s;
    cursor: pointer;
    background: #fff;
    font-family: var(--font-b);
}
.share-btn:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
}

/* --- Detail Page Layout --- */
.detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* --- Contact Page Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* --- Utility --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.text-teal {
    color: var(--teal-500);
}
.text-coral {
    color: var(--coral-500);
}
.text-muted {
    color: var(--navy-600);
}
.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}
.fw-light {
    font-weight: 300;
}
.fw-medium {
    font-weight: 500;
}
.fw-semi {
    font-weight: 600;
}
.text-center {
    text-align: center;
}
.text-sm {
    font-size: 0.875rem;
}
.text-xs {
    font-size: 0.75rem;
}
.mt-1 {
    margin-top: 0.5rem;
}
.mt-2 {
    margin-top: 1rem;
}
.mt-3 {
    margin-top: 1.5rem;
}
.mt-4 {
    margin-top: 2rem;
}
.mt-6 {
    margin-top: 3.5rem;
}
.mb-1 {
    margin-bottom: 0.5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.d-flex {
    display: flex;
}
.align-center {
    align-items: center;
}
.gap-1 {
    gap: 0.5rem;
}
.gap-2 {
    gap: 1rem;
}
.gap-3 {
    gap: 1.5rem;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.w-100 {
    width: 100%;
}
.divider-h {
    border: none;
    border-top: 1px solid var(--sand-200);
    margin: 2rem 0;
}

/* --- Responsive --- */

/* ≤1199px — large tablet / small desktop */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

/* ≤991px — tablet */
@media (max-width: 991px) {
    #mainNav {
        background: var(--teal-600);
        box-shadow: 0 2px 20px rgba(15, 30, 45, 0.2);
        padding: 0;
        height: 60px;
        display: flex;
        align-items: center;
    }
    #mainNav .nav-inner {
        width: 100%;
    }
    body {
        padding-top: 60px;
    }
    .hero {
        align-items: flex-start;
    }
    .hero-inner {
        padding-top: 0;
    }
    .hero-content {
        padding-top: 10rem !important;
    }
    .nav-links {
        display: none;
    }
    .btn-wa-nav {
        display: none;
    }
    .nav-links.mob-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--teal-600);
        padding: 1rem;
        gap: 0.25rem;
        z-index: 100;
    }
    .hamburger {
        display: block;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .blog-featured {
        flex-direction: column;
    }
    .blog-featured .blog-img {
        width: 100%;
        aspect-ratio: 16/9;
    }
    .inquiry-card {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    .hero-stats {
        gap: 2rem;
    }
}

/* ≤767px — large mobile */
@media (max-width: 767px) {
    .hero-content {
        padding-top: 5rem !important;
    }
    .section {
        padding: 3rem 0;
    }
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    .stat-num {
        font-size: 2rem;
    }
    .testi-wrap {
        padding: 2.5rem 1.25rem;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .form-grp-row {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-desc {
        max-width: 100%;
    }
    .blog-featured .blog-title {
        font-size: 1.25rem;
    }
    .detail-grid {
        gap: 1.5rem;
    }
    .hero-inner {
        padding-bottom: 1.75rem;
    }
}

/* ≤575px — small mobile */
@media (max-width: 575px) {
    .hero-content {
        padding-top: 1.75rem;
    }
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-inner {
        min-height: 32vh;
        padding-bottom: 1.5rem;
    }
    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.25rem;
    }
    .stat-num {
        font-size: 1.75rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .nav-brand {
        font-size: 1.25rem;
    }
    .section {
        padding: 2.5rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .package-body {
        padding: 1rem;
    }
    .package-foot {
        padding: 0.75rem 1rem;
    }
    .testi-wrap {
        padding: 2rem 1rem;
    }
    .gallery-grid {
        gap: 0.625rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .lb-overlay {
        padding: 1rem;
    }
    .lb-inner {
        border-radius: 0.5rem;
    }
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    .inquiry-card {
        padding: 1.25rem;
    }
}

/* ≤400px — very small */
@media (max-width: 400px) {
    .hero-content {
        padding-top: 1.75rem !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    .stat-num {
        font-size: 2rem;
    }
    .footer-grid > div:first-child {
        grid-column: auto;
    }
}
