/* ============================================
   REVERA CEYLON JOURNEYS — Premium Travel CSS
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #0a1a12;
    --primary-light: #132a1e;
    --secondary: #c9a050;
    --secondary-light: #dbb96a;
    --secondary-dark: #a8803a;
    --accent: #f5f0e8;
    --accent-warm: #f8f4ec;
    --text-dark: #1a1f1c;
    --text-medium: #4a5248;
    --text-light: #7a8278;
    --white: #ffffff;
    --overlay-dark: rgba(10, 26, 18, 0.65);
    --overlay-light: rgba(10, 26, 18, 0.35);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.3s var(--ease-smooth);
    --transition-medium: all 0.5s var(--ease-smooth);
    --transition-slow: all 0.8s var(--ease-smooth);
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--accent);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideLoader {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* --- Splash Screen --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2218 50%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-logo {
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.splash-logo span {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 8px;
    font-weight: 300;
}

.splash-loader {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.splash-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    animation: slideLoader 1.5s infinite ease-in-out;
}

/* --- i18n transitions --- */
[data-i18n] {
    transition: opacity 0.3s ease-in-out;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 5%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    height: 70px;
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.navbar.scrolled .lang-toggle {
    color: var(--primary);
}

.navbar.scrolled .book-now-btn {
    background: var(--secondary);
    color: var(--white);
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--secondary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: var(--white);
    padding: 8px 20px;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

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

.nav-links a.active {
    color: var(--secondary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.navbar.scrolled .lang-toggle {
    border-color: rgba(10, 26, 18, 0.2);
}

.lang-toggle span {
    opacity: 0.5;
    transition: var(--transition-fast);
}

.lang-toggle span.active {
    opacity: 1;
    color: var(--secondary);
}

.lang-toggle:hover {
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.book-now-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--secondary);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.book-now-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 160, 80, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: var(--primary);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: kenBurns 20s ease-in-out alternate infinite;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 26, 18, 0.3) 0%,
        rgba(10, 26, 18, 0.15) 40%,
        rgba(10, 26, 18, 0.4) 70%,
        rgba(10, 26, 18, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 0 20px;
}

.hero-content .hero-label,
.page-hero-content .section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out 0.3s both;
    position: relative;
    padding: 0 60px;
}

.hero-label::before,
.hero-label::after,
.page-hero-content .section-label::before,
.page-hero-content .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--white);
}

.hero-label::before,
.page-hero-content .section-label::before { left: 0; }

.hero-label::after,
.page-hero-content .section-label::after { right: 0; }

.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--secondary);
    font-style: italic;
    font-weight: 500;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    opacity: 0.9;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.hero-scroll .scroll-icon {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.hero-scroll .scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 16px 48px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: var(--secondary);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button::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.6s ease;
}

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

.cta-button:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 160, 80, 0.25);
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.cta-button.outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 160, 80, 0.2);
}

.cta-button.white-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white);
}

.cta-button.white-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-button .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS - BASE
   ============================================ */
section {
    padding: var(--section-padding) 5%;
}

.section-label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary);
    margin-bottom: 16px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--secondary);
    vertical-align: middle;
    margin: 0 16px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.section-title .highlight {
    color: var(--secondary);
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 70px;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   CURATED EXPERIENCES / TOURS SECTION
   ============================================ */
.tours-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a050' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tour-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition-medium);
    cursor: pointer;
    group: true;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.tour-card-image .tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 2px;
    z-index: 2;
}

.tour-card-image .tour-duration {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 26, 18, 0.7);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 2px;
    z-index: 2;
}

.tour-card-content {
    padding: 28px;
}

.tour-card-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-highlights span {
    display: inline-block;
    background: var(--accent);
    color: var(--text-medium);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.tour-price {
    font-family: var(--font-heading);
}

.tour-price .from {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-family: var(--font-body);
}

.tour-price .amount {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
}

.tour-price .per-person {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-body);
}

.tour-card-link {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card-link:hover {
    color: var(--secondary-dark);
    gap: 10px;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations-section {
    background: var(--accent);
    position: relative;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
}

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

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,26,18,0.85) 0%, rgba(10,26,18,0.2) 50%, transparent 100%);
    transition: var(--transition-medium);
}

.destination-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(10,26,18,0.9) 0%, rgba(10,26,18,0.3) 50%, rgba(10,26,18,0.1) 100%);
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.destination-card .card-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.destination-card .card-content p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.destination-card:hover .card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 80px;
}

.about-text {
    padding-right: 20px;
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-label::before {
    display: none;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
}

.about-text h2 .highlight {
    color: var(--secondary);
    font-style: italic;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.9;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about-feature .feature-text h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature .feature-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/5;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15), transparent);
    z-index: 1;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

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

.about-stats-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 24px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 2;
    text-align: center;
}

.about-stats-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
    display: block;
}

.about-stats-card .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   STATS/COUNTER SECTION
   ============================================ */
.stats-section {
    background: var(--primary);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23c9a050' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--accent-warm);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-item.active {
    display: block;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author .name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.testimonial-author .origin {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

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

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 160, 80, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.testimonial-dots .dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* ============================================
   CTA / BANNER
   ============================================ */
.cta-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-banner .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-banner .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.cta-banner .cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.cta-banner .cta-content h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-banner .cta-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   EXPERIENCES PAGE - HERO
   ============================================ */
.page-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: var(--white);
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero .video-overlay {
    z-index: 1;
}

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

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out both;
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--primary);
    padding: 100px 5%;
}

.gallery-section .section-label {
    color: var(--secondary);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-section .section-subtitle {
    color: rgba(255,255,255,0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 12px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,26,18,0.2);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   CONTACT SECTION / FORM
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-details {
    list-style: none;
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-details li .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-details li .detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-details li .detail-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 300;
}

.contact-form {
    background: var(--accent);
    padding: 50px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 5% 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--secondary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    transition: var(--transition-fast);
    font-weight: 300;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-stats-card {
        right: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links a {
        color: var(--white) !important;
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 320px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .cta-banner {
        height: 400px;
    }
    
    .cta-banner .cta-content h2 {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
    }
    
    .book-now-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.78rem;
    }
}