/* css/style.css - Universal Tours Col */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --bg-dark: #ffffff;
    --bg-darker: #f9fbfd;
    --bg-card: #ffffff;
    --gold: #d4af37;
    --gold-light: #f1d592;
    --gold-dark: #b8860b;
    --primary-blue: #d4af37;
    --primary-light-blue: #f1d592;
    --accent-orange: #ff6f00;   /* Vibrant Orange Restored */
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    font-weight: 700;
}

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

a:hover {
    color: var(--primary-light-blue);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}

.loader-logo {
    width: 150px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.progress-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-light-blue);
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* --- Navigation --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 77, 153, 0.1);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo img {
    height: 95px;
    cursor: pointer;
    transition: var(--transition);
}

/* Premium Side Menu Overlay */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(0, 77, 153, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
    text-align: center;
}

.nav-links.active li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for menu items */
.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
.nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
.nav-links.active li:nth-child(7) { transition-delay: 0.7s; }

.nav-links a {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 60%;
}

.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.lang-toggle:hover {
    background: var(--primary-blue);
    color: white;
}

/* Premium Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
    cursor: pointer;
    z-index: 1001; /* Above the sliding panel */
    padding: 5px;
}

.hamburger span {
    width: 35px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    transform-origin: center;
}

/* Hamburger Active State (X) */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-orange);
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
    transform: translateY(-2px);
}
footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 77, 153, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--primary-blue);
}

.footer-col p, .footer-col ul {
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .nav-links {
        max-width: 100%;
        padding: 2rem;
    }

    .grid-2-col-responsive {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .about-experience-box {
        right: 10px !important;
        bottom: -20px !important;
        padding: 1rem !important;
    }
    body {
        overflow-x: hidden;
    }
}

.grid-2-col-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 77, 153, 0.3);
}

.about-experience-box h3 {
    color: white !important;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}
.hero-title {
    font-size: 4rem;
}
.hero-subtitle {
    color: white;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
}

/* === IMMERSIVE HERO SECTION === */
.hero-immersive {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-slide-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.hero-slide-item.active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns Animation Variants */
@keyframes kenBurnsZoomIn {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-10px, -5px); }
}
@keyframes kenBurnsZoomOut {
    0%   { transform: scale(1.15) translate(-5px, 5px); }
    100% { transform: scale(1) translate(0, 0); }
}
@keyframes kenBurnsPanLeft {
    0%   { transform: scale(1.08) translate(15px, 0); }
    100% { transform: scale(1.12) translate(-15px, -5px); }
}
@keyframes kenBurnsPanRight {
    0%   { transform: scale(1.1) translate(-15px, 5px); }
    100% { transform: scale(1.05) translate(15px, 0); }
}

/* Cinematic Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.35) 65%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10vh;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Destination Badge */
.hero-destination-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s, transform 0.3s;
}

.hero-destination-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Main Title */
.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-main-title span {
    color: var(--gold);
    position: relative;
}

/* Subtitle */
.hero-subtitle-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 620px;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    background: var(--accent-orange);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(255, 111, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(255, 111, 0, 0.55);
    color: white;
}

/* Pulse animation for primary CTA */
.hero-cta-primary {
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(255, 111, 0, 0.45); }
    50% { box-shadow: 0 6px 35px rgba(255, 111, 0, 0.65), 0 0 0 6px rgba(255, 111, 0, 0.1); }
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: var(--gold);
    font-size: 0.95rem;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-indicator {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-indicator.active {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
}

.hero-indicator.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    animation: indicatorProgress 7s linear forwards;
}

@keyframes indicatorProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Scroll Down Arrow */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
}

.hero-scroll-down:hover {
    color: white;
}

