
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0b2341; /* Premium deep navy brush stroke color */
    --primary-gradient: linear-gradient(135deg, #0b2341 0%, #00b4d8 100%); /* Navy to turquoise cyan lake gradient */
    --accent: #f8961e; /* Sunset orange-gold accent */
    --accent-hover: #f3722c; /* Warm sunset hover orange */
    --whatsapp: #25D366;
    --whatsapp-hover: #20ba5a;
    --dark: #0a192f;
    --light: #f4f9fc;
    --white: #ffffff;
    --gray-100: #eef5f9;
    --gray-200: #d6e4ec;
    --gray-600: #4a5b6c;
    --text-primary: #1c2d3d;
    --text-muted: #5e768d;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 5px rgba(11,35,65,0.06);
    --shadow-md: 0 5px 25px rgba(11,35,65,0.09);
    --shadow-lg: 0 15px 35px rgba(11,35,65,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Header & Premium Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-custom.scrolled .nav-link {
    color: var(--primary) !important;
}

.navbar-custom.scrolled .navbar-brand img {
    filter: none;
}

.navbar-custom.scrolled .btn-nav-inquiry {
    background-color: var(--accent);
    color: var(--primary) !important;
}

.navbar-brand img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary) !important;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav-inquiry {
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px !important;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-nav-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--accent-hover);
    color: var(--white) !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 170px 0 130px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(7, 19, 36, 0.93) 0%,
        rgba(11, 29, 58, 0.82) 45%,
        rgba(17, 45, 78, 0.88) 100%
    );
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to top, var(--light) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.12;
}

.hero-title span {
   
  
    display: inline-block;
   color: #ff9f24;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 600px;
    line-height: 1.7;
}

/* Hero CTA Buttons */
.hero-btn-primary {
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%);
    border: none;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(248, 150, 30, 0.45);
    transition: var(--transition);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(248, 150, 30, 0.55);
    color: #fff !important;
}

.hero-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.hero-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

/* Hero Stats Row */
.hero-stats-row {
    align-items: center;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-item strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f8961e;
    line-height: 1;
}

.hero-stat-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* Hero Call Banner */
.hero-call-banner {
    padding: 14px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(4px);
}

.hero-call-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(248, 150, 30, 0.5);
}

.hero-call-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-call-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: #f8961e !important;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.hero-call-number:hover {
    color: #ffd270 !important;
}


/* Solid & Readable Quick Form Card */
.glass-card {
    background: rgba(5, 15, 30, 0.92);
    border: 2px solid rgba(248, 150, 30, 0.55);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(248, 150, 30, 0.1) inset;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card:hover {
    border-color: rgba(248, 150, 30, 0.8);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 30px rgba(248, 150, 30, 0.15);
}

.glass-card h3 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 800;
    text-shadow: none;
}

.glass-card .form-control,
.glass-card .form-select {
    background: rgba(255, 255, 255, 0.97) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #0d1f38 !important;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.glass-card .form-control::placeholder {
    color: #64748b !important;
    opacity: 1;
}

.glass-card .form-control:focus,
.glass-card .form-select:focus {
    background: #ffffff !important;
    border-color: var(--accent);
    color: #0d1f38 !important;
    box-shadow: 0 0 0 3px rgba(248, 150, 30, 0.35);
}

.glass-card option {
    background: #ffffff;
    color: #0d1f38;
}

.glass-card label.form-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    margin-bottom: 5px;
}

/* Dynamic Interactive Animations */
@keyframes orangePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 159, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 36, 0);
    }
}

.pulse-orange {
    animation: orangePulse 2s infinite;
}

.link-hover-gold {
    transition: var(--transition);
}

.link-hover-gold:hover {
    color: var(--white) !important;
    text-shadow: 0 2px 8px rgba(255, 159, 36, 0.6);
}

/* Value Highlights / Badges */
.highlight-badge {
    background: linear-gradient(135deg, rgba(248, 150, 30, 0.2) 0%, rgba(248, 150, 30, 0.1) 100%);
    border: 1px solid rgba(248, 150, 30, 0.5);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #ffd270;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(248, 150, 30, 0.2);
    backdrop-filter: blur(4px);
}

.highlight-badge i {
    color: #f8961e;
    font-size: 15px;
}

