:root {
    --primary-color: #d4af37;
    /* Gold */
    --hover-color: #b5952f;
    --bg-dark: #0a0a0a;
    --text-light: #f4f4f4;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: transform 0.15s, width 0.3s, height 0.3s;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 100;
    transition: 0.5s;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

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

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

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

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

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

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.3), var(--bg-dark));
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-primary {
    padding: 15px 35px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Sections General */
section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: var(--glass);
    padding: 40px;
    border: 1px solid var(--border);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    text-align: center;
}

.input-group {
    position: relative;
    margin: 30px 0;
}

input,
textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    color: var(--text-light);
    font-size: 16px;
    outline: none;
}

label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    top: -20px;
    font-size: 12px;
    color: var(--primary-color);
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* =========================================
   Splash Screen Specific Styles
   ========================================= */
.splash-page {
    overflow: hidden;
}

.main-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 200;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.main-logo .dot {
    color: var(--primary-color);
}

.split-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    direction: ltr;
    /* Force LTR to prevent swap in Arabic */
}

.split {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.split:hover {
    width: 75%;
}

.split.left {
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9)), url('assets/dubai.jpg');
    background-size: cover;
    background-position: center;
    border-right: 1px solid var(--border);
}

.split.right {
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9)), url('assets/vienna.jpg');
    background-size: cover;
    background-position: center;
}

.splash-page .content {
    text-align: center;
    z-index: 10;
    transition: transform 0.8s;
    padding: 2rem;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.splash-page h1 {
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 5px;
    /* Reverted to default heading font (Playfair) */
}

.splash-page p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    /* Kept GOLD for main text */
    text-transform: uppercase;
    font-weight: 600;
    /* Added weight to main text to contrast with subtitle */
    margin: 0;
}

.splash-page .location-subtitle {
    font-size: 0.85rem;
    /* Smaller */
    color: rgba(255, 255, 255, 0.5) !important;
    /* More transparent/subtle */
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Tighter */
    margin-bottom: 20px;
    font-weight: 300 !important;
    margin-top: 5px;
}

.btn-enter {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle border default */
    color: rgba(255, 255, 255, 0.7);
    /* Subtle text default */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 1;
    /* Always visible */
    transform: translateY(0);
    /* Fixed position */
    transition: 0.4s;
}

.split:hover .btn-enter {
    opacity: 1;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    /* Subtle gold tint */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    /* Soft glow */
}

/* Button specific hover (interaction) */
.btn-enter:hover {
    background: var(--primary-color) !important;
    color: var(--bg-dark) !important;
    transform: translateY(0) scale(1.05) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    cursor: pointer;
}

/* Language Switcher - Central */
.lang-switcher {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.3);
    direction: ltr;
    cursor: pointer;
}

.lang-btn {
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--primary-color);
}

/* Mobile Adjustments for Splash */
@media(max-width: 768px) {
    .main-logo {
        top: 20px;
        left: 20px;
        font-size: 1.5rem;
        transform: none;
    }

    .split-container {
        flex-direction: column;
    }

    .split {
        width: 100% !important;
        height: 50vh !important;
    }

    .split:hover {
        width: 100% !important;
        height: 50vh !important;
    }

    .splash-page .content {
        transform: scale(0.9);
        padding: 1rem;
    }

    .splash-page h1 {
        font-size: 2.5rem;
    }

    .btn-enter {
        opacity: 1;
        transform: translateY(0);
        margin-top: 15px;
    }
}

/* Splash Footer - Premium Bar */
.splash-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* More transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 40px;
    text-align: left;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    cursor: default;
    /* Fix missing cursor */
}

.splash-footer p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.6;
    text-transform: none !important;
    margin: 0;
    cursor: default !important;
}

.splash-footer a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    transition: color 0.3s, border-color 0.3s;
    cursor: pointer !important;
}

.splash-footer a:hover {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

@media(max-width: 768px) {
    .splash-footer {
        padding: 15px 20px;
        text-align: center;
        justify-content: center;
    }

    .splash-footer p {
        font-size: 0.7rem;
    }
}