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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #2D1A1E;
    /* Refined warm deep charcoal/brown */
    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: #7A0016;
    /* Deep Luxurious Crimson Base */
    padding: 5px 0;
    border-bottom: 2px solid #FF4D00;
    /* Vivid Orange-Red accent line */
}

.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: #FF7333;
    /* Bright Coral Orange icon accent */
    margin-right: 8px;
    font-size: 13px;
}

/* ============================================================
   MAIN HEADER / NAVIGATION
   ============================================================ */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(122, 0, 22, 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: #7A0016;
    text-decoration: none;
}

.logo i {
    color: #FF4D00;
    /* Vivid Orange-Red logo color icon */
    font-size: 30px;
}

.logo span {
    color: #7A0016;
}

.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: #7F6E72;
    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: #FF4D00;
    /* Orange dynamic line */
    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: #FF4D00;
}

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

/* ============================================================
   DYNAMIC NAVIGATION AUTH BUTTON STYLING VARIATIONS
   ============================================================ */

/* 1. Logout Link Accent */
.nav-menu li.nav-logout a {
    color: #DC2626 !important;
    /* Vivid Red danger */
    font-weight: 600;
}

.nav-menu li.nav-logout a:hover {
    color: #991B1B !important;
    background-color: rgba(220, 38, 38, 0.05);
    border-radius: 4px;
}

/* 2. Booking History Accent (Polished Sage Link) */
.nav-menu li.nav-history a {
    color: #EA580C !important;
    /* Secondary operational orange tone */
    font-weight: 600;
}

.nav-menu li.nav-history a:hover {
    color: #C2410C !important;
    background-color: rgba(234, 88, 12, 0.05);
    border-radius: 4px;
}

/* 3. Login Link Accent */
.nav-menu li.nav-login a {
    color: #2D1A1E !important;
    font-weight: 600;
}

.nav-menu li.nav-login a:hover {
    color: #7A0016 !important;
}

/* 4. Register Link Call-To-Action */
.nav-menu li.nav-register a {
    color: #fff !important;
    background-color: #FF4D00;
    /* Orange block button */
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.nav-menu li.nav-register a:hover {
    background-color: #FF7333;
    box-shadow: 0 4px 6px -1px rgba(255, 77, 0, 0.2);
}

/* Active Highlight Fallback Fix overrides */
.nav-menu li.nav-history a.active,
.nav-menu li.nav-login a.active {
    border-bottom: 2px solid currentColor;
}

/* ============================================================
   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: #FF4D00;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.btn-primary:hover {
    background: #7A0016;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 0, 22, 0.4);
}

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

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

.btn-cta {
    background: #EA580C;
    /* Secondary bright functional Orange balance */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-cta:hover {
    background: #C2410C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

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

.btn-outline:hover {
    background: #FF4D00;
    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: #fbbf24;
    color: #2A0005;
}

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

.badge-blue {
    background: #EA580C;
    /* Secondary orange badge profile */
    color: #ffffff;
}

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

.section-title span {
    color: #FF4D00;
}

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

/* ============================================================
   TEST CONTENT
   ============================================================ */
.hero-test {
    padding: 80px 0;
    text-align: center;
    background: #FFF5F5;
    /* Warm coral ultra-light background */
}

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

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

/* ============================================================
   FULLY ISOLATED ARCHITECTURE FOR CORPORATE SITE FOOTER
   ORANGE & WHITE THEME
   ============================================================ */
.tx-main-site-footer-block {
    background: #ebdbdb !important;
    /* White Base */
    color: #1A1A1A !important;
    padding: 70px 0 30px 0 !important;
    border-top: 4px solid #FF6B00 !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    box-shadow: 0 -4px 20px rgba(255, 107, 0, 0.08) !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, 107, 0, 0.15) !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: #1A1A1A !important;
    margin-bottom: 15px !important;
}

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

.tx-brand-bio-paragraph {
    font-size: 15px !important;
    color: #13171c !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

/* Heading Column Rules */
.tx-footer-column-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1A1A1A !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: #FF6B00 !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: #334155 !important;
    font-size: 15px !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: #FF6B00 !important;
    padding-left: 6px !important;
}

/* Contact Details Infrastructure */
.tx-contact-info-row-item {
    font-size: 14px !important;
    color: #666666 !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: #FF6B00 !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: #334155 !important;
    line-height: 1.8 !important;
    font-size: 15px !important;
}

.tx-footer-contact-interactive-link {
    color: #334155 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    line-height: 1.8 !important;
    font-size: 15px !important;
}

.tx-footer-contact-interactive-link:hover {
    color: #FF6B00 !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: #888888 !important;
    padding-top: 10px !important;
}

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

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

.tx-footer-love-note-string i {
    color: #FF6B00 !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 var(--premium-sand);
        margin-top: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid var(--premium-sand);
        width: 100%;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-menu li a:hover {
        color: #FF4D00;
        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;
    }
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7F6E72;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    user-select: none;
}

.password-wrapper .toggle-password:hover {
    color: #FF4D00;
}

/* ============================================================
   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(122, 0, 22, 0.05);
    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;
}

.tour-card-small {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(122, 0, 22, 0.04);
    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(122, 0, 22, 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 {
    padding: 10px 12px 12px;
    text-align: center;
}

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

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

@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;
    }
}

@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;
    }
}

@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;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.carousel-slide:first-child {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.slide-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(122, 0, 22, 0.2) 0%, rgba(42, 0, 5, 0.75) 100%);
    pointer-events: none;
}

.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: #FF7333;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-info .price {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    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: #FF4D00;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
}

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

.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: #7A0016;
    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;
    color: #FF4D00;
    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 {
    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: #FF4D00;
    width: 35px;
    border-radius: 10px;
}

.dot:hover {
    background: #C2410C;
}

/* ============================================================
   RESPONSIVE: CAROUSEL TABLET & MOBILE OVERRIDES
   ============================================================ */
@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;
    }
}

