:root {
    --gold-primary: #D4AF37;
    --gold-light: #F0E68C;
    --gold-dark: #B8960C;
    --gold-shine: #FFF8DC;
    --slate: #3D4255;
    --slate-light: #4A5068;
    --slate-dark: #252836;
    --slate-darker: #1A1D2B;
    --white: #FFFFFF;
    --cream: #F5F0E8;
}

/* Snowy Theme Variables (for Bursa) */
.snowy-theme {
    --gold-primary: #aed9e0;
    /* Ice blue replacing gold */
    --gold-light: #eaf4f4;
    --gold-dark: #5e6472;
    --gold-shine: #ffffff;
    --slate-darker: #101c29;
    /* Slightly cooler dark bg */
    --slate-dark: #1b2a41;
}

/* Better readability for snowy cards due to bright images */
.destination-card.snowy-theme .destination-overlay {
    background: linear-gradient(180deg, rgba(16, 28, 41, 0.4) 0%, rgba(16, 28, 41, 0.95) 100%);
}

.destination-card.snowy-theme .destination-name,
.destination-card.snowy-theme .destination-info,
.destination-card.snowy-theme .destination-price {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Override overlay hover for snowy cards */
.destination-card.snowy-theme:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(174, 217, 224, 0.15) 0%, rgba(16, 28, 41, 0.95) 100%);
}

/* Snowflake Animation */
.snowflake {
    position: fixed;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(1px);
    animation: fall linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) translateX(30px);
        opacity: 0;
    }
}

body.snowy-theme {
    background-image: linear-gradient(rgba(16, 28, 41, 0.85), rgba(16, 28, 41, 0.85)), url('../images/bg-texture.jpg');
}

/* Island Theme Variables (for Princes' Islands) */
.island-theme {
    --gold-primary: #40e0d0;
    /* Turquoise/Aquamarine replacing gold */
    --gold-light: #e0ffff;
    --gold-dark: #20b2aa;
    --gold-shine: #ffffff;
    --slate-darker: #001a26;
    /* Deep ocean blue */
    --slate-dark: #002b40;
}

/* Better readability for island cards */
.destination-card.island-theme .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 26, 38, 0.4) 0%, rgba(0, 26, 38, 0.95) 100%);
}

.destination-card.island-theme .destination-name,
.destination-card.island-theme .destination-info,
.destination-card.island-theme .destination-price {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Override overlay hover for island cards */
.destination-card.island-theme:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(64, 224, 208, 0.15) 0%, rgba(0, 26, 38, 0.95) 100%);
}

body.island-theme {
    background-image: linear-gradient(rgba(0, 26, 38, 0.85), rgba(0, 26, 38, 0.85)), url('../images/bg-texture.jpg');
}

/* Bubble Animation */
.bubble {
    position: fixed;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.4);
    animation: rise linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', 'Montserrat', sans-serif;
    background: var(--slate-darker);
    background-image: url('../images/bg-texture.jpg');
    /* Votre texture locale */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--white);
    width: 100%;
    min-height: 100vh;
}

@media (max-width: 1024px) {
    body {
        background-attachment: scroll; /* Fixed is buggy on mobile */
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: -2;
    overflow: hidden;
}

.hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

/* PARTICLES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 15s infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 160px;
    height: auto;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-family: 'Cairo', 'Tajawal', 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

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

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

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

/* Dropdown Menu */
.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -20px;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    border-top: 2px solid var(--gold-primary);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-right: 28px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--slate-dark);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a67c00 0%, #bf953f 25%, #fcf6ba 50%, #b38728 75%, #aa771c 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease infinite, fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--slate-dark);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: btnShimmer 3s infinite;
}

@keyframes btnShimmer {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
    margin: 0 auto;
    max-width: 200px;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin: 0 auto 70px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-label {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--gold-primary);
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== VIP TRANSFER ===== */
.vip-transfer {
    padding: 20px 50px 100px;
}

.transfer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(37, 40, 54, 0.4), rgba(26, 29, 43, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    align-items: stretch;
}

.transfer-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transfer-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.transfer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.transfer-features i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

.transfer-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    /* Beautiful radial glow behind the transparent car */
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.transfer-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    /* Realistic shadow generated directly from the car's transparent shape */
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.7));
    -webkit-box-reflect: below -10px linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.transfer-container:hover .transfer-image img {
    transform: scale(1.1) translateX(-15px);
}

@media (max-width: 900px) {
    .transfer-container {
        flex-direction: column-reverse;
    }

    .transfer-content {
        padding: 40px 30px;
    }

    .transfer-image {
        min-height: 250px;
    }
}

