/* Global Styles - Professional UI/UX Design System */
:root {
    /* Brand Colors */
    --primary-color: #D4824D;
    --primary-dark: #B86F3E;
    --primary-light: #E09965;
    --secondary-color: #2D5016;
    --secondary-dark: #1F3810;
    --accent-color: #C9A877;
    --accent: #D4A574;
    
    /* Neutral Palette */
    --dark-color: #1a1a1a;
    --dark: #1a1a1a;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --light-bg: #fafbfc;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    
    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--dark-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Image Loading Optimization */
img {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    height: auto;
    display: block;
}

img.loaded,
img[src] {
    opacity: 1;
}

img[loading="lazy"] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Blur-up effect for images */
img[data-src] {
    filter: blur(10px);
    transition: filter 0.5s ease;
}

img.loaded {
    filter: blur(0);
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Premium Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(40, 40, 40, 0.95) 100%);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 130, 77, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    background: rgba(26, 26, 26, 0.99);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:8px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateX(3px);
}

.site-logo{
    height:35px;
    width:auto;
    border-radius:6px;
    object-fit:contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 130, 77, 0.3);
}

.navbar-brand .brand-text h1{
    margin:0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand h1 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.navbar-brand .tagline {
    color: var(--accent-color);
    font-size: 0.65rem;
    margin-top: -3px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 130, 77, 0.3);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: var(--white) !important;
    padding: 0.7rem 2rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 130, 77, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::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 ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 130, 77, 0.4) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(212, 130, 77, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(212, 130, 77, 0.2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px;
    padding-top: 20px;
}

.hero-slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(26, 26, 26, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    width: 90%;
    max-width: 1000px;
    animation: fadeInUp 1.2s ease-out;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.95), rgba(255, 107, 0, 0.95));
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
    animation: slideDown 1s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
    color: #fff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.9),
                 0 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    margin-bottom: 35px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.3);
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 45px rgba(255, 107, 0, 0.6);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-item {
        padding: 15px 25px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: none;
    gap: 1rem;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slide-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 12;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f3d0f 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1f3d0f 0%, #152c0a 100%);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.35);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 130, 77, 0.1) 0%, rgba(201, 168, 119, 0.1) 100%);
    transition: height 0.5s ease;
    z-index: 0;
}

.stat:hover::before {
    height: 100%;
}

.stat:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(212, 130, 77, 0.15);
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat.counted h3 {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat p {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.about-image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background-color: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.destination-card:hover .card-image::after {
    background: rgba(0, 0, 0, 0.4);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Destination Details Modal */
.destination-details {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.destination-details.active {
    display: flex !important;
}

.details-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.details-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.details-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.details-content strong {
    color: var(--secondary-color);
}

.close-details {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.close-details:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 130, 77, 0.2);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 130, 77, 0.3);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #3d6e1f);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-badge.featured {
    background: linear-gradient(135deg, var(--primary-color), #c26c3a);
}

.package-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.price {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price strong {
    font-size: 2rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: 700;
}


/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.feature:hover {
    box-shadow: 0 15px 35px rgba(212, 130, 77, 0.15);
    transform: translateY(-8px);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.feature h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(212, 130, 77, 0.15);
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.9;
}

.author {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 50px;
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 130, 77, 0.1);
}

.contact-form button {
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: #c26c3a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #bbb;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.95rem;
}

/* Translation Widget Styles - Left Side Icon */
.translate-container {
    position: fixed;
    left: 20px;
    bottom: 120px;
    z-index: 999;
}

#google_translate_element {
    margin: 0;
}

.goog-te-gadget {
    font-family: 'Segoe UI', sans-serif !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-combo {
    padding: 8px 12px;
    border: 1.5px solid #1a5f7a;
    border-radius: 6px;
    font-size: 0.85em;
    color: var(--text-color);
    background-color: var(--white);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(26, 95, 122, 0.12);
}

.goog-te-gadget-simple .goog-te-combo:hover {
    border-color: #d4a574;
    background-color: #f8f9fa;
    box-shadow: 0 3px 10px rgba(26, 95, 122, 0.18);
}

.goog-te-gadget-simple .goog-te-combo option {
    padding: 6px;
}

/* Hide Google Translate branding */
.goog-te-balloon {
    display: none !important;
}

/* Responsive Translate Widget */
@media (max-width: 480px) {
    .translate-container {
        left: 10px;
        bottom: 100px;
    }
    
    .goog-te-gadget-simple .goog-te-combo {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Contact Info Links */
.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Form Message Styles */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(40, 40, 40, 0.95) 100%);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(212, 130, 77, 0.1);
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-controls {
        bottom: 1rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    /* Mobile-first layout improvements */
    .destinations-grid,
    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-brand h1 {
        font-size: 1rem;
    }

    .site-logo {
        height: 30px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .destinations-grid,
    .packages-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.75rem 2rem;
    }

    /* Stack forms vertically on mobile */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Better spacing for mobile */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

/* Start Planning Section */
.start-planning {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.planning-header {
    text-align: center;
    margin-bottom: 3rem;
}

.planning-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.planning-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.planning-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Planning Form Styles */
.planning-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.planning-form label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.planning-form input,
.planning-form select,
.planning-form textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fafafa;
}

.planning-form input:focus,
.planning-form select:focus,
.planning-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 130, 77, 0.1);
}

.planning-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.planning-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    border: none;
}

.planning-form .form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.planning-form .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.planning-form .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Planning Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .planning-content {
        padding: 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Popup Button */
.whatsapp-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Chat Menu */
.whatsapp-menu {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-header {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.close-whatsapp {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-whatsapp:hover {
    transform: scale(1.2);
}

.whatsapp-body {
    padding: 1.5rem;
    text-align: center;
}

.whatsapp-body p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.whatsapp-chat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #25d366;
}

.whatsapp-chat-link:hover {
    background: transparent;
    color: #25d366;
    transform: translateX(5px);
}

/* Responsive WhatsApp Button */
@media (max-width: 480px) {
    .whatsapp-popup {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .whatsapp-menu {
        width: 280px;
        bottom: 80px;
    }

    .planning-header h2 {
        font-size: 1.8rem;
    }

    .planning-content {
        padding: 1rem;
    }
}

/* Features Grid Section - Unified Across All Pages */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 130, 77, 0.15);
}

.feature-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 130, 77, 0.3) 0%, rgba(45, 80, 22, 0.2) 100%);
    z-index: 1;
}

.feature-card-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-card-body h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.feature-card-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.feature-card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.feature-card-link i {
    transition: transform 0.3s ease;
}

.feature-card-link:hover i {
    transform: translateX(3px);
}

/* Features Section CTA */
.features-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c97035 100%);
    border-radius: 12px;
    color: var(--white);
}

