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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #1e293b; /* Premium rich Slate graphite text color */
    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: #1e293b; /* Dark Steel Graphite Base */
    padding: 6px 0;
    border-bottom: 2px solid #e11d48; /* Tech Crimson focus accent boundary 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: #e11d48; /* Crimson icon accents */
    margin-right: 8px;
    font-size: 13px;
}

/* ============================================================
   MAIN HEADER / NAVIGATION
   ============================================================ */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.05);
    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: #1e293b;
    text-decoration: none;
}

.logo i {
    color: #e11d48; /* Vivid Tech Crimson logo icon */
    font-size: 30px;
}

.logo span {
    color: #e11d48;
}

.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: #475569;
    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: #e11d48; /* Crimson slider 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: #e11d48;
}

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

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

/* 1. Logout Link Accent */
.nav-menu li.nav-logout a {
    color: #be123c !important; /* Deep Crimson Alert danger link */
    font-weight: 600;
}
.nav-menu li.nav-logout a:hover {
    color: #9f1239 !important;
    background-color: rgba(225, 29, 72, 0.05);
    border-radius: 4px;
}

/* 2. Booking History Accent */
.nav-menu li.nav-history a {
    color: #4f46e5 !important; /* High-end Indigo link marker */
    font-weight: 600;
}
.nav-menu li.nav-history a:hover {
    color: #4338ca !important;
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 4px;
}

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

/* 4. Register Link Call-To-Action */
.nav-menu li.nav-register a {
    color: #fff !important;
    background-color: #e11d48; /* Clean minimalist high-conversion 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: #be123c;
    box-shadow: 0 4px 6px -1px rgba(225, 29, 72, 0.25);
}

/* 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: 8px; /* Refined structured radius footprint */
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #e11d48;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.25);
}

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

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

.btn-cta {
    background: #4f46e5; /* Nordic Indigo secondary layout anchor */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-cta:hover {
    background: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 56, 202, 0.3);
}

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

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

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

.badge-gold {
    background: #f59e0b;
    color: #1e293b;
}

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

.badge-blue {
    background: #4f46e5;
    color: #ffffff;
}

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

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

/* ============================================================
   TEST CONTENT
   ============================================================ */
.hero-test {
    padding: 80px 0;
    text-align: center;
    background: #f8fafc; /* Crisp cool neutral background text deck */
}

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

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

/* ============================================================
   FULLY ISOLATED ARCHITECTURE FOR CORPORATE SITE FOOTER
   ============================================================ */
