/* ============================================================
   KASHMIR SHAMA TRAVELS — CUSTOM STYLESHEET
   Premium Travel Agency Design
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #0B2545;
    --secondary: #1B4F8A;
    --accent: #F4A261;
    --accent-dark: #E08A3C;
    --gold: #F4C542;
    --gold-dark: #D4A017;
    --crimson: #8B1A0E;
    --crimson-dark: #6B1208;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(11, 37, 69, 0.10);
    --shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

/* ---------- GLOBAL ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-pad-sm {
    padding: 50px 0;
}

/* ---------- TOP BAR — Crimson/Maroon (distinct from navy navbar) ---------- */
.top-bar {
    background: linear-gradient(135deg, #F4C542 0%, #E08A3C 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 2px solid #F4C542;
}

.top-bar .contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar .contact-info i {
    color: #F4C542;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.92);
}

.top-bar a:hover {
    color: #F4C542;
}

/* Social icons in top bar */
.top-bar .social-link {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-bar .social-link:hover {
    background: #F4C542;
    color: #6B1208;
    transform: translateY(-2px);
}

/* ---------- NAVBAR — Deep Navy (clearly separate from crimson toolbar) ---------- */
#mainNav {
    background: rgba(11, 37, 69, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(244, 197, 66, 0.2);
}

#mainNav.scrolled {
    background: #0B2545;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

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

.brand-icon {
    font-size: 2rem;
    color: #F4C542;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: #F4C542;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F4C542 !important;
    background: rgba(244, 197, 66, 0.1);
}

.btn-accent {
    background: linear-gradient(135deg, #F4C542, #E08A3C);
    color: #0B2545 !important;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #E08A3C, #F4C542);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.3);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---------- SECTION LABELS ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 162, 97, 0.12);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(244, 162, 97, 0.3);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 95vh;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.82) 0%, rgba(27, 79, 138, 0.6) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(11, 37, 69, 0.9) 0%,
            rgba(11, 37, 69, 0.7) 50%,
            rgba(11, 37, 69, 0.4) 100%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 162, 97, 0.2);
    border: 1px solid rgba(244, 162, 97, 0.5);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 .highlight {
    color: #F4C542;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 24px;
    width: fit-content;
}

.hero-stat {
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    position: relative;
}

.hero-stat+.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: #F4C542;
    display: block;
    line-height: 1.1;
}

.hero-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    display: block;
    margin-top: 3px;
}

/* ---------- HERO FORM — Animated Lead Card ---------- */
@keyframes formSlideIn {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes formFieldAppear {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 197, 66, 0.55);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(244, 197, 66, 0);
    }
}

.hero-form-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 22px;
    border: none;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 420px;
    width: 100%;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* Gold top accent line */
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4C542, #E08A3C, #F4C542);
}

.animate-form-slide {
    animation: formSlideIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-form-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-form-card>p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #F4C542, #E08A3C);
    color: #0B2545;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    animation: pulseGold 2.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Staggered field animations */
.hero-form-card .form-field-wrap:nth-child(1) {
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 0.65s;
    opacity: 0;
}

.hero-form-card .form-field-wrap:nth-child(2) {
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 0.80s;
    opacity: 0;
}

.hero-form-card .form-field-wrap:nth-child(3) {
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 0.95s;
    opacity: 0;
}

.hero-form-card .form-field-wrap:nth-child(4) {
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 1.10s;
    opacity: 0;
}

.form-field-wrap {
    position: relative;
    margin-bottom: 11px;
}

.form-field-wrap .form-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #F4C542;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.form-field-wrap .form-control,
.form-field-wrap .form-select {
    padding-left: 38px;
    height: 46px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    font-size: 13.5px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field-wrap .form-control:focus,
.form-field-wrap .form-select:focus {
    border-color: #F4C542;
    box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.25);
    outline: none;
    background: #fff;
}

.btn-form-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #F4C542 0%, #E08A3C 100%);
    color: #0B2545;
    border: none;
    border-radius: 11px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
    letter-spacing: 0.02em;
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 1.25s;
    opacity: 0;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(228, 138, 60, 0.5);
}

.btn-form-submit:active {
    transform: translateY(0);
}

.form-trust-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    animation: formFieldAppear 0.5s ease both;
    animation-delay: 1.4s;
    opacity: 0;
}

.form-trust-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-trust-bar i {
    color: #F4C542;
    font-size: 12px;
}

/* ---------- PACKAGES CARD ---------- */
.package-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.package-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.pkg-badge.accent {
    background: var(--accent);
    color: var(--white);
}