.features-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.features-cta .btn-light {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.features-cta .btn-light:hover {
    background: transparent;
    color: var(--white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .features-section {
        padding: 2.5rem 0;
    }

    .features-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .feature-card-body {
        padding: 1.5rem;
    }

    .features-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .features-section .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .feature-card-image {
        height: 180px;
    }

    .feature-card-body h3 {
        font-size: 1.1rem;
    }

    .features-cta {
        padding: 1.5rem;
    }

    .features-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .features-cta p {
        font-size: 0.95rem;
    }
}

/* ============================================
   HERO TRANSLATE BUTTON - TOP RIGHT
   ============================================ */

.hero-translate-btn {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.translate-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.translate-trigger:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.translate-trigger .fa-globe {
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.translate-trigger:hover .fa-globe {
    color: white;
}

.translate-text {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.translate-trigger:hover .translate-text {
    color: white;
}

.translate-arrow {
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.translate-trigger:hover .translate-arrow {
    color: white;
}

.hero-translate-btn.active .translate-arrow {
    transform: rotate(180deg);
}

.translate-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 200px;
    max-height: 380px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.hero-translate-btn.active .translate-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-header {
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.translate-header h4 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
}

.translate-search {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.translate-search:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.translate-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.translate-list::-webkit-scrollbar {
    width: 8px;
}

.translate-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.translate-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.translate-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.translate-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f8f8;
}

.translate-option:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 195, 0, 0.15));
    transform: scale(1.1);
}

.translate-option.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.translate-option .flag {
    font-size: 28px;
}

.translate-option .lang-label {
    display: none;
}

/* Responsive Design for Hero Translate */
@media (max-width: 768px) {
    .hero-translate-btn {
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
    }
    
    .translate-trigger {
        padding: 10px 16px;
    }
    
    .translate-text {
        display: none;
    }
    
    .translate-dropdown {
        width: 180px;
        max-height: 350px;
    }
    
    .translate-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-translate-btn {
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }
    
    .translate-trigger {
        padding: 8px 12px;
    }
    
    .translate-dropdown {
        width: 160px;
        left: 0;
    }
    
    .translate-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .translate-option .flag {
        font-size: 24px;
    }
}

/* ============================================
   ADVANCED LANGUAGE SELECTOR (OLD - HIDDEN)
   ============================================ */

.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: none; /* Hidden - using new hero button */
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary, #2D5016);
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark, #1a1a1a);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.language-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.language-btn .flag-icon {
    font-size: 22px;
    line-height: 1;
}

.language-btn .lang-text {
    font-size: 15px;
    font-weight: 600;
}

.language-btn i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-btn.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    max-height: 500px;
    background: white;
    border: 2px solid var(--primary, #2D5016);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary, #2D5016) 0%, var(--secondary, #1a5f7a) 100%);
    color: white;
    text-align: center;
}

.language-dropdown-header h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
}

.language-dropdown-header p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.language-search {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.language-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-search input:focus {
    outline: none;
    border-color: var(--primary, #2D5016);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.language-list {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
}

.language-list::-webkit-scrollbar {
    width: 6px;
}

.language-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.language-list::-webkit-scrollbar-thumb {
    background: var(--primary, #2D5016);
    border-radius: 10px;
}

.language-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary, #1a5f7a);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(26, 95, 122, 0.1) 100%);
    transform: translateX(5px);
}

.language-option.active {
    background: linear-gradient(135deg, var(--primary, #2D5016) 0%, var(--secondary, #1a5f7a) 100%);
    color: white;
}

.language-option .flag {
    font-size: 24px;
    line-height: 1;
}

.lang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-name {
    font-size: 15px;
    font-weight: 600;
}

.lang-native {
    font-size: 12px;
    opacity: 0.7;
}

.language-option.active .lang-native {
    opacity: 0.9;
}

.check-icon {
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-option.active .check-icon {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        bottom: 20px;
        left: 15px;
    }
    
    .language-btn {
        padding: 10px 16px;
        gap: 8px;
    }
    
    .language-btn .lang-text {
        display: none;
    }
    
    .language-btn .flag-icon {
        font-size: 20px;
    }
    
    .language-dropdown {
        min-width: 260px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .language-selector {
        bottom: 15px;
        left: 10px;
    }
    
    .language-btn {
        padding: 8px 12px;
    }
    
    .language-dropdown {
        min-width: calc(100vw - 40px);
        left: 0;
    }
}