@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;
    }
}

@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;
}

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

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(122, 0, 22, 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);
}

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

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

.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 THEMES SCREEN SYSTEM
   ============================================================ */
@media screen and (max-width: 992px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-card {
        height: 250px;
    }
}

@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;
    }
}

@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 {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(122, 0, 22, 0.06);
    transition: all 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 0, 22, 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: #EA580C;
    /* Mapped secondary orange */
    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: #7A0016;
    margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================================
   RESPONSIVE HOLIDAY GRIDS 
   ============================================================ */
@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);
    }
}

@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;
    }
}

@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;
    margin-top: 20px;
}

.view-all .btn {
    display: inline-block;
}

/* ============================================================
   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: #7A0016;
    margin-bottom: 20px;
}

.about-title span {
    color: #FF4D00;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5C4A4E;
    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: #7A0016;
    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: #FF4D00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

@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: #FFF5F5;
}

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

.feature-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(122, 0, 22, 0.04);
    transition: all 0.3s ease;
}

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

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: #7A0016;
    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: #FF4D00;
    transform: scale(1.05) rotate(5deg);
}

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

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #7A0016;
    margin-bottom: 8px;
}

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

.feature-card-empty {
    visibility: hidden;
}

/* ============================================================
   RESPONSIVE WHY CHOOSE PANELS
   ============================================================ */
@media screen and (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card-empty {
        display: none;
    }
}

@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;
    }
}

@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 
   ============================================================ */
.reviews-section {
    padding: 60px 0;
    background: #ffffff;
}

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

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

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-slide:first-child {
    display: block;
}

.review-card {
    background: #FFFDFD;
    /* Warm Frosted Ivory background */
    border-radius: 15px;
    padding: 35px 40px;
    box-shadow: 0 3px 15px rgba(122, 0, 22, 0.03);
}

.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: #7A0016;
}

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

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

.review-stars {
    color: #fbbf24;
    font-size: 16px;
}

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

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5C4A4E;
    margin: 0 0 15px 0;
    font-style: italic;
}