.tx-main-site-footer-block {
    background: #f4eeee !important; /* Premium rich deep anthracite base */
    color: #ffffff !important;
    padding: 70px 0 30px 0 !important;
    border-top: 4px solid #e11d48 !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

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

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

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

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

.tx-brand-bio-paragraph {
    font-size: 15px !important;
    color: #475569 !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: #1e1d1d !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: #e11d48 !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: #4d4f52 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    display: inline-block !important;
}

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

/* Contact Details Infrastructure */
.tx-contact-info-row-item {
    font-size: 14px !important;
    color: #cbd5e1 !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: #f43f5e !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: #434548 !important;
}

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

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

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

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

.tx-footer-love-note-string i {
    color: #e11d48 !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 SCREEN OVERRIDES
   ============================================================ */
@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 #e2e8f0;
        margin-top: 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li a:hover {
        color: #e11d48;
        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: #64748b; 
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent; 
    user-select: none;
}

.password-wrapper .toggle-password:hover {
    color: #e11d48; /* Crimson focus state toggle icons */
}

/* ============================================================
   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;
}

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

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

@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: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(30, 41, 59, 0.04);
    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: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(30, 41, 59, 0.03);
    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(30, 41, 59, 0.1);
}

.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: #1e293b; 
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@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: 8px;
}

.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: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(30, 41, 59, 0.08);
}

.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(0,0,0,0.2) 0%, rgba(30, 41, 59, 0.85) 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: #f43f5e; 
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.btn-slide:hover {
    background: #ffffff;
    color: #1e293b;
    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.95);
    border: none;
    color: #1e293b;
    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: #e11d48;
    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: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

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

.dot:hover {
    background: #be123c;
}

@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: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    display: block;
    height: 280px;
    box-shadow: 0 5px 20px rgba(30, 41, 59, 0.04);
    transition: all 0.4s ease;
}

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

.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(30,41,59,0.1) 0%, rgba(30, 41, 59, 0.7) 100%);
    transition: background 0.3s ease;
}

.theme-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 25px;
    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;
}

@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: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(30, 41, 59, 0.04);
    transition: all 0.3s ease;
}

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

.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: #4f46e5; 
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 4px;
    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: #1e293b; margin-bottom: 4px; }

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

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

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

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

.holiday-inclusions span {
    background: #f8fafc;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #334155;
}

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

.holiday-price { margin-bottom: 18px; }
.holiday-price .price { font-size: 22px; font-weight: 700; color: #1e293b; }
.holiday-price .price-label { font-size: 13px; color: #94a3b8; display: block; }

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

@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 { 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: #1e293b;
    margin-bottom: 20px;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    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: 8px;
    background: #1e293b;
    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: #e11d48;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 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: #f8fafc;
}

.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: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(30, 41, 59, 0.03);
    transition: all 0.3s ease;
}

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

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: #1e293b;
    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: #e11d48;
    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: #1e293b;
    margin-bottom: 8px;
}

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

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

@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: #f8fafc;
    border-radius: 8px;
    padding: 35px 40px;
    box-shadow: 0 3px 15px rgba(30, 41, 59, 0.02);
}

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

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

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

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

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

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

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

.review-experience {
    font-size: 14px;
    color: #64748b;
}

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

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

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

.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: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

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

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

@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: #e11d48; 
    --premium-gold-light: #f43f5e;
    --premium-navy: #1e293b;
    --premium-deep-blue: #334155;
    --premium-mid-blue: #475569;
    --premium-sand: #f8fafc;
    --premium-charcoal: #0f172a;
    --premium-cream: #fafafa;
    --premium-rose: #ef4444;
    --premium-teal: #4f46e5;
}

.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(225, 29, 72, 0.08) 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(225, 29, 72, 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: #475569;
    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: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

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

.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: #64748b; margin-bottom: 0; }

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

.main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.12);
}

.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: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    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.06); }
.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: #64748b; 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: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(225, 29, 72, 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(30, 41, 59, 0.06);
    border-color: var(--premium-gold);
}

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

.card-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(225, 29, 72, 0.03));
    -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: #475569; 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;
}

.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(225, 29, 72, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 29, 72, 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: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.06);
}

.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(225, 29, 72, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-card .mv-icon { background: rgba(225, 29, 72, 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: #64748b; }

.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: #1e293b; }
.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: 12px;
    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(30, 41, 59, 0.05);
    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: #475569; 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;
}

.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.03);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    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.08);
    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(225, 29, 72, 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: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.premium-testimonial:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.06);
    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: #475569; 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: #64748b; }
.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.04);
    border-radius: 16px;
    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: 8px;
    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(225, 29, 72, 0.3);
}

.btn-premium-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    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(225, 29, 72, 0.1);
}

.cta-decoration { display: flex; gap: 30px; margin-left: 50px; }
.cta-symbol {
    width: 60px;
    height: 60px;
    background: rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 29, 72, 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); }

@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: #475569;
    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: #64748b;
    font-weight: 600;
    margin: 0;
}

.image-wrapper-decorative { position: relative; }
.image-wrapper-decorative img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.04);
}

.floating-badge-card {
    position: absolute;
    bottom: -20px; left: -20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.08);
    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: #64748b; 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: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.02);
    transition: transform 0.3s ease;
}

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

.value-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 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: #64748b; 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: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-banner-card h2 { font-size: 32px; margin-bottom: 15px; }
.cta-banner-card p { color: #cbd5e1; 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: #1e293b;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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(30, 41, 59, 0.15);
}

.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: #475569;
    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(225, 29, 72, 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(30, 41, 59, 0.85);
    color: var(--premium-gold-light);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    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: #f59e0b;
    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(30, 41, 59, 0.3) 0%, rgba(30, 41, 59, 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: #64748b; 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 LOOK
   ============================================================ */
.popular-hero-split {
    padding: 80px 0 60px;
    background: #1e293b;
    color: #ffffff;
    border-bottom: 4px solid #e11d48;
}

.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: #f43f5e; }
.pop-hero-text p { color: #94a3b8; 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: 8px;
    text-align: center;
    min-width: 130px;
}

.accent-stat strong { display: block; font-size: 32px; color: #f59e0b; font-weight: 800; }
.accent-stat span { font-size: 12px; color: #94a3b8; text-transform: uppercase; font-weight: 600; }

.popular-tours-list { padding: 80px 0; background: #f8fafc; }
.tour-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.02);
    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: #f59e0b;
    color: #1e293b;
    font-weight: 800;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 4px;
    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: #e11d48;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.tour-row-details h2 { font-size: 28px; color: #1e293b; margin-bottom: 15px; font-weight: 700; }
.tour-row-details p { font-size: 15px; color: #475569; 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: #f8fafc;
    color: #1e293b;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.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: #94a3b8; letter-spacing: 0.5px; }
.meta-price { font-size: 24px; font-weight: 800; color: #1e293b; }
.meta-price small { font-size: 13px; color: #64748b; 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: #f43f5e; 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: #f59e0b; }
.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: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
    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: #f8fafc;
    color: #e11d48;
    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: #1e293b; margin-bottom: 8px; font-weight: 700; }
.node-card-minimal p { font-size: 13px; color: #64748b; line-height: 1.5; margin-bottom: 15px; }
.node-action-link { font-size: 16px; color: #e11d48; font-weight: 700; transition: color 0.2s ease; }
.node-action-link:hover { color: #1e293b; }
.node-static-text { color: #1e293b; 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: 16px;
    background: #fafafa;
    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: #1e293b; font-weight: 800; margin-bottom: 6px; }
.form-title-center p { font-size: 13px; color: #94a3b8; 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: #1e293b;
    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: #94a3b8; 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: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.clean-fluid-form input:focus, .clean-fluid-form select:focus, .clean-fluid-form textarea:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.08);
}

.form-submit-centered-action { text-align: center; margin-top: 35px; }
.btn-panoramic-send { padding: 15px 40px; font-size: 16px; border-radius: 8px; }

.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: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

@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: #1e293b;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 4px;
    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: #1e293b; margin-bottom: 8px; }
.details-itinerary-area h2 span { color: #e11d48; }
.itinerary-intro { font-size: 15px; color: #64748b; margin-bottom: 40px; }

.itinerary-timeline { position: relative; border-left: 3px dashed #e2e8f0; padding-left: 30px; margin-left: 10px; }
.timeline-node { position: relative; margin-bottom: 35px; }
.timeline-node:last-child { margin-bottom: 0; }

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

.node-card-content { background: #fafafa; padding: 20px 25px; border-radius: 8px; border: 1px solid #e2e8f0; }
.node-card-content h3 { font-size: 16px; color: #1e293b; margin-bottom: 8px; font-weight: 700; }
.node-card-content p { font-size: 14px; color: #475569; line-height: 1.6; margin: 0; }

.details-sticky-desk { position: sticky; top: 100px; }
.summary-desk-card {
    background: #ffffff; border: 1px solid #e2e8f0;
    padding: 35px; border-radius: 12px;
    box-shadow: 0 10px 35px rgba(30, 41, 59, 0.04);
}

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

.desk-price-row { margin-bottom: 25px; }
.desk-amount { font-size: 32px; font-weight: 800; color: #1e293b; display: block; line-height: 1.1; }
.desk-sub { font-size: 13px; color: #94a3b8; }

.desk-inclusions-list { margin-bottom: 30px; border-top: 1px solid #e2e8f0; padding-top: 20px; }
.desk-inclusions-list h4 { font-size: 14px; color: #1e293b; margin-bottom: 12px; }
.desk-inclusions-list ul { display: flex; flex-direction: column; gap: 10px; }
.desk-inclusions-list li { font-size: 13px; color: #475569; display: flex; align-items: center; gap: 10px; }
.desk-inclusions-list i { color: #4f46e5; }

.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: #fafafa; }
.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: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01); }
.legal-block-card h2 { font-size: 22px; color: #1e293b; margin-bottom: 15px; font-weight: 700; }
.legal-block-card p { font-size: 15px; color: #475569; 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: #475569; line-height: 1.7; margin-bottom: 8px; }
.legal-block-card a { color: #e11d48; font-weight: 600; }
.legal-block-card a:hover { text-decoration: underline; }

.legal-sidebar-desk { position: sticky; top: 100px; }
.legal-summary-card { background: #1e293b; color: #ffffff; padding: 35px; border-radius: 12px; box-shadow: 0 10px 30px rgba(30, 41, 59, 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: #94a3b8; 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: #f43f5e !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
   ============================================================ */
.clean-fluid-form { background: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.booking-section-heading { color: #1e293b; margin-bottom: 20px; border-bottom: 2px solid #f8fafc; padding-bottom: 10px; font-size: 18px; font-weight: 600; }
.booking-section-heading i { margin-right: 10px; color: #4f46e5; }

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

.input-icon-field { position: relative; }
.input-icon-field i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #64748b; 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: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 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='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.passenger-form-block {
    background: #fafafa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #1e293b;
    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: #1e293b; 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: #475569; 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: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 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(30, 41, 59, 0.05); }

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

.summary-tour-title { margin: 15px 0 5px 0; color: #1e293b; font-size: 18px; }
.summary-tour-duration { font-size: 13px; color: #64748b; margin-bottom: 15px; }
.calculation-breakdown-box { background: #fafafa; padding: 15px; border-radius: 6px; margin-bottom: 20px; }
.calc-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: #475569; }
.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: #1e293b; }

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

.desk-inclusions-list { margin-bottom: 20px; }
.desk-inclusions-list h4 { font-size: 13px; font-weight: 600; color: #1e293b; 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: #475569; }
.desk-inclusions-list ul li i { color: #e11d48; width: 16px; }

.btn-desk-action {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #e11d48, #4f46e5);
    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(225, 29, 72, 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(30, 41, 59, 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.2);
    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: #1e293b; transform: rotate(90deg); }
.tx-modal-icon-box { margin-bottom: 20px; font-size: 50px; color: #e11d48; }

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

.modal-primary-text { color: #475569; line-height: 1.6; margin-bottom: 15px; font-size: 15px; }
.modal-secondary-text {
    font-size: 13px; color: #475569; background: #f8fafc;
    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: #e11d48; margin-top: 2px; }

.tx-modal-action-row { display: flex; justify-content: center; }
.tx-modal-action-row .btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #e11d48, #4f46e5);
    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(225, 29, 72, 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: #ef4444;
    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: 12px;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.03), 0 1px 8px rgba(30, 41, 59, 0.08);
    box-sizing: border-box;
}

.auth-title { font-size: 28px; font-weight: 700; color: #1e293b; text-align: center; margin-bottom: 8px; letter-spacing: -0.5px; }
.auth-subtitle { font-size: 14px; color: #64748b; 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: #1e293b;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper i { position: absolute; left: 16px; color: #94a3b8; font-size: 16px; transition: color 0.3s ease; pointer-events: none; }

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

.auth-input:focus {
    border-color: #e11d48; 
    outline: none;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
    color: #1e293b;
}

.auth-input:focus + i { color: #e11d48; }
.password-toggle { position: absolute; right: 16px; cursor: pointer; color: #94a3b8; transition: color 0.2s ease; z-index: 5; }
.password-toggle:hover { color: #475569; }

.auth-meta { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 28px; color: #475569; }
.auth-meta label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; }
.auth-meta input[type="checkbox"] { accent-color: #e11d48; width: 16px; height: 16px; }

.auth-meta a { color: #e11d48; text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.auth-meta a:hover { color: #4f46e5; text-decoration: underline; }

.btn-auth {
    width: 100%; padding: 14px;
    background: #1e293b; color: #ffffff;
    border: none; border-radius: 6px;
    font-size: 16px; font-weight: 600; cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
    transition: all 0.2s ease;
}

.btn-auth:hover { background: #334155; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(30, 41, 59, 0.2); }
.btn-auth:active { transform: translateY(0); }

.auth-divider { text-align: center; margin: 24px 0; color: #94a3b8; 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: #f1f5f9; }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }

.auth-switch { text-align: center; font-size: 15px; color: #475569; margin-top: 24px; }
.auth-switch a { color: #e11d48; text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.auth-switch a:hover { color: #4f46e5; }

.alert { padding: 14px 18px; border-radius: 6px; 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: #ef4444; border: 1px solid #fee2e2; border-left: 4px solid #ef4444; }
.alert-success { background: rgba(225, 29, 72, 0.03); color: #e11d48; border: 1px solid rgba(225, 29, 72, 0.1); border-left: 4px solid #e11d48; }