/* ===== VARIABLES & RESET ===== */
:root {
    --navy: #1e2d3d;
    --navy-dark: #141e2b;
    --navy-light: #2c3e50;
    --gold: #b69d6e;
    --gold-light: #c9b48a;
    --gold-dark: #9a8455;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f5f6f7;
    --gray-100: #ecedef;
    --gray-200: #dcdee2;
    --gray-300: #c4c7cc;
    --gray-500: #8b8f96;
    --gray-600: #6b7280;
    --gray-700: #4b5563;
    --gray-800: #2d3239;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.75;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.25;
    color: var(--navy);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    height: 80px;
    width: auto;
    margin-bottom: 24px;
}

.loader-plane {
    font-size: 1.5rem;
    color: var(--gold);
    animation: flyLoader 2s ease-in-out infinite;
}

@keyframes flyLoader {
    0%, 100% { transform: translateX(-15px) rotate(-3deg); }
    50% { transform: translateX(15px) rotate(3deg); }
}

#preloader p {
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    margin-top: 20px;
    letter-spacing: 3px;
    opacity: 0.7;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

#navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--navy);
}

#navbar.scrolled .hamburger span {
    background: var(--navy);
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo-img {
    height: 44px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.cloud-1 { width: 300px; height: 100px; top: 20%; animation: cloudMove 30s linear infinite; }
.cloud-2 { width: 200px; height: 70px; top: 40%; animation: cloudMove 40s linear infinite; animation-delay: -12s; }
.cloud-3 { width: 250px; height: 80px; top: 60%; animation: cloudMove 35s linear infinite; animation-delay: -22s; }
.cloud-4 { width: 180px; height: 60px; top: 15%; animation: cloudMove 45s linear infinite; animation-delay: -6s; }
.cloud-5 { width: 220px; height: 75px; top: 75%; animation: cloudMove 32s linear infinite; animation-delay: -18s; }

@keyframes cloudMove {
    0% { transform: translateX(-400px); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

.plane {
    position: absolute;
    color: rgba(182, 157, 110, 0.08);
    font-size: 2rem;
}

.plane-1 { top: 25%; font-size: 2rem; animation: planefly 18s linear infinite; }
.plane-2 { top: 55%; font-size: 1.2rem; animation: planefly 26s linear infinite; animation-delay: -10s; }
.plane-3 { top: 75%; font-size: 2.5rem; animation: planefly 22s linear infinite; animation-delay: -5s; color: rgba(182, 157, 110, 0.05); }

@keyframes planefly {
    0%   { transform: translateX(-80px) translateY(0) rotate(-3deg); }
    25%  { transform: translateX(25vw) translateY(-20px) rotate(-2deg); }
    50%  { transform: translateX(50vw) translateY(8px) rotate(-5deg); }
    75%  { transform: translateX(75vw) translateY(-15px) rotate(-3deg); }
    100% { transform: translateX(calc(100vw + 80px)) translateY(0) rotate(-3deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(20, 30, 43, 0.3) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(182, 157, 110, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 157, 110, 0.1);
    border: 1px solid rgba(182, 157, 110, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line-1 {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.7s;
}

.hero-title .line-2 {
    display: block;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.9s;
    -webkit-text-fill-color: initial;
    background: none;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.85;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.3s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(182, 157, 110, 0.3);
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    color: var(--gold-light);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    z-index: 10;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 2s;
    pointer-events: none;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    position: relative;
    background: rgba(20, 30, 43, 0.5);
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.2; transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    background: rgba(20, 30, 43, 0.6);
    padding: 3px 12px;
    border-radius: 20px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 400;
}

.title-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.section-desc {
    color: var(--gray-500);
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===== ABOUT ===== */
.apropos {
    background: var(--white);
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apropos-content h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 400;
}

.apropos-content p {
    color: var(--gray-600);
    margin-bottom: 14px;
    font-weight: 300;
    font-size: 0.92rem;
}

.apropos-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.feature h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin: 0;
    font-weight: 300;
}

.apropos-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.globe-animation {
    font-size: 7rem;
    color: var(--gold);
    opacity: 0.08;
    animation: rotateGlobe 25s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(20, 30, 43, 0.95));
}

.visual-overlay h4 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 400;
}

.visual-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gray-200);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold-light);
}

.service-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .service-hover-line {
    transform: scaleX(1);
}

/* ===== DESTINATIONS ===== */
.destinations {
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 260px;
    cursor: pointer;
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dest-large {
    grid-column: span 2;
}

.dest-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-icon-bg {
    font-size: 100px;
    opacity: 0.07;
    color: white;
    transition: var(--transition);
}

.dest-card:hover .dest-icon-bg {
    transform: scale(1.1);
    opacity: 0.1;
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    z-index: 2;
}

.dest-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dest-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-weight: 400;
}

.dest-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-weight: 300;
}

.dest-price {
    color: var(--gold-light);
    font-weight: 500;
    font-size: 0.82rem;
}

/* ===== TEAM ===== */
.equipe {
    background: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.team-card {
    perspective: 1000px;
    height: 480px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius);
    padding: 40px 28px;
    box-shadow: var(--shadow);
}

.team-card-front {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.team-card-back {
    background: var(--navy);
    transform: rotateY(180deg);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.team-card-back h4 {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 400;
}

.team-avatar {
    position: relative;
    margin-bottom: 22px;
}

.avatar-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.admin-avatar {
    background: var(--navy-light);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.03); opacity: 0.3; }
}

.team-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 400;
}

.team-role {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.82rem;
    display: block;
    margin-bottom: 3px;
}

.team-dept {
    color: var(--gray-500);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.team-divider {
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    margin: 18px auto;
    opacity: 0.5;
}

.team-intro {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.75;
    font-weight: 300;
}

.team-responsibilities {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
    justify-content: center;
}

.team-responsibilities li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.team-responsibilities li i {
    color: var(--gold-light);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
    opacity: 0.8;
}

.team-responsibilities strong {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    margin-bottom: 3px;
    font-weight: 500;
}

.team-responsibilities p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin: 0;
    font-weight: 300;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--navy);
}

.why-us .section-tag {
    color: var(--gold-light);
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 36px 24px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(182, 157, 110, 0.2);
}

.why-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 14px;
    line-height: 1;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.why-card p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 400;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-weight: 300;
    font-size: 0.92rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.contact-item h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--gray-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label i {
    color: var(--gold);
    font-size: 0.72rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--gray-800);
    background: var(--white);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 157, 110, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    position: relative;
    padding-top: 40px;
}

.footer-wave {
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 14px 0 22px;
    line-height: 1.75;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.footer-contact i {
    color: var(--gold);
    font-size: 0.78rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
    text-align: center;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--gold);
    color: var(--white);
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 82px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 900;
    box-shadow: 0 3px 16px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

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

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

.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-large { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; }
    .hamburger { display: flex; }

    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .stat-number { font-size: 1.8rem; }
    .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .hero-title .line-1 { font-size: 0.8rem; }
    .hero-subtitle { font-size: 0.88rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; }
    .team-card { height: 470px; }
    .contact-form-wrapper { padding: 24px; }
}