.pkg-badge.primary {
    background: var(--primary);
    color: var(--white);
}

.pkg-badge.success {
    background: #10b981;
    color: var(--white);
}

.pkg-badge.info {
    background: #0ea5e9;
    color: var(--white);
}

.pkg-badge.warning {
    background: #f59e0b;
    color: var(--white);
}

.pkg-badge.secondary {
    background: #6b7280;
    color: var(--white);
}

.pkg-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(11, 37, 69, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.package-card .card-body {
    padding: 20px;
}

.package-card .card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.package-card .card-text {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.hl-tag {
    background: rgba(11, 37, 69, 0.06);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-card .card-footer {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price .from {
    font-size: 11px;
    color: var(--text-muted);
}

.pkg-price .price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-dark);
    font-family: var(--font-display);
}

.pkg-price .per {
    font-size: 11px;
    color: var(--text-muted);
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transform: rotate(-5deg) scale(1.05);
}

.feature-card h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--primary);
}

.testimonials .section-label {
    background: rgba(244, 162, 97, 0.15);
    border-color: rgba(244, 162, 97, 0.3);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.review-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.review-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.review-city {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.review-stars {
    color: var(--accent);
    font-size: 13px;
}

.review-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 0;
}

.review-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: -10px;
}

/* ---------- GALLERY ---------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.8), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .g-label {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.gallery-overlay .g-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.gallery-item:hover .g-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- QUICK CONTACT ---------- */
.quick-contact {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.form-control.is-valid {
    border-color: #10b981;
}

/* ---------- BREADCRUMB ---------- */
.page-hero {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.9) 0%, rgba(27, 79, 138, 0.8) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200') center/cover no-repeat;
    padding: 80px 0 50px;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    font-size: 13px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- ABOUT ---------- */
.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-exp-badge .exp-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-badge .exp-label {
    font-size: 11px;
    font-weight: 500;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ---------- PACKAGE DETAIL ---------- */
.detail-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.itinerary-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.itinerary-item:last-child {
    border-bottom: none;
}

.day-badge {
    background: var(--primary);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.itinerary-content h6 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 6px;
}

.itinerary-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.inc-exc-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
}

.inc-exc-card h5 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.inc-list,
.exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-list li,
.exc-list li {
    padding: 5px 0 5px 24px;
    position: relative;
    font-size: 13px;
}

.inc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.exc-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.sticky-inquiry {
    position: sticky;
    top: 90px;
}

.inquiry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.inquiry-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
}

.inquiry-card-header h5 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--white);
}

.inquiry-card-body {
    padding: 24px;
}

.price-tag {
    background: rgba(244, 162, 97, 0.1);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.price-tag .from-label {
    font-size: 12px;
    color: var(--text-muted);
}

.price-tag .main-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-dark);
    display: block;
}

.price-tag .per-person {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---------- CONTACT ---------- */
.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item-text .label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-text a,
.contact-item-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.contact-item-text a:hover {
    color: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.footer-about {
    font-size: 13.5px;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13.5px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 6px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 6px 24px rgba(37, 211, 102, 0.45);
    }
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--white) !important;
    text-align: center;
    padding: 13px;
    font-weight: 600;
    font-size: 14px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(244, 162, 97, 0.3);
}

.mobile-call-btn:hover {
    background: var(--accent-dark);
}

/* ---------- ALERTS & MISC ---------- */
.alert-success-custom {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
}

.alert-error-custom {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #7f1d1d;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

/* ---------- TERMS / PRIVACY ---------- */
.legal-content h2,
.legal-content h3 {
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.8;
}

/* ---------- MAP EMBED ---------- */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hero {
        min-height: 85vh;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-pad {
        padding: 60px 0;
    }

    .about-exp-badge {
        right: 0;
        bottom: -15px;
        width: 90px;
        height: 90px;
    }

    .about-exp-badge .exp-num {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 80vh;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section-pad {
        padding: 50px 0;
    }

    body {
        padding-bottom: 56px;
    }

    .whatsapp-float {
        bottom: 72px;
    }

    .contact-form-card {
        padding: 22px;
    }

    .about-img-wrap img {
        height: 280px;
    }

    .about-exp-badge {
        display: none;
    }

    .inquiry-card {
        margin-top: 24px;
    }

    .hero-form-card {
        max-width: 100%;
        padding: 24px 18px;
    }
}

.footer-credit {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-credit:hover {
    color: #F4C542;
}
/* Submit button loading spinner */
@keyframes spin-anim { to { transform: rotate(360deg); } }
.spin-anim { display: inline-block; animation: spin-anim 0.7s linear infinite; }
