/* ==================== RESET Y VARIABLES ==================== */
:root {
    --primary-color: #165a4c;
    --primary-dark: #0f3d35;
    --secondary-color: #2a9d8f;
    --accent-orange: #ff6b35;
    --accent-orange-hover: #e85a2a;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --tripadvisor-green: #00af87;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --topbar-height: 40px;
    --header-height: 80px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-light);
    top: 0 !important;
    position: static !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    height: var(--topbar-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item i {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.topbar-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar-item a i {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.topbar-link:hover {
    color: var(--accent-orange);
}

/* ==================== LANGUAGE SWITCH ==================== */
.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.language-switch:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.language-switch img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.language-switch:hover img {
    transform: scale(1.05);
}

.language-switch span {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

#lang-options {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#lang-options li {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

#lang-options li:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    color: var(--accent-orange);
    padding-left: 20px;
}

#lang-options li img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
    transition: all 0.4s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-orange);
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

header.scrolled .logo {
    color: var(--primary-color);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--accent-orange);
}

header.scrolled .desktop-nav a {
    color: var(--text-dark);
}

header.scrolled .desktop-nav a:hover {
    color: var(--accent-orange);
}

/* ==================== DROPDOWN MENUS ==================== */
.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    background: var(--white);
    min-width: 220px;
    max-width: calc(100vw - 60px);

    opacity: 0;
    visibility: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu.dropdown-wide {
    position: fixed;

    top: 110px; /* altura aproximada del header */
    left: 50%;

    transform: translateX(-50%);

    width: min(1200px, calc(100vw - 80px));
    max-width: calc(100vw - 80px);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 22px;
    padding: 28px;

    background: #ffffff;
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;

    z-index: 999;
}

@media (max-width: 1200px) {
    .dropdown-menu.dropdown-wide {
        width: min(950px, calc(100vw - 60px));
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .dropdown-menu.dropdown-wide {
        width: min(760px, calc(100vw - 40px));
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 18px;
    }
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
    min-width: 0;
}

.mega-menu-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-list li a {
    padding: 6px 0 !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid #f9f9f9 !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}

.mega-menu-list li a:hover {
    padding-left: 5px !important;
    background: transparent !important;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    display: block;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--accent-orange) !important;
    padding-left: 25px;
}

header.scrolled .dropdown-menu {
    background: var(--white);
}
@media (max-width: 1200px) {
    .dropdown-menu.dropdown-wide {
        width: min(950px, calc(100vw - 50px));
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .dropdown-menu.dropdown-wide {
        width: min(760px, calc(100vw - 40px));
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 18px;
    }
}

/* ==================== MOBILE DROPDOWN ==================== */
.mobile-has-dropdown {
    border-bottom: 1px solid #eee;
}

.mobile-has-dropdown .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.mobile-has-dropdown.active .mobile-dropdown {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
}

.mobile-has-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown a {
    padding: 0.8rem 3rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.mobile-dropdown-subtitle {
    padding: 12px 2rem 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f4f4f4;
    border-bottom: 1px solid #eee;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: block;
    z-index: 10001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

header.scrolled .hamburger,
header.scrolled .hamburger::before,
header.scrolled .hamburger::after {
    background: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100dvh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 10000;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--accent-orange);
    padding-left: 2.5rem;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay-bg.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0s linear 1s;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 90, 76, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 107, 53, 0.4) 100%);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transition: opacity 1s ease-in-out;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 1rem 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: slideUp 0.8s ease forwards;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 30px;
    border-radius: 6px;
    background: var(--white);
}

/* ==================== SECTIONS COMMON ==================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==================== QUIÉNES SOMOS ==================== */
.quienes-somos {
    background: var(--white);
}

.qs-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.qs-img {
    position: relative;
}

.qs-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 400px;
}

.qs-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.qs-text p,
.qs-text ul {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: justify;
}

.qs-text ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-list i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.qs-text .btn {
    margin-top: 2rem;
}

/* ==================== FEATURES ==================== */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--accent-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(22, 90, 76, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ==================== TOURS ==================== */
.tours {
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.tour-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.2);
}

.tour-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-meta i {
    color: var(--secondary-color);
}

.tour-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ==================== EXCELENCIA ==================== */
.excelencia {
    background: var(--bg-light);
}

.excelencia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.excelencia-item {
    margin-bottom: 2rem;
}

.excelencia-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.excelencia-item h3 i {
    color: var(--accent-orange);
}

.excelencia-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ==================== ABOUT ==================== */
.about {
    background: linear-gradient(135deg, #1a4d3e 0%, #0f2e25 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 90%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.about-values {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-values h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.about-values h3 i {
    color: var(--white);
}

.values-list {
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonial-track-container {
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0 2rem 0;
    margin: 0;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    text-align: left;
    position: relative;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-details h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tripadvisor-logo-small {
    height: 24px;
    opacity: 0.8;
}

.rating-circles {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.circle {
    width: 14px;
    height: 14px;
    background: var(--tripadvisor-green);
    border-radius: 50%;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.review-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-meta .dot-sep {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.review-footer {
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.old-stuff {
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-image-card:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0.5rem;
}

.next-btn {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.current-slide {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.rating {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-light);
}

/* ==================== PARTNERS ==================== */
.partners {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partners-logos img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}

.partners-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* ==================== CONTACT ==================== */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(22, 90, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

/* ==================== FORM ==================== */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 90, 76, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #08201b;
    background-image: linear-gradient(rgba(8, 32, 27, 0.92), rgba(8, 32, 27, 0.95)), url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #e5e7eb;
    padding-top: 5rem;
    font-size: 0.9rem;
    position: relative;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-title {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mt-2 {
    margin-top: 2rem;
}

.footer-list {
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-list li a {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.icons-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.icons-list li i {
    color: var(--accent-orange);
    margin-top: 5px;
}

.sub-item {
    padding-left: 1rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.highlight {
    color: var(--white);
    font-weight: 600;
    margin-top: 10px;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.85rem;
    text-align: justify;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.badges-top {
    display: flex;
    gap: 40px;
}

.badge-item {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-link {
    margin-top: 10px;
    font-weight: bold;
    color: var(--white) !important;
}

.whatsapp-link i {
    color: #25D366;
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: middle;
}

.footer-bottom {
    background: #081f1a;
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #1f4a40;
}

/* ==================== TOAST ==================== */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 11000;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    background: #10b981;
}

.toast.error {
    background: #ef4444;
}

/* ==================== GOOGLE TRANSLATE HACKS ==================== */
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate {
    display: none !important;
}

#google_translate_element {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ==================== MODALES ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s;
    padding: 20px;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: 10px;
    max-width: 95%;
    max-height: 95vh;
    animation: slideIn 0.3s;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4757;
    color: white;
    border: 3px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    z-index: 10001;
}

.close-btn:hover {
    background-color: #ff6b81;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

/* ==================== EXTRA CONTENT ==================== */
.itinerary-day {
    margin-bottom: 40px;
}

.content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.content p {
    flex: 1;
}

.content img {
    width: 260px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ==================== BUTTON TRIPADVISOR ==================== */
.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 90, 76, 0.3);
    margin-top: 2rem;
}

.btn-tripadvisor:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 90, 76, 0.4);
    color: #fff;
}

.btn-tripadvisor i {
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
    .top-bar-container {
        text-align: left;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .qs-content {
        grid-template-columns: 1fr 1fr;
    }

    .excelencia-grid {
        grid-template-columns: 1.2fr 0.8fr 1.2fr;
    }

    .excelencia-img {
        order: 0;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 1024px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }

    .dropdown-menu.dropdown-wide {
        width: min(1000px, 96vw);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .top-bar {
        display: none;
    }

    header {
        top: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .stat {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .content {
        flex-direction: column;
    }

    .content img {
        width: 100%;
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        max-width: 98%;
        max-height: 90vh;
    }

    .modal-content img {
        max-height: 90vh;
    }

    .close-btn {
        top: 5px;
        right: 5px;
        width: 45px;
        height: 45px;
        font-size: 26px;
        border: 2px solid white;
    }

    .testimonial-slider {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }

    .tripadvisor-logo-small {
        align-self: flex-start;
    }

    .review-title {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-info .icons-list li {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .badge-item {
        width: 100px;
        height: 100px;
    }

    .badges-top {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        display: none;
    }

    .testimonial-slider {
        padding: 0;
    }

    .testimonial-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
}