/* Floating Tour Highlights Banner */
.floating-features-strip {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 25px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.feature-item {
    text-align: center;
    border-right: 1px solid var(--gray-200);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon-wrap {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-5px);
}

.feature-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

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

/* Premium About Us Section Styles */
.about-section-wrap {
    position: relative;
    overflow: hidden;
}

.section-subtitle-premium {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title-premium {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.about-lead-text {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
}

.about-trust-item {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.about-trust-item:hover {
    transform: translateY(-3px);
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.bg-warning-light {
    background-color: rgba(255, 159, 36, 0.15) !important;
}

.bg-success-light {
    background-color: rgba(37, 211, 102, 0.15) !important;
}

.about-img-frame {
    position: relative;
    display: inline-block;
    padding: 0 20px 20px 0;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    height: 90%;
    border: 8px solid var(--accent);
    border-radius: var(--border-radius);
    z-index: 1;
}

.main-about-img {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.about-img-frame:hover .main-about-img {
    transform: translate(-10px, -10px);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    z-index: 3;
    min-width: 130px;
    text-align: center;
    border: 2px solid var(--white);
}

/* Why Choose Us Section Styles */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-card {
    background: var(--light);
    border: 1px solid var(--gray-200) !important;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: var(--accent) !important;
    box-shadow: var(--shadow-md);
}

.bg-info-light {
    background-color: rgba(0, 180, 216, 0.15) !important;
}

.text-info {
    color: #00b4d8 !important;
}

.why-img-frame {
    position: relative;
    display: inline-block;
    padding: 0 0 20px 20px;
    width: 100%;
}

.why-img-frame::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 90%;
    border: 8px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: 1;
}

.main-why-img {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.why-img-frame:hover .main-why-img {
    transform: translate(10px, -10px);
}

/* Beautiful Tour Package Cards */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 114, 175, 0.3);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: #0a1c33;
    line-height: 0;
}

.card-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
}

.package-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(17, 45, 78, 0.9);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.package-price-tag span {
    color: var(--accent);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    color: var(--accent);
}

.card-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Card Triple Buttons Setup */
.card-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-card-action {
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-whatsapp-card {
    background-color: var(--whatsapp);
    color: var(--white);
    border: none;
}

.btn-whatsapp-card:hover {
    background-color: var(--whatsapp-hover);
    color: var(--white);
}

.btn-inquiry-card {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
}

.btn-inquiry-card:hover {
    background-color: var(--accent-hover);
    color: var(--primary);
}

.btn-view-card {
    grid-column: span 2;
    background-color: var(--gray-100);
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.btn-view-card:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Section Common Styling */
.section-padding {
    padding: 80px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Accordion Styling (Itinerary / FAQ) */
.custom-accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.custom-accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    user-select: none;
}

.custom-accordion-header i {
    transition: var(--transition);
}

.custom-accordion-item.active {
    border-color: rgba(11, 35, 65, 0.15);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent) !important;
}

.custom-accordion-item.active .custom-accordion-header {
    background-color: #f4f9fc;
    color: var(--primary);
}

.custom-accordion-item.active .custom-accordion-header .chevron-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.custom-accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.custom-accordion-item.active .custom-accordion-body {
    padding: 22px 25px;
    max-height: 1000px;
    border-top: 1px solid rgba(11, 35, 65, 0.05);
}

/* FAQ Graphic Frame Styling */
.faq-img-frame {
    position: relative;
    border-radius: 20px;
}

.faq-img-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.faq-img-frame:hover::before {
    transform: translate(-5px, -5px);
}

.faq-badge-trust {
    border: 1px solid rgba(11, 35, 65, 0.08);
    animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Tab Controls for Details page */
.details-tabs-strip {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
}

.details-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.details-tab-btn:hover,
.details-tab-btn.active {
    color: var(--primary);
}

.details-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
}

.details-tab-content {
    display: none;
}

.details-tab-content.active {
    display: block;
}

/* Detail Side Lead Widget */
.detail-lead-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}

.widget-price-box {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.widget-price-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.widget-price-amount {
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
}

.widget-price-amount span {
    color: var(--accent);
}

/* Inclusions & Exclusions styling */
.list-inclusion, .list-exclusion {
    list-style: none;
}

.list-inclusion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.list-inclusion li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--whatsapp);
}

.list-exclusion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.list-exclusion li::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #e53e3e;
}

/* Lead Generation Modal Form */
.modal-content-custom {
    border-radius: var(--border-radius);
    border: none;
    overflow: hidden;
}

.modal-header-custom {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 25px;
    border-bottom: none;
    position: relative;
}

.modal-header-custom h5 {
    color: var(--white);
    font-weight: 800;
}

.modal-body-custom {
    padding: 30px;
}

/* Floating Actions Bar (Mobile Sticky) */
.sticky-actions-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    z-index: 999;
    border-top: 1px solid var(--gray-200);
}