/* ===== DESTINATIONS ===== */
.destinations {
    position: relative;
    background: transparent;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    aspect-ratio: 1;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark), var(--gold-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    transition: opacity 0.5s;
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.02);
}

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

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(18, 20, 26, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.1) 0%, rgba(18, 20, 26, 0.95) 100%);
}

.destination-name {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.destination-info {
    font-size: 0.85rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.destination-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-price span {
    color: var(--gold-primary);
}

.excursion-tag {
    border-radius: 4px;
    align-self: flex-start;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-card:hover .excursion-tag {
    opacity: 0 !important;
    visibility: hidden;
    transform: translateY(15px);
    margin-bottom: -25px !important;
}

.card-buttons {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn-card {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-book {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-book:hover {
    background: var(--gold-primary);
    color: var(--slate-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-details {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===== SERVICES ===== */
.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold-primary);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--slate-dark);
    transform: rotateY(360deg);
}

.service-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== EXCURSIONS ===== */
.excursions {
    background: transparent;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.excursion-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.excursion-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.excursion-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.excursion-content {
    padding: 30px;
}

.excursion-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.excursion-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.excursion-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.excursion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.excursion-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.excursion-price span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.excursion-btn {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.excursion-btn:hover {
    background: var(--gold-primary);
    color: var(--slate-dark);
}

/* ===== ABOUT ===== */
.about {
    background: transparent;
    padding: 120px 50px;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(201, 168, 76, 0.2);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 15px;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-content {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: transparent;
    padding: 100px 50px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(201, 168, 76, 0.1);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-role {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* ===== CTA ===== */
.cta-section {
    background: transparent;
    padding: 120px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-title span {
    color: var(--gold-primary);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.contact-text {
    text-align: left;
}

.contact-text small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text strong {
    color: var(--white);
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 60px 50px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--slate-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Cairo', 'Tajawal', 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom span {
    color: var(--gold-primary);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7);
    }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        order: -1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo-icon {
        width: 120px; /* Slightly adjusted for better mobile fit */
        height: auto;
        max-height: 55px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 20, 26, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    section {
        padding: 60px 15px;
    }

    .hero-content {
        padding: 40px 20px;
        border-radius: 30px;
        margin: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .about-img-float {
        display: none;
    }
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--slate-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 150px;
    height: auto;
    max-height: 80px;
    margin-bottom: 30px;
    animation: loaderPulse 1.5s ease infinite;
    object-fit: contain;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 3px;
    animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ===== RTL ADJUSTMENTS ===== */
html[dir="rtl"] .logo {
    /* flex-direction: row-reverse; */ /* Removed as it can cause shifts on some mobile browsers when dir=rtl is already set */
}

html[dir="rtl"] .nav-links {
    /* flex-direction: row-reverse; */
}

html[dir="rtl"] .hero-buttons {
    /* flex-direction: row-reverse; */
}

html[dir="rtl"] .destination-info {
    flex-direction: row-reverse;
}

html[dir="rtl"] .excursion-meta {
    flex-direction: row-reverse;
}

html[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-text {
    text-align: right;
}

html[dir="rtl"] .footer-links a {
    flex-direction: row-reverse;
}

html[dir="rtl"] .about-content .section-label,
html[dir="rtl"] .about-content .section-title,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-col {
    text-align: right;
}

@media (max-width: 768px) {
    html[dir="rtl"] .footer-brand,
    html[dir="rtl"] .footer-col {
        text-align: center;
    }
}

html[dir="rtl"] .about-stats {
    direction: rtl;
}

html[dir="rtl"] .gold-divider {
    margin-right: auto;
    margin-left: auto;
}

html[dir="rtl"] .about-img-float {
    right: auto;
    left: -30px;
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .scroll-indicator {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(50%) translateY(0);
    }

    40% {
        transform: translateX(50%) translateY(-15px);
    }

    60% {
        transform: translateX(50%) translateY(-8px);
    }
}

html[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .service-card::before {
    transform-origin: right;
}

html[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

html[dir="rtl"] .loader-logo {
    direction: ltr;
}

/* ===== MOBILE TOUCH FIX (Cards) ===== */
@media (max-width: 768px) {
    .card-buttons {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-top: 10px;
    }
    
    .destination-overlay {
        background: linear-gradient(180deg, transparent 20%, rgba(18, 20, 26, 0.95) 100%) !important;
        padding: 20px !important;
    }

    /* Adjust tag so it stays visible but doesn't overlap */
    .excursion-tag {
        margin-bottom: 5px !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Small reduction in title size for mobile cards */
    .destination-name {
        font-size: 1.25rem !important;
    }
}