:root {
    --primary-color: #0c1a25;
    /* Deep Midnight Blue */
    --secondary-color: #d4af37;
    /* Metallic Gold */
    --accent-color: #1e3a5f;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-soft: #f9fbfc;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Outfit', 'Cairo', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography Enhancements */
h1,
h2,
h3,
.navbar-brand {
    letter-spacing: -0.5px;
}

/* Premium Navbar */
.navbar {
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    background: transparent !important;
    z-index: 1050;
}

.navbar.scrolled,
.navbar.solid-bg {
    padding: 0.8rem 0;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
    color: white !important;
    transition: var(--transition-smooth);
}

.scrolled .navbar-brand,
.solid-bg .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-dark .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.scrolled .nav-link,
.solid-bg .nav-link {
    color: var(--primary-color) !important;
}

.brand-kafo {
    font-weight: 300;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section - Luxury Feel */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(12, 26, 37, 0.9) 0%, rgba(12, 26, 37, 0.7) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-title {
    font-size: calc(2rem + 3vw);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

/* Luxury Cards */
.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.info-card:hover .icon-box {
    background: var(--primary-color);
    color: white !important;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Modern Sections */
.section-padding {
    padding: 120px 0;
}

.reveal-text {
    position: relative;
    display: inline-block;
}

.reveal-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease-in-out;
}

/* Parallax Stats */
.stats-container {
    background: var(--primary-color);
    padding: 80px 0;
    border-radius: 40px;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

/* Luxury Contact Form */
.contact-form-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    background: var(--bg-soft);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Arabic Specific Fonts */
[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

.btn-luxury {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-luxury:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}