.sticky-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
    border: none;
}

.sticky-action-btn i {
    font-size: 18px;
}

.sticky-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.sticky-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: var(--white);
}

.sticky-call {
    background-color: var(--accent);
    color: var(--primary);
}

.sticky-call:hover {
    background-color: var(--accent-hover);
    color: var(--primary);
}

.sticky-inquire {
    background-color: var(--primary);
    color: var(--white);
}

.sticky-inquire:hover {
    background-color: #0c2038;
    color: var(--white);
}

/* Custom dynamic overlay notifications */
.toast-container-custom {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1060;
}

/* Footer layout styling */
.footer-wrap {
    background-color: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .floating-features-strip {
        margin-top: 30px;
    }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .feature-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    body {
        padding-bottom: 70px; /* Offset for sticky bar */
    }
}

/* Floating Conversion & Navigation Buttons */
.floating-actions-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050;
    transition: var(--transition);
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 24px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-call {
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%);
    box-shadow: 0 8px 20px rgba(248, 150, 30, 0.4);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.float-top {
    background: #0b2341;
    box-shadow: 0 8px 20px rgba(11, 35, 65, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.float-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* 
========================================================================
   13. PREMIUM INTERACTIVE ADVENTURE GALLERY & LIGHTBOX
========================================================================
*/

/* Filter Buttons */
.btn-gallery-filter {
    background-color: var(--white);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.btn-gallery-filter:hover {
    border-color: var(--accent);
    color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-gallery-filter.active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

/* Gallery Grid and Item Wrappers */
.gallery-grid-container {
    transition: all 0.5s ease;
}

/* Custom Grid for Desktop when Swiper is disabled */
@media (min-width: 992px) {
    .gallery-grid-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem; /* Matches Bootstrap g-4 spacing */
    }
    .gallery-grid-container .swiper-slide {
        width: auto !important; /* Override Swiper inline width */
        margin-right: 0 !important; /* Override Swiper inline gap */
        height: auto !important;
    }
}

.gallery-item-wrap {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-wrap.hidden {
    opacity: 0;
    transform: scale(0.85);
    position: absolute;
    width: 0;
    height: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    pointer-events: none;
}

/* Interactive Gallery Card */
.gallery-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 35, 65, 0.05);
    height: 300px;
}

.gallery-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.15, 0.85, 0.35, 1);
}

/* Dynamic Tags */
.gallery-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(11, 35, 65, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sunset-inspired Hover Overlay Overlay */
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 35, 65, 0.98) 0%, rgba(11, 35, 65, 0.4) 50%, rgba(248, 150, 30, 0.15) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 54px;
    height: 54px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(248, 150, 30, 0.4);
}

.overlay-details {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card-altitude {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gallery-card-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Hover Interactions */
.gallery-card:hover .gallery-thumbnail {
    transform: scale(1.12);
}

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

.gallery-card:hover .overlay-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-card:hover .overlay-details {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(11, 35, 65, 0.15);
}

/* Premium Lightbox Modal Style */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrap {
    position: relative;
    max-width: 85%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-lightbox.show .lightbox-content-wrap {
    transform: scale(1);
}

.lightbox-content-wrap img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--white);
    max-width: 600px;
}

.lightbox-tag {
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.lightbox-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.lightbox-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

/* Close & Navigation Buttons */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1060;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1055;
    backdrop-filter: blur(5px);
}

.lightbox-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(248, 150, 30, 0.3);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Mobile Responsive Optimization for Lightbox */
@media (max-width: 768px) {
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 36px;
    }
    .lightbox-content-wrap {
        max-width: 90%;
    }
    .lightbox-title {
        font-size: 18px;
    }
    .lightbox-desc {
        font-size: 12px;
    }
}

/* 
========================================================================
   14. PREMIUM DARK-THEMED BRAND FOOTER STYLING
========================================================================
*/

.footer-section {
    position: relative;
    background-color: #071527; /* Ultra premium dark navy */
    padding: 85px 0 35px;
    color: var(--white);
    font-family: var(--font-body);
    overflow: hidden;
}

/* Glowing top gradient bar */
.footer-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #00b4d8 50%, var(--accent-hover) 100%);
    box-shadow: 0 2px 20px rgba(0, 180, 216, 0.4);
}

.footer-logo {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand-desc {
    font-size: 14px;
    color: #a5b9cc;
    line-height: 1.7;
    font-weight: 400;
}

/* Social Icon Buttons */
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a5b9cc;
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    color: var(--primary);
    transform: translateY(-4px) rotate(360deg);
}