.review-footer {
    border-top: 1px solid #FFF5F5;
    padding-top: 15px;
}

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

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

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

.review-btn:hover {
    background: #7A0016;
    color: #ffffff;
    border-color: #7A0016;
}

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

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

.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: #2A0005;
    width: 35px;
    border-radius: 10px;
}

.review-dot:hover {
    background: #FF4D00;
}

/* ============================================================
   RESPONSIVE REVIEWS CAROUSEL OVERRIDES
   ============================================================ */
@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 - MIGRATION PRESET VARIABLES
   ============================================================ */
:root {
    --premium-gold: #FF4D00;
    --premium-gold-light: #FF7333;
    --premium-navy: #7A0016;
    --premium-deep-blue: #9E0022;
    --premium-mid-blue: #C41230;
    --premium-sand: #FFF5F5;
    --premium-charcoal: #2A0005;
    --premium-cream: #FFFDFD;
    --premium-rose: #DC2626;
    --premium-teal: #EA580C;
}

.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(255, 77, 0, 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(255, 77, 0, 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-deep-blue);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p {
    color: #5C4A4E;
    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: #7F6E72;
    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(122, 0, 22, 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: #7F6E72;
    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(255, 77, 0, 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(122, 0, 22, 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(255, 77, 0, 0.1), rgba(255, 77, 0, 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: #5C4A4E;
    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(255, 77, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 77, 0, 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(122, 0, 22, 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(255, 77, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-card .mv-icon {
    background: rgba(255, 77, 0, 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.85);
}

.vision-card p {
    color: #5C4A4E;
}

.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: #453337;
}

.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(122, 0, 22, 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: #5C4A4E;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE PREMIUM STYLE TIERS
   ============================================================ */
.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(255, 77, 0, 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(255, 77, 0, 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(122, 0, 22, 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: #5C4A4E;
    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: #7F6E72;
}

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

/* ============================================================
   CTA PREMIUM INTERFACES
   ============================================================ */
.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: white;
    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(255, 77, 0, 0.3);
}

.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(255, 77, 0, 0.1);
}

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

.cta-symbol {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 77, 0, 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 PREMIUM DECK GRID HOOKS
   ============================================================ */
@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;
    }

    .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: var(--premium-gold-light);
}

.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: var(--premium-teal);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

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

.mini-metrics-row {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    border-top: 1px solid var(--premium-sand);
    padding-top: 25px;
}

.metric-item h3 {
    font-size: 32px;
    color: var(--premium-teal);
    font-weight: 800;
    margin-bottom: 2px;
}

.metric-item p {
    font-size: 13px;
    color: #7F6E72;
    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(122, 0, 22, 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(122, 0, 22, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--premium-teal);
}

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

.floating-badge-card h4 {
    font-size: 14px;
    color: var(--premium-navy);
    margin: 0;
}

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

.core-values-section {
    padding: 80px 0;
    background: var(--premium-sand);
}

.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(122, 0, 22, 0.04);
    transition: transform 0.3s ease;
}

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

.value-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(234, 88, 12, 0.1);
    color: var(--premium-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

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

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

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

.cta-banner-card {
    background: var(--premium-navy);
    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: #fca5a5;
    margin-bottom: 30px;
    font-size: 16px;
}

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

@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
   ============================================================ */
.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: var(--premium-sand);
    color: #453337;
    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: #cbd5e1;
    color: var(--premium-charcoal);
}

.filter-pill.active {
    background: var(--premium-navy);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(122, 0, 22, 0.25);
}

.dynamic-packages-grid {
    transition: all 0.4s ease;
}

.custom-advisory-banner {
    background: var(--premium-sand);
    padding: 50px 0;
    border-top: 1px solid var(--premium-sand);
}

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

.advisory-text h2 {
    font-size: 28px;
    color: var(--premium-navy);
    margin-bottom: 8px;
    font-weight: 800;
}

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

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

.package-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

@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;
}

.transport-fleet-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.transport-img-wrapper {
    height: 220px !important;
    background-color: var(--premium-cream);
}

.fleet-card {
    border: 1px solid var(--premium-sand);
}

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

.fleet-features span {
    background: rgba(255, 77, 0, 0.08);
    color: var(--premium-teal);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.fleet-features i {
    color: var(--premium-teal);
    margin-right: 4px;
}

.transport-assurances {
    padding: 60px 0 80px;
    background: var(--premium-sand);
}

@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;
    position: relative;
    cursor: pointer;
}

.destination-tag-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(122, 0, 22, 0.85);
    color: var(--premium-gold-light);
    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: #fbbf24;
    font-weight: 600;
    margin: 4px 0 0 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.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: #e2e8f0;
    line-height: 1.5;
    margin: 12px 0;
}

.btn-destination-card {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none;
    background: var(--premium-navy);
}

.destination-premium-card:hover .destination-custom-overlay {
    background: linear-gradient(to bottom, rgba(122, 0, 22, 0.3) 0%, rgba(42, 0, 5, 0.95) 100%);
    padding-bottom: 40px;
}

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

.destination-metrics-bar {
    background: var(--premium-sand);
    padding: 40px 0;
    border-top: 1px solid var(--premium-sand);
}

.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: var(--premium-teal);
}

.strip-item h4 {
    font-size: 16px;
    color: var(--premium-navy);
    margin: 0 0 2px 0;
    font-weight: 700;
}

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

@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
   ============================================================ */
.popular-hero-split {
    padding: 80px 0 60px;
    background: #1a202c;
    color: #ffffff;
    border-bottom: 4px solid #7A0016;
}

.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: #FF7333;
}

.pop-hero-text p {
    color: #9ca3af;
    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: #fbbf24;
    font-weight: 800;
}

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

.popular-tours-list {
    padding: 80px 0;
    background: #FFF5F5;
}

.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(122, 0, 22, 0.04);
    margin-bottom: 50px;
    align-items: center;
    border: 1px solid var(--premium-sand);
}

.tour-editorial-row.alternate-reverse {
    grid-template-columns: 1.1fr 1fr;
}

.tour-editorial-row.alternate-reverse .tour-row-media {
    order: 2;
}

.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: #fbbf24;
    color: #2A0005;
    font-weight: 800;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.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: #7A0016;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

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

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

.tour-highlights-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tour-highlights-strip span {
    background: #FFF5F5;
    color: #2A0005;
    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: #7A0016;
}

.tour-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--premium-sand);
    padding-top: 20px;
}

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

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

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

@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
   ============================================================ */
.contact-header-panoramic {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

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

.panoramic-tag {
    color: #FF7333;
    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: #fbbf24;
}

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

.direct-channels-tier {
    padding: 0;
    margin-top: -50px;
    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(122, 0, 22, 0.08);
    border: 1px solid var(--premium-sand);
    transition: transform 0.3s ease;
}

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

.node-icon-circle {
    width: 55px;
    height: 55px;
    background: #FFF5F5;
    color: #7A0016;
    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: #7A0016;
    margin-bottom: 8px;
    font-weight: 700;
}

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

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

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

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

.panoramic-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.panoramic-form-holder {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    background: #FFFDFD;
    padding: 50px 60px;
    border: 1px solid var(--premium-sand);
}

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

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

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

.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: #7A0016;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.input-icon-field {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-icon-field i {
    position: absolute;
    left: 16px;
    color: #A18F93;
    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 var(--premium-sand);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #2D1A1E;
    transition: all 0.3s ease;
}

.clean-fluid-form input:focus,
.clean-fluid-form select:focus,
.clean-fluid-form textarea:focus {
    outline: none;
    border-color: #7A0016;
    box-shadow: 0 4px 15px rgba(122, 0, 22, 0.08);
}

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

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

.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: #FFF5F5;
    color: #7A0016;
    border: 1px solid rgba(255, 77, 0, 0.2);
}

