/* ================================================
   NINOU TRAVEL - Premium Travel Agency Stylesheet
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================ */
:root {
    /* Colors */
    --color-primary: #1a365d;
    --color-primary-dark: #0d2137;
    --color-primary-light: #2c5282;
    --color-gold: #c9a227;
    --color-gold-light: #d4af37;
    --color-gold-dark: #a88a1e;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --color-dark: #212529;
    --color-success: #28a745;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ================================================
   CSS RESET & BASE STYLES
   ================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-light {
    background-color: var(--color-light);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold);
}

.text-primary {
    color: var(--color-primary);
}

.section-title {
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.gold-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: var(--space-md) auto var(--space-lg);
    border-radius: var(--radius-full);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Shine effect for all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    background-size: 200% 100%;
    color: var(--color-primary-dark);
    box-shadow:
        0 4px 15px rgba(201, 162, 39, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(201, 162, 39, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-lg);
    border-radius: var(--radius-lg);
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    /* Remove white/light background visually using blend mode */
    mix-blend-mode: multiply;
    /* Enhance contrast and colors for crisp appearance */
    filter: contrast(1.08) saturate(1.15);
    transition: all var(--transition-base);
    /* Add subtle polish */
    image-rendering: -webkit-optimize-contrast;
}

.logo:hover img {
    filter: contrast(1.15) saturate(1.2);
    transform: scale(1.03);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-primary-dark);
    padding: var(--space-sm) var(--space-md);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.nav-phone svg {
    color: var(--color-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* ================================================
   HERO SECTION - PREMIUM DESIGN
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #1e4976 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Particles Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.2);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 33, 55, 0.9) 0%,
            rgba(26, 54, 93, 0.8) 50%,
            rgba(13, 33, 55, 0.85) 100%);
    z-index: 2;
}

/* Glassmorphism Hero Content Card */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 950px;
    padding: var(--space-3xl);
    animation: fadeInUp 1s ease;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Badge with Shine Effect */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(212, 175, 55, 0.15));
    border: 1px solid rgba(201, 162, 39, 0.6);
    color: var(--color-gold-light);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Premium Title with Gradient Text */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, #f0d080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Decorative underline for gold text */
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.hero-description {
    font-size: var(--fs-xl);
    opacity: 0.95;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Stats with Glass Effect */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: var(--fs-sm);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: var(--space-xs);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
    opacity: 0.7;
}

/* ================================================
   SERVICES SECTION - PREMIUM CARDS
   ================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Gold gradient line at top */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(201, 162, 39, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        5px 5px 15px rgba(0, 0, 0, 0.08),
        -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 10px 30px rgba(201, 162, 39, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
    color: var(--color-primary-dark);
}

.service-description {
    color: var(--color-gray);
    font-size: var(--fs-base);
    line-height: 1.7;
}

/* ================================================
   FEATURES / WHY CHOOSE US
   ================================================ */
/* ================================================
   FEATURES / WHY CHOOSE US
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 10px rgba(201, 162, 39, 0.05);
    transform: translateY(-5px);
    border-left-color: var(--color-gold);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(26, 54, 93, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-primary-dark);
}

.feature-content h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: var(--color-primary);
}

.feature-content p {
    color: var(--color-gray);
    font-size: var(--fs-sm);
}

/* ================================================
   DESTINATIONS SECTION - PREMIUM GALLERY
   ================================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 33, 55, 0.95) 0%, rgba(13, 33, 55, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    color: var(--color-white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(13, 33, 55, 1) 0%, rgba(13, 33, 55, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
    padding-bottom: var(--space-2xl);
}

.destination-name {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-name {
    transform: translateY(-5px);
    color: var(--color-gold);
}

.destination-desc {
    font-size: var(--fs-base);
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.3s ease;
    max-width: 90%;
}

.destination-card:hover .destination-desc {
    opacity: 1;
    transform: translateY(-5px);
}

.destination-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-badge {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    animation: pulse-slow 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--fs-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: var(--fs-lg);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: var(--color-gold);
    color: var(--color-primary-dark);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
}

.about-content h2 {
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-lg);
    line-height: 1.8;
}

.about-list {
    margin-bottom: var(--space-2xl);
}

.about-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-weight: 500;
}

.about-list li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-info {
    padding: var(--space-2xl);
}

.contact-intro h2 {
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-md);
}

.contact-intro p {
    color: var(--color-gray);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: var(--fs-base);
    margin-bottom: var(--space-xs);
    color: var(--color-primary-dark);
}

.contact-text p,
.contact-text a {
    color: var(--color-gray);
    font-size: var(--fs-base);
}

.contact-text a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-3xl);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================================
   FOOTER - PREMIUM
   ================================================ */
.footer {
    background: linear-gradient(135deg, #0d2137 0%, #0a1929 100%);
    color: var(--color-white);
    padding-top: var(--space-4xl);
    position: relative;
    overflow: hidden;
}

/* World map decorative pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23c9a227' 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;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.footer-brand img {
    height: 80px;
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.footer-brand img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(201, 162, 39, 0.4);
    background: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-base);
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-contact-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
    filter: drop-shadow(0 0 5px rgba(201, 162, 39, 0.3));
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
    border-color: var(--color-gold);
}

.footer-bottom {
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-full);
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.7);
    color: var(--color-white);
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --fs-6xl: 2.75rem;
        --fs-5xl: 2.25rem;
        --fs-4xl: 1.875rem;
    }

    .header-container {
        padding: var(--space-md);
    }

    .nav-list {
        display: none;
    }

    .nav-cta .btn {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-list a {
    display: block;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: var(--color-light);
    color: var(--color-gold);
}

.mobile-nav-cta {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --fs-6xl: 2.25rem;
        --fs-5xl: 1.875rem;
        --fs-4xl: 1.5rem;
        --space-4xl: 4rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero-content {
        padding: var(--space-lg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .services-grid,
    .features-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto var(--space-lg);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .hero-badge {
        font-size: var(--fs-xs);
    }

    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--fs-base);
    }
}

/* ================================================
   PAGE SPECIFIC STYLES
   ================================================ */

/* Services Page */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    text-align: center;
    color: var(--color-white);
}

.page-header h1 {
    font-size: var(--fs-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: var(--fs-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Cards */
.service-detail-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse>* {
    direction: ltr;
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-detail-image {
    height: 350px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
}

.service-detail-content p {
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-feature-tag {
    background: var(--color-light);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .service-detail-inner {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }
}

/* ================================================
   ACCESSIBILITY & FOCUS STATES
   ================================================ */
:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* Skip to content link (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-gold);
    color: var(--color-primary-dark);
    padding: var(--space-sm) var(--space-md);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ================================================
   SELECTION STYLES
   ================================================ */
::selection {
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {

    /* Hide non-essential elements */
    .header,
    .mobile-toggle,
    .mobile-nav,
    .whatsapp-float,
    .scroll-to-top,
    .cta-section,
    .hero-buttons,
    .btn,
    footer .footer-social,
    iframe {
        display: none !important;
    }

    /* Reset colors for print */
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    /* Ensure content is visible */
    .hero,
    .section,
    .page-header {
        background: #fff !important;
        color: #000 !important;
        padding: 20px 0;
    }

    .hero-content,
    .hero-title,
    .hero-description {
        color: #000 !important;
    }

    /* Show URLs for links */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Footer info */
    .footer {
        background: #fff !important;
        color: #000 !important;
        border-top: 2px solid #000;
        padding-top: 20px;
    }

    .footer-contact-item {
        color: #000 !important;
    }
}

/* ================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================ */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================
   LOADING STATE
   ================================================ */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}