﻿:root {
    --primary: #E8521A;
    --primary-lt: #FFF0EA;
    --primary-dk: #C94415;
    --blue: #2563EB;
    --blue-lt: #EEF4FF;
    --dark: #0F172A;
    --mid: #1E293B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --muted: #64748B;
    --border: rgba(0,0,0,0.08);
    --gold: #F59E0B;
}




/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
    background: var(--light);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .breadcrumb-bar a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb-bar a:hover {
            color: var(--primary);
        }

    .breadcrumb-bar span {
        font-size: 13px;
        color: var(--muted);
        margin: 0 8px;
    }

    .breadcrumb-bar .current {
        font-size: 13px;
        color: var(--dark);
        font-weight: 600;
    }

/* ─── DISCLAIMER BANNER ─── */
.disclaimer-banner {
    background: var(--primary-lt);
    border-bottom: 2px solid var(--primary);
    padding: 12px 0;
}

    .disclaimer-banner p {
        margin: 0;
        font-size: 14px;
        color: #7C2D12;
        text-align: center;
        line-height: 1.6;
    }

/* ─── HERO ─── */
.pkg-hero {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-img-wrap {
    height: 460px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-img-wrap {
        height: 260px;
    }
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.gi-comfort {
    background: linear-gradient(135deg, #1a2744 0%, #2d4a8a 60%, #1a3a5a 100%);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.85) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 48px;
}

@media (max-width: 576px) {
    .hero-content {
        padding: 24px 20px;
    }
}

.pkg-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,82,26,0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.pkg-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.pkg-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    max-width: 520px;
}

/* ─── STICKY PRICE BAR ─── */
.price-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 7px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.price-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.price-bar-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 13px;
    color: var(--muted);
}

.price-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-note {
    font-size: 12px;
    color: var(--muted);
}

.price-bar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-book {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 100px;
    border: none;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    white-space: nowrap;
}

    .btn-book:hover {
        background: var(--primary-dk);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(232,82,26,0.35);
        color: #fff;
    }

.btn-ask {
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    padding: 11px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

    .btn-ask:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

/* ─── SHARED ─── */
.sec-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

    .sec-title em {
        font-style: italic;
        color: var(--primary);
    }

.hr-accent {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border: none;
    border-radius: 2px;
    margin: 12px 0 24px;
}

.body-text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
}

/* ─── INCLUDES ─── */
.includes-card {
    background: var(--light);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.inc-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.inc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.inc-dot-fixed {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}

.inc-dot-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--blue);
    font-weight: 800;
    flex-shrink: 0;
}

.inc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .inc-item:last-child {
        border-bottom: none;
    }

.inc-check-fixed {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}

.inc-check-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}

.inc-row {
    flex: 1;
}

.inc-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.inc-text {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.4;
}