@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: #7A0016;
    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: #cbd5e1;
    line-height: 1.6;
}

.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: #7A0016;
    margin-bottom: 8px;
}

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

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

.itinerary-timeline {
    position: relative;
    border-left: 3px dashed var(--premium-sand);
    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 #FF4D00;
}

.node-card-content {
    background: #FFFDFD;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid var(--premium-sand);
}

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

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

.details-sticky-desk {
    position: sticky;
    top: 100px;
}

.summary-desk-card {
    background: #ffffff;
    border: 1px solid var(--premium-sand);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(122, 0, 22, 0.05);
}

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

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

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

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

.desk-inclusions-list {
    margin-bottom: 30px;
    border-top: 1px solid var(--premium-sand);
    padding-top: 20px;
}

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

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

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

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

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

@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: #FFFDFD;
}

.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 var(--premium-sand);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.legal-block-card p {
    font-size: 15px;
    color: #5C4A4E;
    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: #5C4A4E;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.legal-sidebar-desk {
    position: sticky;
    top: 100px;
}

.legal-summary-card {
    background: #7A0016;
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(122, 0, 22, 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: #A18F93;
    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: #FF7333 !important;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

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

@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 - COMPACT SCHEMES
   ============================================================ */
.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: #7A0016;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--premium-sand);
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

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

.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: #7A0016;
    margin-bottom: 6px;
}

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

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

.input-icon-field input,
.input-icon-field select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cbd5e1;
    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: #FF4D00;
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

#passengerCount {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cbd5e1;
    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='%237F6E72' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.passenger-form-block {
    background: #FFFDFD;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #7A0016;
    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: #7A0016;
    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: #5C4A4E;
    margin-bottom: 5px;
    font-weight: 500;
}

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

.passenger-field-wrapper input:focus {
    outline: none;
    border-color: #FF4D00;
    box-shadow: 0 0 0 3px rgba(255, 77, 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(122, 0, 22, 0.08);
}

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

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

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

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

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

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

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

.calc-total-row span {
    font-weight: 600;
    color: #7A0016;
}

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

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

.desk-inclusions-list h4 {
    font-size: 13px;
    font-weight: 600;
    color: #7A0016;
    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: #5C4A4E;
}

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

.btn-desk-action {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF4D00, #C2410C);
    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, 77, 0, 0.3);
}

/* ============================================================
   MODALS ARCHITECTURES OVERLAYS
   ============================================================ */
.tx-coming-soon-modal-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 0, 5, 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: #94A3B8;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

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

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

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

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

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

.modal-secondary-text {
    font-size: 13px;
    color: #64748B;
    background: #FFF5F5;
    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: #FF4D00;
    margin-top: 2px;
}

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

.tx-modal-action-row .btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF4D00, #C2410C);
    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, 77, 0, 0.3);
}