.social-whatsapp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-phone:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(248, 150, 30, 0.3);
}

.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

/* Title Headers */
.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

/* Links lists grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links-list {
    list-style: none;
}

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

.footer-links-list li a {
    font-size: 14px;
    color: #a5b9cc;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.link-arrow {
    font-size: 10px;
    margin-right: 8px;
    color: var(--accent);
    transition: var(--transition);
    opacity: 0.7;
}

.footer-links-list li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links-list li a:hover .link-arrow {
    transform: scale(1.2);
    color: #00b4d8;
    opacity: 1;
}

/* Contact Info list */
.footer-contact-list {
    list-style: none;
}

.contact-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(248, 150, 30, 0.12);
    border: 1px solid rgba(248, 150, 30, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    min-width: 36px;
}

.contact-text {
    font-size: 14px;
    color: #a5b9cc;
    line-height: 1.5;
}

.contact-text.text-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Encrypted Payments Container styling */
.footer-pay-box {
    background-color: rgba(11, 35, 65, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pay-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.pay-desc {
    font-size: 12px;
    color: #8da4b8;
    line-height: 1.5;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d6e4ec;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pay-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: var(--accent);
}

/* Footer Bottom section */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text,
.secure-cert-text {
    font-size: 13px;
    color: #7d96ac;
}

.secure-cert-text {
    display: flex;
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .footer-section {
        padding: 65px 0 95px; /* Extra bottom offset for mobile fixed bars */
    }
}

@media (max-width: 767px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* 
========================================================================
   15. PREMIUM HIGH-CONVERTING BOTTOM CONTACT SECTION
========================================================================
*/

.bg-white-5 {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.bg-white-5:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
    border-color: rgba(248, 150, 30, 0.3) !important;
}

.border-white-10 {
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
}

.bg-navy-card {
    background: #0b2341 !important; /* Premium midnight navy */
    box-shadow: 0 20px 50px rgba(7, 19, 36, 0.5) !important;
}

.border-orange-gradient {
    border: 3px solid var(--accent) !important;
}

/* High contrast white background inputs */
.form-control-premium {
    background-color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    color: #112d4e !important; /* Extremely high legibility deep navy text */
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    transition: var(--transition) !important;
}

.form-control-premium::placeholder {
    color: #6e8499 !important;
    opacity: 0.8 !important;
}

.form-control-premium:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(248, 150, 30, 0.25) !important;
    background-color: var(--white) !important;
    color: #112d4e !important;
}

/* Specific Select dropdown text behavior */
select.form-control-premium {
    color: #112d4e !important;
    cursor: pointer;
}

/* CTA Pulse Button styling */
.btn-orange-pulse {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
    border: none !important;
    color: var(--primary) !important;
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
}

.btn-orange-pulse:hover {
    transform: translateY(-2px) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(248, 150, 30, 0.4) !important;
}

.btn-orange-pulse:active {
    transform: translateY(1px) !important;
}

/* 
========================================================================
   14. LIGHT CONTACT SECTION - Differentiated from Dark Footer
========================================================================
*/

.contact-section-light {
    background: linear-gradient(160deg, #fff9f0 0%, #ffffff 60%, #f0f8ff 100%);
}

/* ========================================================================
   14. PREMIUM SPLIT-PANEL CONTACT SECTION
======================================================================== */

/* Utility: extra padding */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* LEFT dark panel */
.contact-panel-dark {
    background: linear-gradient(150deg, #071324 0%, #0a1c33 60%, #0d2748 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* RIGHT white panel */
.contact-panel-light {
    background: #ffffff;
    min-height: 600px;
    border-left: 1px solid #f0f0f0;
}

/* Eyebrow label for dark panel */
.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 150, 30, 0.15);
    color: #f8961e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(248, 150, 30, 0.3);
    margin-bottom: 18px;
}

/* Eyebrow label for white panel */
.contact-eyebrow-light {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 150, 30, 0.1);
    color: #f8961e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(248, 150, 30, 0.25);
    margin-bottom: 14px;
}

/* Title inside dark panel */
.contact-panel-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-panel-title span {
    color: #f8961e;
}

/* Description text inside dark panel */
.contact-panel-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact detail link cards */
.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.contact-detail-card:hover {
    background: rgba(248, 150, 30, 0.12);
    border-color: rgba(248, 150, 30, 0.4);
    transform: translateX(6px);
}

.contact-detail-card.no-link:hover {
    transform: none;
}

/* Colored icon circles */
.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.contact-detail-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.contact-detail-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.contact-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    transition: var(--transition);
}

.contact-detail-card:hover .contact-arrow {
    color: #f8961e;
}

/* Right white panel form title */
.contact-form-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #071324;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Input label */
.contact-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

/* Icon-prefixed input wrapper */
.contact-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-icon {
    position: absolute;
    left: 14px;
    color: #f8961e;
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}

/* Light panel inputs */
.contact-form-input {
    padding-left: 40px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #fafafa !important;
    transition: var(--transition) !important;
    height: 48px;
}

.contact-form-input::placeholder {
    color: #9ca3af !important;
}

.contact-form-input:focus {
    border-color: #f8961e !important;
    box-shadow: 0 0 0 3px rgba(248, 150, 30, 0.15) !important;
    background: #fff !important;
}

/* Submit button - orange gradient */
.contact-submit-btn {
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%) !important;
    border: none !important;
    color: #fff !important;
    font-size: 15px;
    border-radius: 10px;
    transition: var(--transition) !important;
    box-shadow: 0 6px 20px rgba(248, 150, 30, 0.35);
}