.hero-scroll-down span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-scroll-down i {
    font-size: 1rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

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

/* Tablet */
@media (max-width: 992px) {
    .hero-content-wrapper {
        align-items: center;
        padding-bottom: 0;
    }
    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-bar {
        justify-content: center;
    }
    .hero-indicators {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
    }
    .hero-destination-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-immersive {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-main-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        letter-spacing: -0.5px;
    }
    .hero-subtitle-text {
        font-size: 0.95rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .hero-trust-item {
        font-size: 0.8rem;
    }
    .hero-scroll-down {
        display: none;
    }
    .hero-indicators {
        bottom: 15px;
    }
    .hero-content-wrapper {
        padding-bottom: 80px;
    }
    .hero-destination-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 0.8rem;
        padding: 0.9rem 1.2rem;
        letter-spacing: 1px;
    }
}

/* Large Desktop / TV */
@media (min-width: 1400px) {
    .hero-main-title {
        font-size: 5rem;
    }
    .hero-subtitle-text {
        font-size: 1.4rem;
    }
    .hero-content {
        max-width: 900px;
    }
}

@media (min-width: 1920px) {
    .hero-main-title {
        font-size: 5.5rem;
    }
    .hero-subtitle-text {
        font-size: 1.6rem;
        max-width: 750px;
    }
    .hero-cta-primary {
        padding: 1.3rem 3.5rem;
        font-size: 1.1rem;
    }
    .hero-cta-secondary {
        padding: 1.3rem 3.5rem;
        font-size: 1.05rem;
    }
    .hero-trust-item {
        font-size: 1rem;
    }
}

/* Stats Rounded Box */
.stats-rounded-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 77, 153, 0.1);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.stat-item-premium {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1rem;
}

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

.stat-item-premium strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item-premium p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Partners Bar */
.partners-bar {
    background: var(--primary-blue);
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-radius: 0 0 30px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Tour Card Premium */
.tour-card-premium {
    background: white;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card-premium:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.tour-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.tour-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-tag {
    color: #4da6ff;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.tour-card-content h3 {
    color: #004d99; /* Blue from image */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.tour-card-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tour-card-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-card-list li::before {
    content: '•';
    color: #4da6ff;
    font-weight: bold;
}

.tour-card-price {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.price-label { font-size: 0.8rem; color: #888; }
.price-value { font-size: 1.4rem; font-weight: 700; color: #333; display: block; }

.tour-card-btn {
    background: #ff6f00; /* Original Orange from image */
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    display: block;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

/* === PREMIUM TESTIMONIAL SLIDER === */
.section-testimonials-premium {
    padding: 8rem 0;
    background: #fafcff;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-tagline {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.testimonial-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    cursor: grab;
}

.testimonial-slider-track:active {
    cursor: grabbing;
}

.testimonial-slide {
    flex: 0 0 100%; /* Show one card at a time for maximum impact */
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Floating Destination Badge */
.testimonial-badge {
    position: absolute;
    top: -15px;
    background: var(--gold);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #444;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-info h4 {
    margin: 0;
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Slider Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.testimonial-btn:hover {
    background: var(--bg-dark);
    color: white;
    border-color: var(--bg-dark);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    width: 25px;
    border-radius: 10px;
    background: var(--gold);
}



@media (max-width: 992px) {
    .section-testimonials {
        padding: 5rem 0;
    }
    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item-premium:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }
    .section-testimonials-premium {
        padding: 5rem 0;
    }
    .testimonial-btn {
        display: none; /* Hide buttons on mobile for swipe focus */
    }
}

@media (max-width: 600px) {
    .stats-grid-premium {
        grid-template-columns: 1fr;
    }
    .stat-item-premium { 
        border-right: none; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        padding-bottom: 1rem; 
        margin-bottom: 1rem; 
    }
    .stat-item-premium:last-child {
        border-bottom: none;
    }
    .partners-bar {
        text-align: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
}

/* --- Excellence Section Styles --- */
.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bar-item {
    margin-bottom: 2rem;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.bar-container {
    height: 10px;
    background: #f0f4f8;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--accent-orange));
    width: 0;
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.1, 0, 0.2, 1);
}

.impact-bg-section {
    padding: 10rem 0;
    background-image: url('../images/happy-travelers.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .impact-bg-section {
        background-attachment: scroll;
        padding: 6rem 0;
    }
}

.impact-bg-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(212,175,55,0.05);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Mobile Adjustments for Excellence */
@media (max-width: 900px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