@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;
    }
}

/* Error Typography Inline Box rules */
.error-message {
    display: block;
    color: #DC2626;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    animation: fadeInError 0.2s ease-in-out;
}

.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);
    }
}

/* ==========================================================================
   Auth Pages Styling (Login, Register, Forgot Password)
   ========================================================================== */
.auth-container {
    max-width: 450px;
    margin: 60px auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(122, 0, 22, 0.04), 0 1px 8px rgba(122, 0, 22, 0.1);
    box-sizing: border-box;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #7A0016;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 14px;
    color: #7F6E72;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 9px;
    color: #2D1A1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #A18F93;
    font-size: 16px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 13px 16px 13px 46px;
    border: 2px solid var(--premium-sand);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    color: #2D1A1E;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input:focus {
    border-color: #FF4D00;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.12);
    color: #7A0016;
}

.auth-input:focus+i {
    color: #FF4D00;
}

.password-toggle {
    position: absolute;
    right: 16px;
    cursor: pointer;
    color: #A18F93;
    transition: color 0.2s ease;
    z-index: 5;
}

.password-toggle:hover {
    color: #5C4A4E;
}

.auth-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 28px;
    color: #5C4A4E;
}

.auth-meta label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.auth-meta input[type="checkbox"] {
    accent-color: #FF4D00;
    width: 16px;
    height: 16px;
}

