* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: white;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TOP HEADER BAR
   ============================================================ */
.top-header {
    background: #1a3a5c;
    padding: 5px 0;
    border-bottom: 2px solid #2980b9;
}

.top-header-content {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.contact-info i {
    color: #4fc3f7;
    margin-right: 8px;
    font-size: 13px;
}

/* ============================================================
   MAIN HEADER / NAVIGATION
   ============================================================ */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #1a3a5c;
    text-decoration: none;
}

.logo i {
    color: #1a3a5c;
    font-size: 30px;
}

.logo span {
    color: #1a3a5c;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2980b9;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #1a3a5c;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #1a3a5c;
    cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #2980b9;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.btn-primary:hover {
    background: #1a3a5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1a3a5c;
    border: 2px solid #1a3a5c;
}

.btn-secondary:hover {
    background: #1a3a5c;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-cta {
    background: #1abc9c;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.btn-cta:hover {
    background: #16a085;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
}

.btn-outline:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: #f1c40f;
    color: #1a1a2e;
}

.badge-green {
    background: #27ae60;
    color: #ffffff;
}

.badge-blue {
    background: #2980b9;
    color: #ffffff;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    text-align: center;
    font-size: 38px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.section-title span {
    color: #2980b9;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 18px;
    margin-bottom: 50px;
}

/* ============================================================
   TEST CONTENT
   ============================================================ */
.hero-test {
    padding: 80px 0;
    text-align: center;
    background: #f0f4f8;
}

.hero-test h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a3a5c;
}

.hero-test .highlight {
    color: #2980b9;
    font-weight: 700;
}

/* ============================================================
   FULLY ISOLATED ARCHITECTURE FOR TRAVNX SITE FOOTER
   ============================================================ */
.tx-main-site-footer-block {
    background: #0a1628 !important; /* Force explicit dark layer layout */
    color: #ffffff !important;
    padding: 70px 0 30px 0 !important;
    border-top: 4px solid #2980b9 !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

.tx-footer-container-fluid {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.tx-footer-top-layout-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr !important;
    gap: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 50px !important;
    margin-bottom: 30px !important;
}

/* Brand Panel Rules */
.tx-footer-logo-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

.tx-footer-logo-title i {
    color: #4fc3f7 !important;
}

.tx-brand-bio-paragraph {
    font-size: 14px !important;
    color: #b0bec5 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Heading Column Rules */
.tx-footer-column-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    padding-bottom: 8px !important;
    text-transform: none !important;
    border: none !important;
}

.tx-footer-column-heading::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background: #2980b9 !important;
}

.tx-footer-links-ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tx-footer-links-ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.tx-footer-links-ul li a {
    color: #b0bec5 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    display: inline-block !important;
}

.tx-footer-links-ul li a:hover {
    color: #4fc3f7 !important;
    padding-left: 6px !important;
}

/* Contact Details Infrastructure */
.tx-contact-info-row-item {
    font-size: 14px !important;
    color: #b0bec5 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.tx-contact-info-row-item i {
    color: #4fc3f7 !important;
    margin-top: 4px !important;
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

.tx-footer-address-text {
    font-style: normal !important;
    color: #b0bec5 !important;
}

.tx-footer-contact-interactive-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.tx-footer-contact-interactive-link:hover {
    color: #4fc3f7 !important;
}

/* Bottom Copyright Strip */
.tx-footer-bottom-copyright-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 13px !important;
    color: #78909c !important;
    padding-top: 10px !important;
}

.tx-copyright-string strong {
    color: #ffffff !important;
}

