/* 
   XORV GLOBAL - MASSIVE AGENCY CORE STYLES 
   "Royal Technical Identity" 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
    /* --- ROYAL PALETTE --- */
    --color-void: #020408;
    /* Darker than black */
    --color-midnight: #0a0f1c;
    /* Deep Navy */
    --color-surface: #111827;
    /* Card Surface */

    --color-platinum: #E2E8F0;
    /* Primary Text */
    --color-silver: #94A3B8;
    /* Secondary Text */

    --color-royal-blue: #3b82f6;
    /* Primary Action (Tech) */
    --color-deep-ocean: #1d4ed8;
    /* Secondary Action */

    --color-gold-accent: #D4AF37;
    /* Luxury Touch */
    --color-bronze: #cd7f32;
    /* Elegant outlines */

    /* --- TYPOGRAPHY (Scale for MASSIVE Feel) --- */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-arabic: 'IBM Plex Sans Arabic', sans-serif;

    /* --- SPACING & LAYOUT --- */
    --container-width: 1600px;
    /* Extra wide for cinema feel */
    --header-height: 100px;
    --section-spacing: 160px;
    /* Huge breathing room */

    /* --- EFFECTS --- */
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    --glow-primary: 0 0 50px rgba(59, 130, 246, 0.15);
    --glow-text: 0 0 30px rgba(255, 255, 255, 0.2);

    --transition-smooth: cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

body {
    background-color: var(--color-void);
    color: var(--color-platinum);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- CINEMATIC CLASSES --- */

/* The "Massive" Container */
.container-giant {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography that imposes authority */
.text-giant {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.text-gradient-royal {
    background: linear-gradient(135deg, #fff 0%, var(--color-silver) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--color-gold-accent) 0%, var(--color-bronze) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-section-title {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold-accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.text-section-title::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-accent);
}

/* Glassmorphism Surface - High End */
.glass-panel {
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    /* Sharp edges for "Corporate" feel */
    transition: all 0.5s var(--transition-smooth);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Action Buttons */
.btn-royal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid var(--color-royal-blue);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
}

.btn-royal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-royal-blue);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-royal:hover::before {
    width: 100%;
}

.btn-royal:hover {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    border-color: transparent;
}

.btn-gold {
    border-color: var(--color-gold-accent);
    color: var(--color-gold-accent);
}

.btn-gold::before {
    background: var(--color-gold-accent);
}

.btn-gold:hover {
    color: #000;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

/* RTL Support for Arabic */
[dir="rtl"] {
    font-family: var(--font-arabic);
}

[dir="rtl"] .text-giant {
    letter-spacing: 0;
}

[dir="rtl"] .btn-royal {
    letter-spacing: 0;
    font-family: var(--font-arabic);
    font-weight: 700;
}

[dir="rtl"] .text-section-title {
    letter-spacing: 0;
}