.auth-meta a {
    color: #FF4D00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-meta a:hover {
    color: #C2410C;
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background: #7A0016;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(122, 0, 22, 0.2);
    transition: all 0.2s ease;
}

.btn-auth:hover {
    background: #2A0005;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(122, 0, 22, 0.3);
}

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

.auth-divider {
    text-align: center;
    margin: 24px 0;
    color: #A18F93;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--premium-sand);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-switch {
    text-align: center;
    font-size: 15px;
    color: #5C4A4E;
    margin-top: 24px;
}

.auth-switch a {
    color: #FF4D00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-switch a:hover {
    color: #C2410C;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.alert-danger {
    background: #fff5f5;
    color: #DC2626;
    border: 1px solid #fed7d7;
    border-left: 4px solid #DC2626;
}

.alert-success {
    background: rgba(255, 77, 0, 0.05);
    color: #FF4D00;
    border: 1px solid rgba(255, 77, 0, 0.15);
    border-left: 4px solid #FF4D00;
}

/* Payment Gateway Selection Styles */
.payment-gateway-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-gateway-card {
    flex: 1;
    min-width: 200px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}

.payment-gateway-card:hover {
    border-color: #FF4D00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-gateway-card.selected {
    border-color: #FF4D00;
    background: #fdf0f0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.payment-gateway-card .gateway-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.payment-gateway-card h4 {
    margin: 10px 0 5px;
    color: #0f172a;
    font-size: 16px;
}

.payment-gateway-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.payment-gateway-card .radio-circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    margin-top: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.payment-gateway-card.selected .radio-circle {
    border-color: #FF4D00;
}

.payment-gateway-card.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF4D00;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-gateway-options {
        flex-direction: column;
    }
    .payment-gateway-card {
        min-width: unset;
    }
    .confirm-modal-card {
        padding: 30px 20px;
    }
    .confirm-modal-actions {
        flex-direction: column;
    }
}


/* Confirmation Modal Styles */
.confirm-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.confirm-modal-overlay.active {
    display: flex;
}

.confirm-modal-card {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.confirm-modal-card .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
}

.confirm-modal-card .modal-close:hover {
    color: #e74c3c;
    transform: rotate(90deg);
}

.confirm-modal-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 15px;
}

.confirm-modal-card h2 {
    text-align: center;
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 10px;
}

.confirm-modal-card .gateway-name {
    color: #059669;
    font-weight: 700;
}

.confirm-modal-card .payment-summary {
    background: #f8fafc;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.confirm-modal-card .payment-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.confirm-modal-card .payment-summary .summary-row:not(:last-child) {
    border-bottom: 1px dashed #e2e8f0;
}

.confirm-modal-card .payment-summary .summary-row .label {
    color: #64748b;
}

.confirm-modal-card .payment-summary .summary-row .value {
    color: #0f172a;
    font-weight: 600;
}

.confirm-modal-card .payment-summary .total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0 0;
    margin-top: 8px;
    border-top: 2px solid #059669;
    font-size: 17px;
}

.confirm-modal-card .payment-summary .total-row .total-label {
    color: #0f172a;
    font-weight: 700;
}

.confirm-modal-card .payment-summary .total-row .total-value {
    color: #059669;
    font-weight: 700;
    font-size: 18px;
}

.confirm-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.confirm-modal-actions button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-modal-actions .btn-cancel {
    background: #f1f5f9;
    color: #475569;
}

.confirm-modal-actions .btn-cancel:hover {
    background: #e2e8f0;
}

.confirm-modal-actions .btn-confirm {
    background: #059669;
    color: #fff;
}

.confirm-modal-actions .btn-confirm:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .payment-gateway-options {
        flex-direction: column;
    }
    .payment-gateway-card {
        min-width: unset;
    }
    .confirm-modal-card {
        padding: 30px 20px;
    }
    .confirm-modal-actions {
        flex-direction: column;
    }
}