.badge-fixed {
    font-size: 10px;
    background: var(--primary-lt);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.badge-custom {
    font-size: 10px;
    background: var(--blue-lt);
    color: var(--blue);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.inc-note {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.inc-custom-note {
    font-size: 14px;
    color: var(--blue);
    line-height: 1.55;
    font-style: italic;
}

.inc-disclaimer {
    background: var(--blue-lt);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 20px;
    border-left: 3px solid var(--blue);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .inc-disclaimer p {
        font-size: 14px;
        color: #1E3A5F;
        line-height: 1.75;
        margin: 0;
    }

/* ─── ITINERARY ─── */
.day-card {
    background: var(--light);
    border-radius: 18px;
    padding: 22px 26px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .day-card:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

.day-num {
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1.2;
}

    .day-num span {
        font-size: 9px;
        font-weight: 500;
        opacity: 0.75;
    }

.day-content {
    flex: 1;
}

.day-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.day-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.day-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.day-tag {
    font-size: 11px;
    background: var(--primary-lt);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.itin-disclaimer {
    background: #FFFBEB;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border-left: 3px solid var(--gold);
    font-size: 14px;
    color: #78350F;
    line-height: 1.7;
}

/* ─── NOT INCLUDED ─── */
.not-included-grid {
    background: var(--light);
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 576px) {
    .not-included-grid {
        grid-template-columns: 1fr;
    }
}

.ni-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--muted);
}

.ni-x {
    color: #CBD5E1;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── GALLERY ─── */
.gallery-section {
    padding: 60px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    .gallery-main {
        grid-column: span 2;
    }
}

.gallery-main {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(255,255,255,0.3);
    transition: transform 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-img:hover {
        transform: scale(1.04);
    }

    .gallery-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gi-1 {
    background: linear-gradient(135deg, #1a2744, #2d4a8a);
}

.gi-2 {
    background: linear-gradient(135deg, #1a3a2a, #2d6a4a);
}

.gi-3 {
    background: linear-gradient(135deg, #3a1a1a, #6a2d2d);
}

.gi-4 {
    background: linear-gradient(135deg, #2a1a3a, #4a2d6a);
}

.gi-5 {
    background: linear-gradient(135deg, #1a3a3a, #2d6a6a);
}

/* ─── HOTEL ─── */
.hotel-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.hotel-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.hotel-body {
    padding: 28px 24px;
}

.hotel-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.hotel-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.hotel-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-feat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--dark);
    border: 1px solid var(--border);
}

/* ─── TRUST ─── */
.trust-card {
    background: var(--light);
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.3s;
}

    .trust-card:hover {
        transform: translateY(-4px);
    }

.trust-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.trust-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── RELATED ─── */
.related-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 22px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}

    .related-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

.related-tier {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
}

.related-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.related-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.related-diff {
    background: var(--light);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

    .related-diff strong {
        color: var(--dark);
    }

.btn-related {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-related:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

/* ─── BOOKING FORM ─── */
.booking-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    color: #fff;
}

.booking-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 44px 40px;
}

@media (max-width: 576px) {
    .booking-card {
        padding: 30px 20px;
    }
}

.booking-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

    .booking-title em {
        font-style: italic;
        color: var(--primary);
    }

.booking-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.75;
}

.f-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

.f-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    margin-bottom: 18px;
}

    .f-input::placeholder {
        color: rgba(255,255,255,0.28);
    }

    .f-input:focus {
        border-color: var(--primary);
        background: rgba(232,82,26,0.08);
    }

.f-select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    margin-bottom: 18px;
    transition: border-color 0.25s;
}

    .f-select:focus {
        border-color: var(--primary);
    }

    .f-select option {
        background: #1E293B;
    }

.btn-submit-form {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 15px;
    border-radius: 100px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
}

    .btn-submit-form:hover {
        background: var(--primary-dk);
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(232,82,26,0.4);
    }

.f-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

/* Package summary */
.pkg-summary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 24px 22px;
    margin-bottom: 20px;
}

.ps-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
}

    .ps-row:last-child {
        border-bottom: none;
    }

.ps-label {
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    margin-right: 10px;
}

.ps-value {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.ps-price {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

.ps-custom {
    color: var(--blue);
    font-size: 11px;
    font-style: italic;
}

.ps-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
    line-height: 1.65;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 12px;
}

/* Form success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 16px;
}

.form-success-icon {
    font-size: 52px;
    margin-bottom: 14px;
}

.form-success-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.form-success-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* Sidebar sticky */
.sidebar-sticky {
    position: sticky;
    top: 72px;
}

/* ─── MODAL ─── */
#successModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

    #successModal.show {
        display: flex !important;
    }

.modal-box {
    background: #1E293B;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .modal-close:hover {
        background: rgba(255,255,255,0.15);
    }

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8521A, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 0 0 12px rgba(232,82,26,0.12);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.modal-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

.btn-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.25s;
}

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(37,211,102,0.35);
        color: #fff;
    }

.btn-modal-close {
    display: block;
    width: 100%;
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-modal-close:hover {
        border-color: rgba(255,255,255,0.3);
        color: rgba(255,255,255,0.7);
    }

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 576px) {
    .price-bar-right .btn-ask {
        display: none;
    }

    .hero-img-wrap {
        height: 240px;
    }
}


/* ─── CONTACT FORM ─── */
.form-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .form-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(232,82,26,0.12) 0%, transparent 65%);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }
.inc-note
.form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 56px 52px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .form-card {
        padding: 36px 24px;
    }
}

.form-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

    .form-title em {
        font-style: italic;
        color: var(--primary);
    }

.form-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}

    .form-control-custom::placeholder {
        color: rgba(255,255,255,0.3);
    }

    .form-control-custom:focus {
        border-color: var(--primary);
        background: rgba(232,82,26,0.08);
    }

.form-select-custom {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 0px 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    transition: border-color 0.25s;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

    .form-select-custom:focus {
        border-color: var(--primary);
    }

    .form-select-custom option {
        background: #1E293B;
        color: #fff;
    }

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 100px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}

    .btn-submit:hover {
        background: var(--primary-dk);
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(232,82,26,0.4);
    }

.form-note {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-top: 16px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.form-success-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.form-success-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.form-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
}

.fi-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

    .fi-item:last-child {
        margin-bottom: 0;
    }

.fi-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232,82,26,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fi-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.fi-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}


.form-section .nice-select {
    width: 100%;
    height: 50px !important;
    line-height: 49px !important;
}

.form-section .form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 10px 20px !important;
    font-size: 16px;
    color: #fff;
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}

.form-section .form-sub {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 8px !important;
    font-weight: 300;
}

.form-section .form-group {
    margin-bottom: 8px !important;
}

.form-section .btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 9px 32px;
    border-radius: 100px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}