.contact-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(248, 150, 30, 0.45) !important;
    color: #fff !important;
}

/* ========================================================================
   15. PREMIUM INQUIRY MODAL
======================================================================== */

.modal-premium {
    max-width: 480px;
}

.modal-premium-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: #ffffff;
}

/* Header - dark navy with orange accent */
.modal-premium-header {
    background: linear-gradient(135deg, #071324 0%, #0d2748 60%, #0a1c33 100%);
    padding: 28px 30px 24px;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs in header */
.modal-blob-1 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(248, 150, 30, 0.25) 0%, transparent 70%);
    top: -60px;
    right: -40px;
    border-radius: 50%;
    pointer-events: none;
}

.modal-blob-2 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    bottom: -20px;
    left: 20px;
    border-radius: 50%;
    pointer-events: none;
}

/* Orange eyebrow pill */
.modal-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 150, 30, 0.18);
    border: 1px solid rgba(248, 150, 30, 0.4);
    color: #f8961e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.modal-premium-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}

.modal-premium-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-bottom: 0;
}

.modal-package-name-title {
    color: #f8961e;
    font-weight: 700;
}

/* Custom close button */
.modal-close-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background: rgba(248, 150, 30, 0.3);
    border-color: rgba(248, 150, 30, 0.5);
    color: #f8961e;
}

/* Body - clean white */
.modal-premium-body {
    background: #ffffff;
    padding: 28px 30px 24px;
}

/* Icon-prefixed input group */
.modal-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-input-icon {
    position: absolute;
    left: 14px;
    color: #f8961e;
    font-size: 14px;
    z-index: 5;
    pointer-events: none;
}

/* Modal form inputs */
.modal-form-input {
    padding-left: 40px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #f9fafb !important;
    transition: var(--transition) !important;
    height: 46px;
}

.modal-form-input::placeholder {
    color: #9ca3af !important;
}

.modal-form-input:focus {
    border-color: #f8961e !important;
    box-shadow: 0 0 0 3px rgba(248, 150, 30, 0.18) !important;
    background: #ffffff !important;
    outline: none;
}

/* Field labels */
.modal-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

/* Submit button */
.modal-submit-btn {
    background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(248, 150, 30, 0.4);
    transition: var(--transition) !important;
}

.modal-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(248, 150, 30, 0.5) !important;
    color: #fff !important;
}

/* Trust badges row */
.modal-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

/* Sticky Left Sidebar */
.sticky-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 13px;
    width: 50px;
    height: 50px;
    color: var(--white);
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: width 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-btn:hover {
    width: 140px;
    color: var(--white);
}

.sticky-btn i {
    min-width: 24px;
    text-align: center;
}

.sticky-text {
    font-size: 15px;
    font-weight: 600;
    margin-left: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-btn:hover .sticky-text {
    opacity: 1;
}

.sticky-whatsapp {
    background-color: var(--whatsapp);
}
.sticky-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

.sticky-call {
    background-color: #007bff;
}
.sticky-call:hover {
    background-color: #0056b3;
}

.sticky-enquire {
    background-color: var(--accent);
}
.sticky-enquire:hover {
    background-color: var(--accent-hover);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        padding-left: 12px;
    }
    .sticky-btn:hover {
        width: 125px;
    }
    .sticky-text {
        font-size: 14px;
    }
}