.tx-footer-love-note-string {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.tx-footer-love-note-string i {
    color: #e74c3c !important;
}

/* Responsive Structural Overrides */
@media screen and (max-width: 992px) {
    .tx-footer-top-layout-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media screen and (max-width: 576px) {
    .tx-footer-top-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .tx-footer-bottom-copyright-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 18px;
    }
    
    .nav-menu li a {
        font-size: 13px;
    }
    
    .logo a {
        font-size: 24px;
    }
    
    .logo i {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .contact-info {
        justify-content: center;
        gap: 12px;
    }
    
    .contact-info span {
        font-size: 12px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo a {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .hamburger {
        display: block;
    }
    
    .main-nav {
        width: 100%;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 0;
        border-top: 2px solid #ecf0f1;
        margin-top: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #ecf0f1;
        width: 100%;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li a:hover {
        color: #1a3a5c;
        padding-left: 10px;
        transition: padding 0.3s ease;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-test {
        padding: 50px 0;
    }
    
    .hero-test h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info {
        flex-direction: row;
        gap: 20px;
    }
    
    .contact-info span {
        font-size: 11px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    .hamburger {
        font-size: 22px;
    }
    
    .nav-menu li a {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .hero-test {
        padding: 40px 0;
    }
    
    .hero-test h1 {
        font-size: 24px;
    }
    
    .hero-test p {
        font-size: 14px;
    }
    
    .footer-test {
        padding: 20px 0;
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .logo a {
        font-size: 17px;
    }
    
    .logo i {
        font-size: 17px;
    }
    
    .hamburger {
        font-size: 18px;
    }
    
    .contact-info span {
        font-size: 10px;
    }
    
    .hero-test h1 {
        font-size: 20px;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .top-header {
        padding: 4px 0;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 18px;
    }
    
    .nav-menu li a {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .hero-test {
        padding: 30px 0;
    }
    
    .hero-test h1 {
        font-size: 22px;
    }
}

@media print {
    .top-header,
    .main-header,
    .hamburger,
    .footer-test {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}

/* ============================================================
   HERO BANNER - IMAGE ONLY
   ============================================================ */

.hero-banner {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   RESPONSIVE: TABLET
   ============================================================ */

@media screen and (max-width: 768px) {
    .hero-banner {
        max-height: 200px;
    }
    
    .hero-image {
        max-height: 200px;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE
   ============================================================ */

@media screen and (max-width: 480px) {
    .hero-banner {
        max-height: 150px;
    }
    
    .hero-image {
        max-height: 150px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 360px) {
    .hero-banner {
        max-height: 120px;
    }
    
    .hero-image {
        max-height: 120px;
    }
}

/* ============================================================
   FEATURE SECTION - Left Image + Right Cards (4 per row)
   ============================================================ */

.feature-section {
    padding-top: 60px;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* ============================================================
   LEFT COLUMN - Image Only
   ============================================================ */

.feature-left {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 82%;
}

.left-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.left-feature-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.left-image-link:hover .left-feature-image {
    transform: scale(1.02);
}

/* ============================================================
   RIGHT COLUMN - Tour Cards (4 per row)
   ============================================================ */

.feature-right {
    display: grid;
    grid-template-columns: 1fr;
}

.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Individual Tour Card */
.tour-card-small {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card-small:hover .card-image img {
    transform: scale(1.05);
}

/* Card Name - Only text below image */
.card-name {
    padding: 10px 12px 12px;
    text-align: center;
}

.card-name span {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a5c;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   RESPONSIVE: TABLET (992px - 1024px)
   ============================================================ */

@media screen and (max-width: 1024px) {
    .tour-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE: TABLET (768px - 992px)
   ============================================================ */

@media screen and (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .left-feature-image {
        min-height: 250px;
        max-height: 300px;
    }
    
    .card-image {
        height: 140px;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE (480px - 768px)
   ============================================================ */

@media screen and (max-width: 768px) {
    .feature-section {
        padding: 40px 0;
    }
    
    .tour-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .left-feature-image {
        min-height: 200px;
        max-height: 250px;
    }
    
    .card-image {
        height: 120px;
    }
    
    .card-name span {
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE (below 480px)
   ============================================================ */

@media screen and (max-width: 480px) {
    .tour-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .left-feature-image {
        min-height: 150px;
        max-height: 200px;
    }
    
    .card-image {
        height: 100px;
    }
    
    .card-name {
        padding: 6px 8px 8px;
    }
    
    .card-name span {
        font-size: 10px;
    }
}

/* ============================================================
   POPULAR TOURS CAROUSEL - FULL IMAGE WITH TEXT OVERLAY
   ============================================================ */

.popular-tours-carousel {
    padding-bottom: 60px;
    background: white;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Each slide - hidden by default, shown by JS */
.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Show first slide by default */
.carousel-slide:first-child {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TOUR SLIDE CARD - FULL IMAGE WITH OVERLAY
   ============================================================ */

.tour-slide-card {
    position: relative;
    background: #1a3a5c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Full Image - Takes all space */
.slide-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

/* Dark Overlay on Image */
.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

/* Content Overlay - Text on top of image */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 50px 50px;
    text-align: center;
    z-index: 2;
    color: #ffffff;
}

.slide-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.slide-info .duration {
    font-size: 18px;
    font-weight: 600;
    color: #4fc3f7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-info .price {
    font-size: 18px;
    font-weight: 700;
    color: #f1c40f;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-slide {
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    background: #f1c40f;
    color: #1a3a5c;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(241, 196, 15, 0.4);
}

.btn-slide:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* ============================================================
   CAROUSEL NAVIGATION BUTTONS
   ============================================================ */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #1a3a5c;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* ============================================================
   CAROUSEL DOTS
   ============================================================ */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d5dbe0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: #1a3a5c;
    width: 35px;
    border-radius: 10px;
}

.dot:hover {
    background: #2980b9;
}

/* ============================================================
   RESPONSIVE: TABLET
   ============================================================ */

@media screen and (max-width: 992px) {
    .slide-image {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px 35px 40px;
    }
    
    .slide-content h3 {
        font-size: 26px;
    }
    
    .slide-info .duration,
    .slide-info .price {
        font-size: 16px;
    }
    
    .btn-slide {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {
    .popular-tours-carousel {
        padding: 40px 0;
    }
    
    .slide-image {
        height: 350px;
    }
    
    .slide-content {
        padding: 20px 25px 30px;
    }
    
    .slide-content h3 {
        font-size: 20px;
    }
    
    .slide-info {
        gap: 20px;
    }
    
    .slide-info .duration,
    .slide-info .price {
        font-size: 14px;
    }
    
    .btn-slide {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 480px) {
    .slide-image {
        height: 280px;
    }
    
    .slide-content {
        padding: 15px 18px 20px;
    }
    
    .slide-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .slide-info {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .slide-info .duration,
    .slide-info .price {
        font-size: 12px;
    }
    
    .btn-slide {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
}
/* ============================================================
   THEMES YOU CAN EXPLORE SECTION
   ============================================================ */

.themes-section {
    padding: 60px 0;
    background: #ffffff;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Theme Card */
.theme-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    display: block;
    height: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.theme-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-card:hover .theme-image img {
    transform: scale(1.08);
}

/* Dark Overlay */
.theme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    transition: background 0.3s ease;
}

.theme-card:hover::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

/* Text Overlay */
.theme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 30px;
    text-align: center;
    z-index: 2;
}

.theme-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE: TABLET
   ============================================================ */

@media screen and (max-width: 992px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .theme-card {
        height: 250px;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {
    .themes-section {
        padding: 40px 0;
    }
    
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .theme-card {
        height: 200px;
    }
    
    .theme-overlay h3 {
        font-size: 18px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 480px) {
    .themes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .theme-card {
        height: 160px;
    }
    
    .theme-overlay {
        padding: 15px 15px 20px;
    }
    
    .theme-overlay h3 {
        font-size: 15px;
    }
}
/* ============================================================
   HOLIDAY DESTINATION SECTION
   ============================================================ */

.holiday-section {
    padding: 60px 0;
    background: white;
}

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* ============================================================
   HOLIDAY CARD
   ============================================================ */

.holiday-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.holiday-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.holiday-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.holiday-card:hover .holiday-image img {
    transform: scale(1.05);
}

.holiday-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holiday-content {
    padding: 20px 22px 25px;
}

.holiday-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 4px;
}

.holiday-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.holiday-duration i {
    color: #2980b9;
    margin-right: 5px;
}

.holiday-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.holiday-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.holiday-inclusions span {
    background: #f0f4f8;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 11px;
    color: #2c3e50;
}

.holiday-inclusions i {
    color: #2980b9;
    margin-right: 4px;
    font-size: 10px;
}

.holiday-price {
    margin-bottom: 18px;
}

.holiday-price .price {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
}

.holiday-price .price-label {
    font-size: 13px;
    color: #95a5a6;
    display: block;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
}

/* ============================================================
   RESPONSIVE: TABLET
   ============================================================ */

@media screen and (max-width: 1024px) {
    .holiday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .holiday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE: MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {
    .holiday-section {
        padding: 40px 0;
    }
    
    .holiday-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .holiday-image {
        height: 160px;
    }
    
    .holiday-content {
        padding: 15px 18px 20px;
    }
    
    .holiday-content h3 {
        font-size: 16px;
    }
    
    .holiday-title {
        font-size: 14px;
    }
    
    .holiday-price .price {
        font-size: 18px;
    }
    
    .holiday-inclusions span {
        font-size: 10px;
        padding: 2px 10px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 480px) {
    .holiday-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .holiday-image {
        height: 200px;
    }
}
/* ============================================================
   VIEW ALL - CENTERED
   ============================================================ */

.view-all {
    text-align: center;  /* ← Ensures button is centered */
    margin-top: 20px;
}

.view-all .btn {
    display: inline-block;  /* ← Makes button only as wide as content */
}
/* ============================================================
   ABOUT SECTION - NO IMAGE
   ============================================================ */

.about-section {
    padding: 70px 0;
    background: #ffffff;
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a3a5c;
    margin-bottom: 20px;
}

.about-title span {
    color: #2980b9;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
}

.about-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    background: #1a3a5c;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.about-buttons .btn i {
    transition: transform 0.3s ease;
}

.about-buttons .btn:hover i {
    transform: translateX(5px);
}

.about-buttons .btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media screen and (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .about-buttons .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* ============================================================
   WHY CHOOSE US - 3 PER ROW
   ============================================================ */

.why-choose-us {
    padding: 60px 0;
    background: #f0f4f8;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Feature Card */
.feature-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

/* Feature Icon */
.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: #1a3a5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #2980b9;
    transform: scale(1.05) rotate(5deg);
}

.feature-card .feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Feature Text */
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Empty card (hidden) */
.feature-card-empty {
    visibility: hidden;
}

/* ============================================================
   RESPONSIVE: TABLET
   ============================================================ */

@media screen and (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card-empty {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }
    
    .features-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-card .feature-icon i {
        font-size: 22px;
    }
    
    .feature-card h3 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE
   ============================================================ */

@media screen and (max-width: 480px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px 15px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .feature-card .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin: 0;
    }
    
    .feature-card .feature-icon i {
        font-size: 18px;
    }
    
    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
}
/* ============================================================
   TOURS REVIEWS CAROUSEL - COMPLETE
   ============================================================ */

.reviews-section {
    padding: 60px 0;
    background: #ffffff;
}

.reviews-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    /* overflow: hidden; */
}

.reviews-container {
    position: relative;
    overflow: hidden;
}

/* Each slide - hidden by default, shown by JS */
.review-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Show first slide by default */
.review-slide:first-child {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   REVIEW CARD
   ============================================================ */

.review-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar i {
    font-size: 48px;
    color: #2980b9;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0;
}

.review-date {
    font-size: 13px;
    color: #95a5a6;
}

/* Review Stars */
.review-stars {
    color: #f1c40f;
    font-size: 16px;
}

.review-stars i {
    margin-right: 2px;
}

/* Review Text */
.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-style: italic;
}

/* Review Footer */
.review-footer {
    border-top: 1px solid #ecf0f1;
    padding-top: 15px;
}

.review-experience {
    font-size: 14px;
    color: #7f8c8d;
}

.review-experience i {
    color: #2980b9;
    margin-right: 8px;
}

/* ============================================================
   REVIEW CAROUSEL NAVIGATION
   ============================================================ */

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ecf0f1;
    color: #1a3a5c;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-btn:hover {
    background: #1a3a5c;
    color: #ffffff;
    border-color: #1a3a5c;
}

.review-prev {
    left: -22px;
}

.review-next {
    right: -22px;
}

/* ============================================================
   REVIEW DOTS
   ============================================================ */

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d5dbe0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.review-dot.active {
    background: #1a3a5c;
    width: 35px;
    border-radius: 10px;
}

.review-dot:hover {
    background: #2980b9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media screen and (max-width: 992px) {
    .review-prev {
        left: 5px;
    }
    
    .review-next {
        right: 5px;
    }
    
    .review-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviewer-avatar i {
        font-size: 36px;
    }
    
    .reviewer-name {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .review-card {
        padding: 20px 15px;
    }
    
    .reviewer-avatar i {
        font-size: 30px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 12px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .review-stars {
        font-size: 14px;
    }
}
/* ============================================================
   PREMIUM OCEAN & TRAVEL THEME
   ============================================================ */

/* ----- Premium Color Palette ----- */
:root {
    --premium-gold: #c9a84c;
    --premium-gold-light: #e8d5a3;
    --premium-navy: #0a1628;
    --premium-deep-blue: #0f2847;
    --premium-mid-blue: #1a3a5c;
    --premium-sand: #f5efe6;
    --premium-charcoal: #1a1a2e;
    --premium-cream: #faf8f5;
    --premium-rose: #c0392b;
    --premium-teal: #0c8c8c;
}

/* ----- General Styles ----- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--premium-gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--premium-gold);
}

.section-tag.light {
    color: var(--premium-gold-light);
}

.section-tag.light::before {
    background: var(--premium-gold-light);
}

/* ============================================================
   PAGE HEADER - PREMIUM
   ============================================================ */
.premium-header {
    background: linear-gradient(135deg, var(--premium-navy) 0%, var(--premium-deep-blue) 50%, var(--premium-mid-blue) 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatPremium 20s ease-in-out infinite;
}

@keyframes floatPremium {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -30px) scale(1.1); }
}

.premium-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), var(--premium-gold-light), var(--premium-gold), transparent);
}

.header-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--premium-gold-light);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
}

.premium-header h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.premium-header h1 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-decoration .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
}

.header-decoration i {
    color: var(--premium-gold);
    font-size: 24px;
}

/* ============================================================
   STORY SECTION - PREMIUM
   ============================================================ */
.story-section {
    padding: 100px 0;
    background: var(--premium-cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content .section-tag {
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--premium-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-content h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--premium-mid-blue);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 20px;
    color: white;
}

.highlight-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--premium-navy);
    margin-bottom: 3px;
}

.highlight-text p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.story-image {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-badge:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-badge i {
    color: var(--premium-gold);
    font-size: 24px;
}

.image-badge span {
    font-weight: 600;
    color: var(--premium-navy);
    font-size: 14px;
}

.image-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.premium-stat {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid var(--premium-gold);
    transition: all 0.3s ease;
}

.premium-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.premium-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--premium-navy);
    margin-bottom: 3px;
}

.premium-stat .stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* ============================================================
   PHILOSOPHY SECTION - PREMIUM
   ============================================================ */
.philosophy-section {
    padding: 100px 0;
    background: white;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--premium-navy);
}

.philosophy-header h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.premium-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-gold), var(--premium-gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    border-color: var(--premium-gold);
}

.premium-card:hover::before {
    opacity: 1;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.premium-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--premium-navy);
    margin-bottom: 12px;
}

.premium-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   JOURNEY STATS - PREMIUM
   ============================================================ */
.journey-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--premium-navy), var(--premium-deep-blue));
    position: relative;
    overflow: hidden;
}

.journey-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/travnx/assets/images/map-pattern.png') repeat;
    opacity: 0.05;
}

.stats-wrapper {
    position: relative;
    z-index: 2;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

.stat-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.stat-block-icon {
    width: 55px;
    height: 55px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-block-icon i {
    font-size: 22px;
    color: var(--premium-gold-light);
}

.stat-block-content {
    text-align: left;
}

.stat-counter {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.stat-block-content .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   MISSION & VISION - PREMIUM
   ============================================================ */
.mission-vision-section {
    padding: 100px 0;
    background: var(--premium-cream);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.mv-card {
    padding: 60px 50px;
}

.mission-card {
    background: linear-gradient(135deg, var(--premium-navy), var(--premium-deep-blue));
    color: white;
}

.vision-card {
    background: white;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-card .mv-icon {
    background: rgba(201, 168, 76, 0.2);
}

.mv-icon i {
    font-size: 28px;
    color: var(--premium-gold);
}

.mission-card .mv-icon i {
    color: var(--premium-gold-light);
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card h3 {
    color: white;
}

.vision-card h3 {
    color: var(--premium-navy);
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
}

.vision-card p {
    color: #666;
}

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

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
}

.mission-card .mv-list li {
    color: rgba(255, 255, 255, 0.85);
}

.vision-card .mv-list li {
    color: #555;
}

.mv-list li i {
    color: var(--premium-gold);
}

.mission-card .mv-list li i {
    color: var(--premium-gold-light);
}

.mv-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--premium-gold), transparent);
}

/* ============================================================
   OFFER SECTION - PREMIUM
   ============================================================ */
.offer-section {
    padding: 100px 0;
    background: white;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--premium-navy);
}

.offer-header h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-offer {
    background: var(--premium-cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.premium-offer:hover {
    background: white;
    border-color: var(--premium-gold);
    box-shadow: 0 15px 50px rgba(10, 22, 40, 0.08);
    transform: translateY(-8px);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offer-icon i {
    font-size: 28px;
    color: white;
}

.premium-offer h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--premium-navy);
    margin-bottom: 12px;
}

.premium-offer p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE PREMIUM
   ============================================================ */
.why-choose-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--premium-navy), var(--premium-deep-blue));
    position: relative;
    overflow: hidden;
}

.why-choose-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.choose-wrapper {
    position: relative;
    z-index: 2;
}

.choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.choose-header h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.premium-choose {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.premium-choose:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--premium-gold);
    transform: translateY(-5px);
}

.choose-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 15px;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.choose-icon i {
    font-size: 24px;
    color: var(--premium-gold-light);
}

.premium-choose h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.premium-choose p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS - PREMIUM
   ============================================================ */
.testimonials-premium {
    padding: 100px 0;
    background: var(--premium-cream);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--premium-navy);
}

.testimonial-header h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-testimonial {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.premium-testimonial:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    transform: translateY(-5px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 32px;
    color: var(--premium-gold);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--premium-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--premium-navy);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: #888;
}

.author-stars {
    color: var(--premium-gold);
    font-size: 13px;
    margin-top: 3px;
}

/* ============================================================
   CTA PREMIUM
   ============================================================ */
.cta-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--premium-navy), var(--premium-deep-blue));
    position: relative;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 80px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-content {
    flex: 1;
}

.cta-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--premium-gold-light);
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content h2 span {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    color: var(--premium-navy);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    color: var(--premium-navy);
}

.btn-premium-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-outline:hover {
    border-color: var(--premium-gold);
    color: var(--premium-gold-light);
    background: rgba(201, 168, 76, 0.1);
}

.cta-decoration {
    display: flex;
    gap: 30px;
    margin-left: 50px;
}

.cta-symbol {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    animation: floatSymbol 3s ease-in-out infinite;
}

.cta-symbol:nth-child(2) {
    animation-delay: 0.5s;
}

.cta-symbol:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-symbol i {
    font-size: 24px;
    color: var(--premium-gold-light);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .premium-header h1 {
        font-size: 42px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-decoration {
        margin-left: 0;
        margin-top: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-header {
        padding: 80px 0 60px;
    }
    
    .premium-header h1 {
        font-size: 32px;
    }
    
    .header-tagline {
        font-size: 16px;
    }
    
    .story-content h2 {
        font-size: 32px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-divider {
        display: none;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .image-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-header h1 {
        font-size: 26px;
    }
    
    .image-stats {
        grid-template-columns: 1fr;
    }
    
    .premium-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-block {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-block-content {
        text-align: center;
    }
}
/* ============================================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================================ */
.inner-hero-banner {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.inner-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.inner-hero-content h1 span {
    color: #4fc3f7;
}

.inner-hero-content p {
    font-size: 18px;
    color: #e0e6ed;
    max-width: 650px;
    margin: 0 auto;
}

.about-story-section {
    padding: 80px 0;
    background: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sub-tag {
    display: inline-block;
    color: #2980b9;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.story-content h2 {
    font-size: 36px;
    color: #1a3a5c;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.story-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mini-metrics-row {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    border-top: 1px solid #ecf0f1;
    padding-top: 25px;
}

.metric-item h3 {
    font-size: 32px;
    color: #2980b9;
    font-weight: 800;
    margin-bottom: 2px;
}

.metric-item p {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 600;
    margin: 0;
}

.image-wrapper-decorative {
    position: relative;
}

.image-wrapper-decorative img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.floating-badge-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #2980b9;
}

.floating-badge-card i {
    font-size: 24px;
    color: #f1c40f;
}

.floating-badge-card h4 {
    font-size: 14px;
    color: #1a3a5c;
    margin: 0;
}

.floating-badge-card p {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

/* Core Values Layout */
.core-values-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.value-card h3 {
    color: #1a3a5c;
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Card */
.about-cta-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.cta-banner-card {
    background: #1a3a5c;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
}

.cta-banner-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner-card p {
    color: #e0e6ed;
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .story-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .floating-badge-card {
        left: 20px;
    }
}
/* ============================================================
   TOUR PACKAGES FILTER PILLS & EXTENSIONS
   ============================================================ */
.packages-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.filter-pills-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-pill {
    background: #f0f4f8;
    color: #2c3e50;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-pill:hover {
    background: #d5dbe0;
    color: #1a3a5c;
}

.filter-pill.active {
    background: #2980b9;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.25);
}

/* Custom Holiday Grid Controls override for stability */
.dynamic-packages-grid {
    transition: all 0.4s ease;
}

/* Premium Custom Itinerary Callout */
.custom-advisory-banner {
    background: #f0f4f8;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
}

.advisory-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.advisory-text h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 8px;
    font-weight: 800;
}

.advisory-text p {
    color: #546e7a;
    font-size: 16px;
    margin: 0;
    max-width: 750px;
}

.advisory-action {
    flex-shrink: 0;
}

/* Package Filtering Grid Animations */
.package-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.package-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.92);
}

/* Responsiveness overrides for the advisory panel */
@media screen and (max-width: 992px) {
    .advisory-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .advisory-text p {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .filter-pills-wrapper {
        gap: 8px;
    }
    .filter-pill {
        padding: 8px 16px;
        font-size: 12px;
    }
    .advisory-text h2 {
        font-size: 22px;
    }
    .advisory-text p {
        font-size: 14px;
    }
}
/* ============================================================
   TRANSPORT VEHICLE FLEET STYLES
   ============================================================ */
.transport-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Ensuring standard horizontal layouts for transport fleet display */
.transport-fleet-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.transport-img-wrapper {
    height: 220px !important;
    background-color: #f8f9fa;
}

.fleet-card {
    border: 1px solid #eef2f5;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 18px;
    min-height: 56px; /* Align layout structures evenly */
    align-content: flex-start;
}

.fleet-features span {
    background: #eef5fc;
    color: #1a3a5c;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.fleet-features i {
    color: #2980b9;
    margin-right: 4px;
}

.transport-assurances {
    padding: 60px 0 80px;
    background: #f0f4f8;
}

/* Responsive Overrides for Transport Sheets */
@media screen and (max-width: 1024px) {
    .transport-fleet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .transport-fleet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .transport-img-wrapper {
        height: 160px !important;
    }
    .fleet-features {
        min-height: auto;
    }
}

@media screen and (max-width: 576px) {
    .transport-fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    .transport-img-wrapper {
        height: 200px !important;
    }
}
/* ============================================================
   DESTINATIONS PAGE SPECIFIC EXTENSIONS
   ============================================================ */
.destinations-page-section {
    padding: 60px 0;
    background: #ffffff;
}

.destinations-main-grid {
    margin-top: 20px;
    gap: 30px;
}

.destination-premium-card {
    height: 380px; /* Slightly taller for standalone destinations layout */
    position: relative;
    cursor: pointer;
}

/* Badge for Region Category Overlay */
.destination-tag-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 58, 92, 0.85);
    color: #4fc3f7;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.destination-custom-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.4s ease;
    height: 100%;
}

.destination-count {
    font-size: 13px;
    color: #f1c40f;
    font-weight: 600;
    margin: 4px 0 0 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Slide up interactive block styling */
.destination-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.destination-hover-content p {
    font-size: 13px;
    color: #e0e6ed;
    line-height: 1.5;
    margin: 12px 0;
}

.btn-destination-card {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none;
    background: #2980b9;
}

/* Trigger reveal animations smoothly on hover */
.destination-premium-card:hover .destination-custom-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(26, 58, 92, 0.95) 100%);
    padding-bottom: 40px;
}

.destination-premium-card:hover .destination-hover-content {
    max-height: 150px;
    opacity: 1;
}

/* ============================================================
   METRICS STRIP BAR BELOW GRID
   ============================================================ */
.destination-metrics-bar {
    background: #f0f4f8;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.metrics-strip-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strip-item i {
    font-size: 32px;
    color: #2980b9;
}

.strip-item h4 {
    font-size: 16px;
    color: #1a3a5c;
    margin: 0 0 2px 0;
    font-weight: 700;
}

.strip-item p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
}

/* Responsive Overrides */
@media screen and (max-width: 1024px) {
    .destination-premium-card {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .metrics-strip-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10%;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .destination-premium-card {
        height: 260px;
    }
    .destination-premium-card:hover .destination-custom-overlay {
        padding-bottom: 20px;
    }
    .metrics-strip-wrapper {
        padding-left: 0;
    }
}
/* ============================================================
   POPULAR TOURS - ALTERNATING EDITORIAL LOOK
   ============================================================ */

/* Distinct Hero banner style (Not using the standard wide-banner style) */
.popular-hero-split {
    padding: 80px 0 60px;
    background: #1a3a5c;
    color: #ffffff;
    border-bottom: 4px solid #2980b9;
}

.pop-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.pop-hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 10px;
    color: #ffffff;
}

.pop-hero-text h1 span {
    color: #4fc3f7;
}

.pop-hero-text p {
    color: #b0bec5;
    font-size: 16px;
    line-height: 1.6;
}

.pop-hero-accent-box {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.accent-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 130px;
}

.accent-stat strong {
    display: block;
    font-size: 32px;
    color: #f1c40f;
    font-weight: 800;
}

.accent-stat span {
    font-size: 12px;
    color: #cfd8dc;
    text-transform: uppercase;
    font-weight: 600;
}

/* Editorial Rows Construction */
.popular-tours-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 50px;
    align-items: center;
    border: 1px solid #eef2f5;
}

/* The magic trick to make items flip cleanly */
.tour-editorial-row.alternate-reverse {
    grid-template-columns: 1.1fr 1fr;
}
.tour-editorial-row.alternate-reverse .tour-row-media {
    order: 2;
}

/* Image styling inside layout rules */
.tour-row-media {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.tour-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f1c40f;
    color: #1a3a5c;
    font-weight: 800;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Right Content Details Container */
.tour-row-details {
    padding: 40px 50px 40px 40px;
}

.tour-editorial-row.alternate-reverse .tour-row-details {
    padding: 40px 40px 40px 50px;
}

.tour-category-tag {
    font-size: 11px;
    font-weight: 700;
    color: #2980b9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.tour-row-details h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 15px;
    font-weight: 700;
}

.tour-row-details p {
    font-size: 15px;
    color: #607d8b;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Horizontal specifications tags list */
.tour-highlights-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tour-highlights-strip span {
    background: #f0f4f8;
    color: #1a3a5c;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-highlights-strip i {
    color: #2980b9;
}

/* Pricing layout block configuration elements */
.tour-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.meta-duration {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #95a5a6;
    letter-spacing: 0.5px;
}

.meta-price {
    font-size: 24px;
    font-weight: 800;
    color: #1a3a5c;
}

.meta-price small {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 400;
}

/* Responsive configurations block styles */
@media screen and (max-width: 992px) {
    .pop-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pop-hero-accent-box {
        justify-content: center;
    }
    .tour-editorial-row, .tour-editorial-row.alternate-reverse {
        grid-template-columns: 1fr;
    }
    .tour-editorial-row.alternate-reverse .tour-row-media {
        order: 0;
    }
    .tour-row-media {
        min-height: 250px;
        max-height: 300px;
    }
    .tour-row-details, .tour-editorial-row.alternate-reverse .tour-row-details {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .tour-row-details h2 {
        font-size: 22px;
    }
    .tour-footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .tour-footer-meta .btn {
        width: 100%;
        text-align: center;
    }
}
/* ============================================================
   PANORAMIC STACKED DASHBOARD CONTACT STYLES
   ============================================================ */

/* Panoramic Header layout specifications */
.contact-header-panoramic {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.panoramic-content-box {
    max-width: 800px;
    margin: 0 auto;
}

.panoramic-tag {
    color: #4fc3f7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.panoramic-content-box h1 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.panoramic-content-box h1 span {
    color: #f1c40f;
}

.panoramic-content-box p {
    color: #cfd8dc;
    font-size: 18px;
    line-height: 1.6;
}

/* Three-Column Deck Node Rules */
.direct-channels-tier {
    padding: 0;
    margin-top: -50px; /* Overlaps with header layout seamlessly */
    position: relative;
    z-index: 5;
}

.channels-deck-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.node-card-minimal {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.08);
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease;
}

.node-card-minimal:hover {
    transform: translateY(-5px);
}

.node-icon-circle {
    width: 55px;
    height: 55px;
    background: #f0f4f8;
    color: #2980b9;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.node-card-minimal h3 {
    font-size: 18px;
    color: #1a3a5c;
    margin-bottom: 8px;
    font-weight: 700;
}

.node-card-minimal p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 15px;
}

.node-action-link {
    font-size: 16px;
    color: #2980b9;
    font-weight: 700;
    transition: color 0.2s ease;
}

.node-action-link:hover {
    color: #1a3a5c;
}

.node-static-text {
    font-size: 14px;
    color: #1a3a5c;
    font-weight: 600;
}

/* Panoramic Messaging Console Container rules */
.panoramic-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.panoramic-form-holder {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    background: #f8f9fa;
    padding: 50px 60px;
    border: 1px solid #eef2f5;
}

.form-title-center {
    text-align: center;
    margin-bottom: 40px;
}

.form-title-center h2 {
    font-size: 28px;
    color: #1a3a5c;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-title-center p {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

/* Fluid Interior Grid Inputs Construction styles */
.fluid-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.fluid-grid-fullwidth {
    grid-column: span 2;
}

.fluid-input-wrapper label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.input-icon-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-field i {
    position: absolute;
    left: 16px;
    color: #95a5a6;
    font-size: 14px;
    pointer-events: none;
}

.input-icon-field input,
.input-icon-field select {
    padding-left: 45px !important;
}

.clean-fluid-form input,
.clean-fluid-form select,
.clean-fluid-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.clean-fluid-form input:focus,
.clean-fluid-form select:focus,
.clean-fluid-form textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.08);
}

.form-submit-centered-action {
    text-align: center;
    margin-top: 35px;
}

.btn-panoramic-send {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 50px;
}

/* Notification box state styling */
.form-status-alert {
    display: none;
    margin-top: 25px;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.form-status-alert.active-success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Responsive configurations blocks */
@media screen and (max-width: 992px) {
    .channels-deck-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .direct-channels-tier {
        margin-top: -20px;
    }
    .panoramic-form-holder {
        padding: 35px 25px;
    }
}

@media screen and (max-width: 768px) {
    .fluid-form-grid {
        grid-template-columns: 1fr;
    }
    .fluid-grid-fullwidth {
        grid-column: span 1;
    }
    .panoramic-content-box h1 {
        font-size: 30px;
    }
}
/* ============================================================
   DYNAMIC TOUR DETAILS ARCHITECTURE
   ============================================================ */
.details-hero {
    padding: 100px 0 80px;
    color: #ffffff;
}

.details-hero-box {
    max-width: 850px;
}

.details-meta-pill {
    background: #2980b9;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.details-hero-box h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.details-hero-box p {
    font-size: 18px;
    color: #cfd8dc;
    line-height: 1.6;
}

/* Split Column Configuration */
.details-body-section {
    padding: 70px 0;
    background: #ffffff;
}

.details-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.details-itinerary-area h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.details-itinerary-area h2 span {
    color: #2980b9;
}

.itinerary-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Vertical Timeline Engine Graphic */
.itinerary-timeline {
    position: relative;
    border-left: 3px dashed #e2e8f0;
    padding-left: 30px;
    margin-left: 10px;
}

.timeline-node {
    position: relative;
    margin-bottom: 35px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-marker {
    position: absolute;
    left: -41px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2980b9;
}

.node-card-content {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #eef2f5;
}

.node-card-content h3 {
    font-size: 16px;
    color: #1a3a5c;
    margin-bottom: 8px;
    font-weight: 700;
}

.node-card-content p {
    font-size: 14px;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

/* Right Side Locked Summary Panel */
.details-sticky-desk {
    position: sticky;
    top: 100px; /* Aligns comfortably with sticky navigation bars */
}

.summary-desk-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(26, 58, 92, 0.05);
}

.desk-label {
    font-size: 11px;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.desk-price-row {
    margin-bottom: 25px;
}

.desk-amount {
    font-size: 32px;
    font-weight: 800;
    color: #1a3a5c;
    display: block;
    line-height: 1.1;
}

.desk-sub {
    font-size: 13px;
    color: #95a5a6;
}

.desk-inclusions-list {
    margin-bottom: 30px;
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.desk-inclusions-list h4 {
    font-size: 14px;
    color: #1a3a5c;
    margin-bottom: 12px;
}

.desk-inclusions-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.desk-inclusions-list li {
    font-size: 13px;
    color: #607d8b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.desk-inclusions-list i {
    color: #27ae60;
}

.btn-desk-action {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
}

/* Responsive parameters */
@media screen and (max-width: 992px) {
    .details-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .details-sticky-desk {
        position: static;
    }
}

@media screen and (max-width: 480px) {
    .details-hero-box h1 {
        font-size: 28px;
    }
    .summary-desk-card {
        padding: 20px;
    }
}

/* ============================================================
   LEGAL AND POLICY PAGES LAYOUT
   ============================================================ */
.legal-policy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-split-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.legal-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-block-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eef2f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.legal-block-card h2 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-block-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.legal-block-card ul li {
    font-size: 14px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-block-card a {
    color: #2980b9;
    font-weight: 600;
}

.legal-block-card a:hover {
    text-decoration: underline;
}

/* Sidebar Panel Styling */
.legal-sidebar-desk {
    position: sticky;
    top: 100px;
}

.legal-summary-card {
    background: #1a3a5c;
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.05);
}

.legal-summary-card h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-summary-card p {
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.6;
}

.legal-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.legal-support-note {
    color: #4fc3f7 !important;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.legal-support-note i {
    margin-top: 3px;
}

/* Responsive Structural Overrides */
@media screen and (max-width: 992px) {
    .legal-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .legal-sidebar-desk {
        position: static;
    }
}

@media screen and (max-width: 480px) {
    .legal-block-card {
        padding: 25px 20px;
    }
    .legal-block-card h2 {
        font-size: 18px;
    }
}

/* ============================================================
   BOOKING INTERFACE STYLES - FIXED MODAL
   ============================================================ */

.clean-fluid-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.booking-section-heading {
    color: #1a3a5c; 
    margin-bottom: 20px; 
    border-bottom: 2px solid #f0f4f8; 
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.booking-section-heading i {
    margin-right: 10px; 
    color: #ff9800;
}

.fluid-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fluid-input-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a3a5c;
    margin-bottom: 6px;
}

.input-icon-field {
    position: relative;
}

.input-icon-field i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #78909c;
    z-index: 2;
}

.input-icon-field input,
.input-icon-field select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.input-icon-field input:focus,
.input-icon-field select:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

#passengerCount {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378909c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.passenger-form-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #1a3a5c;
    transition: all 0.2s ease-in-out;
}

.passenger-form-block:hover {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.passenger-form-block h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a3a5c;
    font-size: 15px;
    font-weight: 600;
}

.passenger-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.passenger-field-wrapper label {
    display: block;
    font-size: 12px;
    color: #546e7a;
    margin-bottom: 5px;
    font-weight: 500;
}

.passenger-field-wrapper input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 13px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.passenger-field-wrapper input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

/* ============================================================
   SUMMARY BOX STYLES
   ============================================================ */
.details-split-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.details-sticky-desk .summary-desk-card {
    position: sticky;
    top: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.desk-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.summary-tour-title {
    margin: 15px 0 5px 0;
    color: #1a3a5c;
    font-size: 18px;
}

.summary-tour-duration {
    font-size: 13px;
    color: #78909c;
    margin-bottom: 15px;
}

.calculation-breakdown-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #546e7a;
}

.calc-divider {
    border: 0;
    border-top: 1px solid #cfd8dc;
    margin: 10px 0;
}

.calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-total-row span {
    font-weight: 600;
    color: #1a3a5c;
}

#summaryTotalPriceText {
    font-size: 22px;
    font-weight: 800;
    color: #ff9800;
}

.desk-inclusions-list {
    margin-bottom: 20px;
}

.desk-inclusions-list h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.desk-inclusions-list ul {
    list-style: none;
    padding: 0;
    font-size: 12px;
    line-height: 1.8;
}

.desk-inclusions-list ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #546e7a;
}

.desk-inclusions-list ul li i {
    color: #ff9800;
    width: 16px;
}

.btn-desk-action {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-desk-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* ============================================================
   MODAL - FIXED VERSION (IMPORTANT)
   ============================================================ */
.tx-coming-soon-modal-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.tx-coming-soon-modal-overlay.active {
    display: flex !important;
}

.tx-coming-soon-modal-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tx-modal-close-trigger {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #90a4ae;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.tx-modal-close-trigger:hover {
    color: #1a3a5c;
    transform: rotate(90deg);
}

.tx-modal-icon-box {
    margin-bottom: 20px;
    font-size: 50px;
    color: #ff9800;
}

.tx-coming-soon-modal-card h2 {
    color: #1a3a5c;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 26px;
}

.tx-coming-soon-modal-card h2 span {
    color: #ff9800;
}

.modal-primary-text {
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-secondary-text {
    font-size: 13px;
    color: #78909c;
    background: #f0f4f8;
    padding: 12px 16px;
    border-radius: 6px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 8px;
}

.modal-secondary-text i {
    color: #ff9800;
    margin-top: 2px;
}

.tx-modal-action-row {
    display: flex;
    justify-content: center;
}

.tx-modal-action-row .btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tx-modal-action-row .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .details-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fluid-form-grid {
        grid-template-columns: 1fr;
    }
    
    .passenger-grid-row {
        grid-template-columns: 1fr;
    }
    
    .tx-coming-soon-modal-card {
        padding: 30px 20px;
    }
}
/* Fix for modal overlay */
.tx-coming-soon-modal-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.tx-coming-soon-modal-overlay.active {
    display: flex !important;
}

/* Ensure modal is above everything */
.tx-coming-soon-modal-overlay.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
/* Inline Field Error Typography */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    animation: fadeInError 0.2s ease-in-out;
}

/* Ensure positioning behaves inside wrappers */
.input-icon-field, .passenger-field-wrapper {
    display: flex;
    flex-direction: column;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}