/*
Theme Name: ORA Developer Theme
Theme URI: https://ora-egypt.com
Author: Bold Pixel Agency
Author URI: https://boldpixel.agency
Description: ثيم عقاري متقدم لشركة ORA Developers Egypt - Minimal Luxury Design
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ora-developer
Tags: real-estate, bilingual, rtl-ready, custom-logo, luxury
*/

/* ==========================================================================
   ORA DEVELOPERS - MINIMAL LUXURY DESIGN SYSTEM
   ========================================================================== */
:root {
    /* === ORA BRAND COLORS === */
    --ora-black: #000000;
    --ora-black-soft: #0A0A0A;
    --ora-black-card: #1A1A1A;
    --ora-black-hover: #111111;
    
    --ora-gold: #C5A47E;
    --ora-gold-light: #D4B896;
    --ora-gold-dark: #A88B64;
    
    --ora-white: #FFFFFF;
    --ora-white-90: rgba(255, 255, 255, 0.9);
    --ora-white-80: rgba(255, 255, 255, 0.8);
    --ora-white-60: rgba(255, 255, 255, 0.6);
    --ora-white-40: rgba(255, 255, 255, 0.4);
    --ora-white-20: rgba(255, 255, 255, 0.2);
    --ora-white-10: rgba(255, 255, 255, 0.1);
    --ora-white-05: rgba(255, 255, 255, 0.05);
    
    /* Greys — context-specific. Most theme greys appear on DARK card backgrounds (#1A1A1A),
       so we keep --ora-gray as a LIGHT grey suitable for dark bg. Light-bg sections use
       explicit --ora-gray-on-light overrides via .section-subtitle, .form-subtitle, etc.
       --ora-gray         #C8C8C8 → 13.5:1 on #1A1A1A (AAA), 2.0:1 on white (NOT for white bg)
       --ora-gray-on-light #404040 → 10.4:1 on white (AAA)
       --ora-gray-light    #E0E0E0 → 16.7:1 on #1A1A1A (AAA) */
    --ora-gray: #C8C8C8;
    --ora-gray-light: #E0E0E0;
    --ora-gray-dark: #B0B0B0;
    --ora-gray-on-light: #404040;
    --ora-gray-on-dark: #D4D4D4;

    /* Semantic Colors — WhatsApp #25D366 fails contrast on white;
       use accessible darker green for buttons; brand green still allowed for icons on dark bg */
    --success: #128C42;       /* 5.85:1 on white (AA) */
    --success-dark: #0E6F34;  /* 7.5:1 on white (AAA) */
    --whatsapp-brand: #25D366; /* visual-only, keep for icon fills on dark */
    --error: #E53935;
    --warning: #FFA726;
    
    /* === TYPOGRAPHY === */
    --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --font-en: 'Montserrat', 'Poppins', -apple-system, sans-serif;
    
    /* === SPACING === */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* === BORDERS === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* === SHADOWS === */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 32px rgba(197, 164, 126, 0.25);
    --shadow-glow: 0 0 40px rgba(197, 164, 126, 0.15);
    
    /* === GLASSMORPHISM === */
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(197, 164, 126, 0.3);
    --glass-blur: blur(20px);
    
    /* === TRANSITIONS === */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* === LAYOUT === */
    --container-max: 1320px;
    --container-padding: 1.5rem;
    --header-height: 80px;
    --header-height-scrolled: 64px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-en);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ora-gray);
    background-color: var(--ora-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* RTL/LTR Support */
body.rtl, html[dir="rtl"] body {
    font-family: var(--font-ar);
    direction: rtl;
}

body.ltr, html[dir="ltr"] body {
    font-family: var(--font-en);
    direction: ltr;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--ora-gold);
    color: var(--ora-black);
}

/* ==========================================================================
   TYPOGRAPHY - MINIMAL LUXURY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--ora-white);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--ora-gray);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

section {
    padding: var(--space-5xl) 0;
    position: relative;
}

/* ==========================================================================
   BUTTONS - ORA STYLE
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

html[dir="rtl"] .btn svg {
    transform: scaleX(-1);
}

.btn:hover svg {
    transform: translateX(4px);
}

html[dir="rtl"] .btn:hover svg {
    transform: scaleX(-1) translateX(4px);
}

/* Primary Button - Ora Gold */
.btn-primary {
    background: var(--ora-gold);
    color: var(--ora-black);
    border-color: var(--ora-gold);
}

.btn-primary:hover {
    background: var(--ora-white);
    color: var(--ora-black);
    border-color: var(--ora-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--ora-gold);
    border-color: var(--ora-gold);
}

.btn-outline:hover {
    background: var(--ora-gold);
    color: var(--ora-black);
}

/* Ghost Button */
.btn-ghost {
    background: var(--ora-white-10);
    color: var(--ora-white);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--ora-white-20);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: var(--success);
    color: var(--ora-white);
    border-color: var(--success);
}

.btn-whatsapp:hover {
    background: var(--success-dark);
    border-color: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Sizes */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HEADER - MINIMAL LUXURY
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-normal);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: var(--transition-normal);
}

.site-header.scrolled::before {
    background: var(--ora-black);
    border-bottom: 1px solid var(--ora-white-10);
}

.site-header .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-normal);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.site-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ora-gold);
    letter-spacing: 0.15em;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu > li > a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--ora-white-80);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
}

.nav-menu > li > a:hover {
    color: var(--ora-gold);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    backdrop-filter: var(--glass-blur);
}

html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--ora-gray);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--ora-white-05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--ora-gold);
    background: var(--ora-white-05);
}

.dropdown-menu li:first-child a {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    color: var(--ora-white-80);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--ora-white-10);
    transition: var(--transition-normal);
}

.lang-switch:hover {
    border-color: var(--ora-gold);
    color: var(--ora-gold);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: var(--ora-white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.header-whatsapp:hover {
    background: var(--success-dark);
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   MOBILE MENU - COMPLETE RESPONSIVE SYSTEM
   All screen sizes: iPhone SE (320px) to Tablets (992px)
   ========================================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop, shown via media query */
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--ora-white-20);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    border-color: var(--ora-gold);
    outline: none;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Hamburger Icon */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.hamburger .line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ora-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active .hamburger .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger .line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.nav-mobile {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: var(--ora-black);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                visibility 0.4s ease;
}

/* RTL Support - Menu slides from left */
html[dir="rtl"] .nav-mobile {
    left: 0;
    right: 0;
    transform: translateX(-100%);
}

/* Active State - Menu Open (LTR) */
.nav-mobile.active {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateX(0) !important;
}

/* Active State - Menu Open (RTL) - must override RTL transform */
html[dir="rtl"] .nav-mobile.active {
    transform: translateX(0) !important;
}

/* Prevent body scroll when menu is open */
body.menu-open,
html.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile Nav Header with Logo and Close Button */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--ora-white-10);
    background: var(--ora-black);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.mobile-logo-img {
    height: 40px;
    width: auto;
}

/* Close Button */
.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--ora-white-20);
    border-radius: var(--radius-sm);
    color: var(--ora-white);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-close-btn:hover,
.mobile-close-btn:active {
    background: var(--ora-gold);
    border-color: var(--ora-gold);
    color: var(--ora-black);
}

.mobile-close-btn svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

/* Mobile Nav Inner Container */
.mobile-nav-inner {
    padding: 1.5rem;
    padding-bottom: 120px;
    min-height: calc(100% - 70px);
}

/* Mobile Nav Menu List */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-menu > li {
    border-bottom: 1px solid var(--ora-white-10);
}

.mobile-nav-menu > li:first-child {
    border-top: 1px solid var(--ora-white-10);
}

/* Menu Links */
.mobile-nav-menu > li > a,
.mobile-nav-menu > li > .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.125rem 0;
    color: var(--ora-white);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
    background: none;
    border: none;
    text-align: start;
    -webkit-tap-highlight-color: transparent;
}

/* RTL - Text alignment */
html[dir="rtl"] .mobile-nav-menu > li > a,
html[dir="rtl"] .mobile-nav-menu > li > .mobile-dropdown-toggle {
    text-align: right;
    flex-direction: row;
}

.mobile-nav-menu > li > a:hover,
.mobile-nav-menu > li > a:active,
.mobile-nav-menu > li > .mobile-dropdown-toggle:hover,
.mobile-nav-menu > li > .mobile-dropdown-toggle:active {
    color: var(--ora-gold);
}

/* Dropdown Arrow */
.mobile-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--ora-gold);
    border-bottom: 2px solid var(--ora-gold);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .mobile-dropdown-toggle::after {
    margin-left: 0;
    margin-right: 0.5rem;
    transform: rotate(45deg);
}

html[dir="rtl"] .mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(-135deg);
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(-135deg);
}

/* Dropdown Submenu */
.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0 0 0.75rem 1.25rem;
    margin: 0;
    background: var(--ora-black-soft);
    border-radius: var(--radius-sm);
}

html[dir="rtl"] .mobile-dropdown-menu {
    padding-left: 0;
    padding-right: 1.25rem;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid var(--ora-white-05);
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 0.875rem 0;
    color: var(--ora-gray);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-menu li a:hover,
.mobile-dropdown-menu li a:active {
    color: var(--ora-gold);
    padding-left: 0.75rem;
}

html[dir="rtl"] .mobile-dropdown-menu li a:hover,
html[dir="rtl"] .mobile-dropdown-menu li a:active {
    padding-left: 0;
    padding-right: 0.75rem;
}

/* Mobile Nav Actions (CTA, Language, WhatsApp) */
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ora-white-10);
}

/* Language Switcher */
.mobile-lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--ora-white);
    border: 1px solid var(--ora-white-20);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-lang-switch:hover,
.mobile-lang-switch:active {
    border-color: var(--ora-gold);
    color: var(--ora-gold);
}

/* WhatsApp Button Mobile */
.mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    background: var(--success);
    color: var(--ora-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-whatsapp:hover,
.mobile-whatsapp:active {
    background: var(--success-dark);
}

.mobile-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* CTA Button Mobile */
.mobile-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   RTL SUPPORT FOR MOBILE MENU
   ========================================================================== */
html[dir="rtl"] .mobile-nav-header {
    flex-direction: row-reverse;
}

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

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

html[dir="rtl"] .mobile-lang-switch,
html[dir="rtl"] .mobile-whatsapp,
html[dir="rtl"] .mobile-cta {
    text-align: center;
}

html[dir="rtl"] .mobile-whatsapp svg {
    order: 1;
}

/* ==========================================================================
   HERO SECTION - CINEMATIC
   ========================================================================== */
.hero-section,
.project-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ora-black);
}

.hero-bg-image,
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-image {
    background-size: cover;
    background-position: center;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(197, 164, 126, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(197, 164, 126, 0.05) 0%, transparent 40%),
                var(--ora-black);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.80) 100%
    );
}

.hero-section .container,
.project-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
}

.hero-text {
    max-width: 720px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--ora-white-05);
    border: 1px solid var(--ora-gold);
    color: var(--ora-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1rem;
}

/* Hero Title */
.hero-title {
    color: var(--ora-white);
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

/* Hero Developer */
.hero-developer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ora-gray);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.developer-name {
    color: var(--ora-gold);
    font-weight: 600;
}

/* Hero Location */
.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ora-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-location svg {
    color: var(--ora-gold);
}

/* Hero Tagline */
.hero-tagline {
    color: var(--ora-gray-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Hero Description */
.hero-description {
    color: var(--ora-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ora-white-10);
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ora-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--ora-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--ora-gold);
    border-radius: 50%;
    color: var(--ora-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--ora-gold);
    color: var(--ora-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--ora-white);
}

.section-subtitle {
    color: var(--ora-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */
.projects-section {
    background: var(--ora-black);
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ora-white-10), transparent);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

/* Project Card */
.project-card {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.project-card:hover {
    border-color: var(--ora-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ora-black-card) 0%, var(--ora-black) 100%);
    color: var(--ora-gold);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 1rem;
    background: var(--ora-gold);
    color: var(--ora-black);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 2;
}

html[dir="rtl"] .card-badge {
    left: auto;
    right: 1rem;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ora-black) 0%, transparent 60%);
    opacity: 0.7;
}

.project-card:hover .card-overlay {
    opacity: 0.9;
}

.overlay-link {
    position: absolute;
    inset: 0;
}

.card-content {
    padding: 1.75rem;
}

.card-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    color: var(--ora-white);
}

.card-title a:hover {
    color: var(--ora-gold);
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--ora-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-location svg {
    color: var(--ora-gold);
}

.card-tagline {
    color: var(--ora-gray);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-stats {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--ora-white-10);
    border-bottom: 1px solid var(--ora-white-10);
    margin-bottom: 1.25rem;
}

.card-stat {
    flex: 1;
    text-align: center;
}

.card-stat .stat-value {
    font-size: 1.25rem;
    color: var(--ora-gold);
}

.card-stat .stat-label {
    font-size: 0.6875rem;
    color: var(--ora-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card-price .price-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--ora-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-price .price-value {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ora-gold);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background: var(--ora-black);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ora-white-10);
}

.about-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ora-black-card) 0%, var(--ora-black) 100%);
    border: 1px solid var(--ora-white-10);
    border-radius: var(--radius-lg);
    color: var(--ora-gold);
}

.about-floating-stats {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

html[dir="rtl"] .about-floating-stats {
    right: auto;
    left: -2rem;
}

.floating-stat {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-gold);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    backdrop-filter: var(--glass-blur);
}

.floating-stat .stat-value {
    font-size: 1.75rem;
    color: var(--ora-gold);
}

.floating-stat .stat-label {
    font-size: 0.6875rem;
    color: var(--ora-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.about-text {
    color: var(--ora-gray);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-cta {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    background: var(--ora-black-soft);
    position: relative;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ora-white-10), transparent);
}

.features-section::before { top: 0; }
.features-section::after { bottom: 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--ora-gold);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    color: var(--ora-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--ora-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ==========================================================================
   UNITS SECTION
   ========================================================================== */
.units-section {
    background: var(--ora-black);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.unit-card {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.unit-card:hover {
    border-color: var(--ora-gold);
    transform: translateY(-4px);
}

.unit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.unit-name {
    font-size: 1.125rem;
    color: var(--ora-white);
    margin-bottom: 1rem;
}

.unit-inquiry {
    width: 100%;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    background: var(--ora-black);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.points-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--ora-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.points-list li svg {
    color: var(--ora-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ora-white-10);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(100%) contrast(1.1);
}

/* ==========================================================================
   INQUIRY SECTION - GLASSMORPHISM
   ========================================================================== */
.inquiry-section {
    background: var(--ora-black);
    padding: var(--space-5xl) 0;
    position: relative;
}

.inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ora-white-10), transparent);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Glassmorphism Form */
.inquiry-form-wrapper {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-gold);
    padding: 3rem;
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-glow);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
    color: var(--ora-white);
}

.form-subtitle {
    color: var(--ora-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--ora-white-80);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-group .required {
    color: var(--ora-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--ora-black);
    border: 1px solid var(--ora-white-20);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--ora-white);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ora-gold);
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ora-gray-dark);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A1A1A1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

html[dir="rtl"] .form-group select {
    background-position: left 1rem center;
    padding-right: 1.25rem;
    padding-left: 3rem;
}

.form-group select option {
    background: var(--ora-black-card);
    color: var(--ora-white);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-message {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid var(--error);
    color: var(--error);
}

/* Inquiry Info */
.inquiry-info {
    color: var(--ora-white);
}

.info-card {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.info-title {
    font-size: 1.5rem;
    color: var(--ora-white);
    margin-bottom: 0.75rem;
}

.info-description {
    color: var(--ora-gray);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--ora-black);
    border: 1px solid var(--ora-white-10);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--ora-gold);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ora-white-05);
    border-radius: var(--radius-md);
    color: var(--ora-gold);
}

.whatsapp-icon {
    background: var(--success);
    color: var(--ora-white);
}

.method-info {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--ora-gray);
    margin-bottom: 0.25rem;
}

.method-value {
    display: block;
    font-weight: 600;
    color: var(--ora-white);
}

/* ==========================================================================
   OTHER PROJECTS
   ========================================================================== */
.other-projects-section {
    background: var(--ora-black-soft);
}

.projects-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card-sm .card-image {
    aspect-ratio: 16/9;
}

.project-card-sm .card-content {
    padding: 1.25rem;
}

.project-card-sm .card-title {
    font-size: 1.125rem;
}

/* ==========================================================================
   ABOUT PROJECT SECTION
   ========================================================================== */
.about-project-section {
    background: var(--ora-black);
}

.about-project-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-project-content .section-badge {
    margin-bottom: 1rem;
}

.about-project-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

html[dir="rtl"] .about-project-content .section-title {
    text-align: right;
}

.project-description {
    color: var(--ora-gray);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.price-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--ora-black-card);
    border: 1px solid var(--ora-white-10);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
}

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

.price-item .price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--ora-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-item .price-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ora-gold);
}

.cta-card {
    background: var(--ora-black-card);
    border: 1px solid var(--ora-gold);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.cta-card h3 {
    color: var(--ora-white);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: var(--ora-gray);
    margin-bottom: 1.5rem;
}

.cta-card .btn {
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   FOOTER - MINIMAL
   ========================================================================== */
.site-footer {
    background: var(--ora-black);
    color: var(--ora-white);
    border-top: 1px solid var(--ora-white-10);
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

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

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ora-gold);
    letter-spacing: 0.15em;
}

.footer-description {
    color: var(--ora-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-title {
    color: var(--ora-gold);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: var(--ora-gray);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--ora-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-info li a,
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ora-gray);
    font-size: 0.9375rem;
}

.contact-info li a:hover {
    color: var(--ora-gold);
}

.contact-info svg {
    color: var(--ora-gold);
    flex-shrink: 0;
}

.contact-info .address {
    align-items: flex-start;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--ora-white-10);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--ora-gray-dark);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--ora-gray-dark);
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: var(--ora-gold);
}

.footer-bottom-links .separator {
    color: var(--ora-white-20);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    left: auto;
    width: 56px;
    height: 56px;
    background: var(--success);
    color: var(--ora-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    overflow: visible;
}

html[dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 1.5rem;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-grid-3 .footer-about {
        grid-column: span 2;
    }
}

/* ==========================================================================
   RESPONSIVE - TABLET & MOBILE (992px and below)
   ========================================================================== */
@media (max-width: 992px) {
    /* Show mobile menu toggle, hide desktop nav */
    .nav-desktop {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Enable mobile nav (visibility controlled by .active class) */
    .nav-mobile {
        display: block;
    }
    
    /* Layout adjustments */
    .about-grid,
    .inquiry-grid,
    .location-grid,
    .about-project-grid {
        grid-template-columns: 1fr;
    }
    
    .about-floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    .about-floating-stats .floating-stat {
        flex: 1 1 calc(33.333% - 0.5rem);
        min-width: 90px;
        padding: 0.75rem 0.5rem;
        text-align: center;
    }
    .about-floating-stats .floating-stat .stat-value {
        font-size: 1.25rem;
        display: block;
    }
    .about-floating-stats .floating-stat .stat-label {
        font-size: 0.625rem;
        display: block;
        line-height: 1.3;
    }
    
    html[dir="rtl"] .about-floating-stats {
        left: auto;
    }
    
    .about-content .section-title,
    .about-project-content .section-title {
        text-align: center;
    }
    
    .about-cta {
        justify-content: center;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --container-padding: 1.25rem;
    }
    
    section {
        padding: var(--space-4xl) 0;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid,
    .footer-grid-3 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about,
    .footer-grid-3 .footer-about {
        grid-column: span 1;
    }
    
    /* Mobile Menu Adjustments for Tablets */
    .mobile-nav-header {
        padding: 0.875rem 1.25rem;
    }
    
    .mobile-logo-img {
        height: 36px;
    }
    
    .mobile-close-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-nav-inner {
        padding: 1.25rem;
        padding-bottom: 100px;
    }
    
    .mobile-nav-menu > li > a,
    .mobile-nav-menu > li > .mobile-dropdown-toggle {
        padding: 1rem 0;
        font-size: 1.0625rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .price-info-box {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-wrapper {
        padding: 2rem;
    }
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (576px and below)
   ========================================================================== */
@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .inquiry-form-wrapper {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .units-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-slider {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp {
        bottom: 1.25rem;
        right: 1rem;
        left: auto;
        width: 52px;
        height: 52px;
    }
    
    html[dir="rtl"] .floating-whatsapp {
        right: auto;
        left: 1rem;
    }
    
    /* Mobile Menu - Small Screens */
    .mobile-nav-header {
        padding: 0.75rem 1rem;
    }
    
    .mobile-logo-img {
        height: 34px;
    }
    
    .mobile-close-btn {
        width: 38px;
        height: 38px;
    }
    
    .mobile-close-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-nav-inner {
        padding: 1rem;
        padding-bottom: 100px;
    }
    
    .mobile-nav-menu > li > a,
    .mobile-nav-menu > li > .mobile-dropdown-toggle {
        padding: 0.875rem 0;
        font-size: 1rem;
    }
    
    .mobile-dropdown-menu li a {
        padding: 0.75rem 0;
        font-size: 0.9375rem;
    }
    
    .mobile-nav-actions {
        gap: 0.75rem;
    }
    
    .mobile-lang-switch,
    .mobile-whatsapp,
    .mobile-cta {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   RESPONSIVE - EXTRA SMALL MOBILE (480px and below)
   iPhone SE, older phones
   ========================================================================== */
@media (max-width: 480px) {
    :root {
        --header-height: 64px;
        --container-padding: 1rem;
    }
    
    .site-logo .logo-img {
        height: 36px;
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }
    
    .hamburger .line {
        width: 20px;
    }
    
    /* Mobile Menu - Extra Small */
    .mobile-nav-header {
        padding: 0.625rem 0.875rem;
    }
    
    .mobile-logo-img {
        height: 30px;
    }
    
    .mobile-close-btn {
        width: 36px;
        height: 36px;
    }
    
    .mobile-close-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-nav-inner {
        padding: 0.875rem;
        padding-bottom: 90px;
    }
    
    .mobile-nav-menu > li > a,
    .mobile-nav-menu > li > .mobile-dropdown-toggle {
        padding: 0.75rem 0;
        font-size: 0.9375rem;
    }
    
    .mobile-dropdown-toggle::after {
        width: 8px;
        height: 8px;
    }
    
    .mobile-dropdown-menu {
        padding-left: 1rem;
    }
    
    html[dir="rtl"] .mobile-dropdown-menu {
        padding-left: 0;
        padding-right: 1rem;
    }
    
    .mobile-dropdown-menu li a {
        padding: 0.625rem 0;
        font-size: 0.875rem;
    }
    
    .mobile-nav-actions {
        gap: 0.625rem;
        margin-top: 1.5rem;
    }
    
    .mobile-lang-switch,
    .mobile-whatsapp,
    .mobile-cta {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* General small screen adjustments */
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .floating-whatsapp {
        bottom: 1rem;
        right: 0.875rem;
        left: auto;
        width: 48px;
        height: 48px;
    }
    
    html[dir="rtl"] .floating-whatsapp {
        right: auto;
        left: 0.875rem;
    }
}

/* ==========================================================================
   RESPONSIVE - TINY SCREENS (360px and below)
   Very small phones like iPhone SE, Galaxy S5
   ========================================================================== */
@media (max-width: 360px) {
    :root {
        --header-height: 60px;
        --container-padding: 0.75rem;
    }
    
    .site-logo .logo-img {
        height: 32px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hamburger {
        gap: 5px;
    }
    
    .hamburger .line {
        width: 18px;
    }
    
    /* Mobile Menu - Tiny Screens */
    .mobile-nav-header {
        padding: 0.5rem 0.75rem;
    }
    
    .mobile-logo-img {
        height: 28px;
    }
    
    .mobile-close-btn {
        width: 34px;
        height: 34px;
    }
    
    .mobile-close-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-nav-inner {
        padding: 0.75rem;
        padding-bottom: 80px;
    }
    
    .mobile-nav-menu > li > a,
    .mobile-nav-menu > li > .mobile-dropdown-toggle {
        padding: 0.625rem 0;
        font-size: 0.875rem;
    }
    
    .mobile-dropdown-menu li a {
        padding: 0.5rem 0;
        font-size: 0.8125rem;
    }
    
    .mobile-nav-actions {
        gap: 0.5rem;
    }
    
    .mobile-lang-switch,
    .mobile-whatsapp,
    .mobile-cta {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   RESPONSIVE FIXES PATCH (all device sizes)
   ========================================================================== */

/* Smooth header transition when scarcity banner pushes it down */
.site-header {
    transition: top .35s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s, height .25s;
}

/* Hero: use dynamic viewport + safe areas so mobile browsers don't crop it */
.hero-section,
.project-hero {
    min-height: 100vh;
    min-height: 100dvh;
}

/* Fluid hero title so it never overflows on small phones */
.hero-title,
.project-hero .hero-title {
    font-size: clamp(1.75rem, 6vw + .5rem, 4.5rem);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Tablet */
@media (max-width: 1024px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile: stacked layouts + form shows FIRST for conversions */
@media (max-width: 768px) {
    /* Hero content padding accounts for shorter header + banner */
    .hero-content,
    .project-hero .hero-content {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    /* Put the form BEFORE the contact info on mobile (lead capture priority) */
    .inquiry-grid { display: flex; flex-direction: column; }
    .inquiry-form-wrapper { order: 1; padding: 1.5rem; }
    .inquiry-info,
    .contact-info { order: 2; }

    /* Floating whatsapp: keep above sticky bar + home indicator */
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 1rem;
        bottom: calc(84px + env(safe-area-inset-bottom));
    }
    html[dir="rtl"] .floating-whatsapp {
        right: auto;
        left: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content,
    .project-hero .hero-content {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 2rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.45rem 0.85rem;
        margin-bottom: 1.25rem;
    }
    .inquiry-form-wrapper {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
    .form-title { font-size: 1.25rem; }
}

/* Very small (≤360px) — prevent horizontal scroll & tight layouts */
@media (max-width: 360px) {
    html, body { overflow-x: hidden; }
    .container { padding-inline: 1rem; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .stat-value { font-size: 1.5rem; }
    .btn { padding: 0.55rem 1rem; font-size: 0.8rem; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   PHONE VALIDATION — ORA dark-theme overrides
   ========================================================================== */
.inquiry-form-wrapper .phone-input-wrapper,
.ora-gate-form .phone-input-wrapper,
.ora-exit-form .phone-input-wrapper {
    background: var(--ora-white-05, rgba(255,255,255,0.05));
    border: 1px solid var(--ora-gold, #C9A96E);
    border-radius: 10px;
    min-height: 48px;
}
.inquiry-form-wrapper .phone-input-wrapper:focus-within,
.ora-gate-form .phone-input-wrapper:focus-within,
.ora-exit-form .phone-input-wrapper:focus-within {
    border-color: var(--ora-gold, #C9A96E);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.22);
}
.inquiry-form-wrapper .country-selector,
.ora-gate-form .country-selector,
.ora-exit-form .country-selector {
    background: rgba(255,255,255,0.06);
    border-right-color: rgba(255,255,255,0.12);
    color: #fff;
}
.inquiry-form-wrapper .country-selector .country-code,
.ora-gate-form .country-selector .country-code,
.ora-exit-form .country-selector .country-code {
    color: #fff;
}
.inquiry-form-wrapper .phone-input-wrapper input[type="tel"],
.ora-exit-form  .phone-input-wrapper input[type="tel"] {
    color: #fff !important;
    letter-spacing: 0.03em;
}
.inquiry-form-wrapper .phone-input-wrapper input[type="tel"]::placeholder,
.ora-exit-form  .phone-input-wrapper input[type="tel"]::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Gate uses a white card — keep readable */
.ora-gate-form .phone-input-wrapper {
    background: #fff;
    border-color: #e5e7eb;
}
.ora-gate-form .phone-input-wrapper:focus-within {
    border-color: #C9A96E;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}
.ora-gate-form .country-selector {
    background: #f8fafc;
    border-right-color: #e5e7eb;
    color: #0f172a;
}
.ora-gate-form .country-selector .country-code { color: #0f172a; }
.ora-gate-form .phone-input-wrapper input[type="tel"] { color: #1a1a1a !important; }

/* Dropdown always light (rendered in <body>) */
.country-dropdown { color: #0f172a; }

/* Anchor targets: clear fixed header when jumping from nav */
#hero,
#projects,
#about,
#contact,
#inquiry-form,
.ora-scroll-anchor {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

/* ==========================================================================
   ACCESSIBILITY OVERRIDES v3 — WCAG AA/AAA contrast (Lighthouse 100 target)
   Strategy: explicit overrides for EVERY flagged element.
   - White bg → use #595959+ for muted text (7.0:1)
   - Dark bg (#000/#0A0A0A/#1A1A1A) → use #D4D4D4 for muted text (10.7:1 AAA)
   - WhatsApp green: #25D366 on white = 1.86:1 FAIL → use #0E6F34 button (7.5:1 AAA)
   ========================================================================== */

/* WhatsApp buttons everywhere */
html body .btn-whatsapp,
html body a.btn-whatsapp,
html body .btn.btn-whatsapp,
html body a.btn.btn-whatsapp {
    background: #0E6F34 !important;
    border-color: #0E6F34 !important;
    color: #FFFFFF !important;
}
html body .btn-whatsapp:hover,
html body a.btn-whatsapp:hover {
    background: #0A5827 !important;
    border-color: #0A5827 !important;
    color: #FFFFFF !important;
}

/* Section subtitles — most sections are dark; only force #404040 on light sections explicitly.
   Default: light text on dark backgrounds. */
html body .section-subtitle {
    color: #C8C8C8 !important;  /* 13.5:1 on #1A1A1A AAA — works on dark by default */
}
/* Light-bg sections override: (none currently use light bg, but defensive for future) */
html body .light-bg .section-subtitle,
html body .bg-white .section-subtitle {
    color: #404040 !important;
}

/* Project cards have DARK bg (#1A1A1A) — text needs LIGHT colors */
html body .project-card .card-location,
html body .project-card .card-tagline,
html body .project-card .stat-label,
html body .project-card .card-stat .stat-label,
html body .project-card .price-label,
html body .project-card .card-price .price-label {
    color: #D4D4D4 !important;  /* 10.7:1 on #1A1A1A */
}

/* About section — entire section bg is BLACK, all text needs to be light */
html body .about-section,
html body .about-section .about-text,
html body .about-section p,
html body .about-section .about-content p {
    color: #E8E8E8 !important;
}
html body .about-section .section-title,
html body .about-section .about-content .section-title {
    color: #FFFFFF !important;
}
html body .about-section .section-subtitle,
html body .about-section .about-content .section-subtitle {
    color: #C8C8C8 !important;  /* override the white-bg #404040 default */
}
/* About section "floating-stat" cards (dark bg) */
html body .floating-stat,
html body .floating-stat .stat-label,
html body .floating-stat span {
    color: #D4D4D4 !important;
}
html body .floating-stat .stat-value {
    color: #D4B896 !important;  /* gold-light, AAA on dark */
}
/* Section badges across all sections — gold on transparent on dark = AAA */
html body .section-badge,
html body .about-content .section-badge,
html body .about-project-content .section-badge {
    color: #E8C58A !important;
    border-color: #E8C58A !important;
    background: transparent !important;
}

/* Contact "method-label" (Call Us / Chat on WhatsApp) — on dark cards */
html body .contact-method,
html body .contact-method .method-label,
html body .contact-method.whatsapp-method,
html body .contact-method.whatsapp-method .method-label,
html body .info-card .method-label,
html body .info-card .info-description {
    color: #D4D4D4 !important;
}
/* "Chat on WhatsApp" link itself stays on dark — text white for AAA */
html body a.contact-method.whatsapp-method {
    color: #FFFFFF !important;
}
html body .info-description {
    color: #D4D4D4 !important;
}

/* Footer is on #000 — needs light text */
html body .site-footer,
html body .site-footer p,
html body .site-footer span,
html body .site-footer .footer-description,
html body .site-footer .footer-links a,
html body .site-footer .contact-info li,
html body .site-footer .contact-info li a {
    color: #D4D4D4 !important;
}
html body .site-footer .copyright {
    color: #B8B8B8 !important;  /* 8.6:1 on black AAA */
}
html body .site-footer .footer-bottom-links a {
    color: #C8C8C8 !important;
}
html body .site-footer .footer-title {
    color: #E8C58A !important;  /* gold-ish, AAA on black */
}

/* Sticky CTA bar at bottom — dark green/blue area */
html body .ora-sticky-btn,
html body .ora-sticky-btn span,
html body .ora-sticky-wa,
html body .ora-sticky-wa span,
html body .ora-sticky-call,
html body .ora-sticky-call span {
    color: #FFFFFF !important;
}
html body .ora-sticky-wa {
    background: #0E6F34 !important;  /* AAA contrast for white text */
}

/* Form subtitle (Get the best offers) — inquiry form has DARK card bg */
html body .form-subtitle {
    color: #C8C8C8 !important;  /* AAA on dark */
}
html body .inquiry-form-wrapper .form-title,
html body .inquiry-form-wrapper .form-subtitle,
html body .inquiry-form-wrapper label,
html body .inquiry-form-wrapper .form-group label {
    color: #FFFFFF !important;
}
html body .inquiry-form-wrapper .form-subtitle {
    color: #C8C8C8 !important;
}
/* Form inputs themselves should have light bg + dark text for clarity */
html body .inquiry-form-wrapper input[type="text"],
html body .inquiry-form-wrapper input[type="tel"],
html body .inquiry-form-wrapper input[type="email"],
html body .inquiry-form-wrapper select,
html body .inquiry-form-wrapper textarea {
    background: rgba(255,255,255,0.06) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}
html body .inquiry-form-wrapper input::placeholder,
html body .inquiry-form-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}
html body .inquiry-form-wrapper input:focus,
html body .inquiry-form-wrapper select:focus,
html body .inquiry-form-wrapper textarea:focus {
    border-color: #C5A47E !important;
    background: rgba(255,255,255,0.10) !important;
}

/* Defensive: any leftover .card-* text muted classes on dark cards */
html body .project-card p,
html body .project-card span:not(.btn-text):not(.required) {
    color: inherit;
}
/* Force project-card root text color to a light, accessible default */
html body .project-card {
    color: #E8E8E8 !important;
}

/* ==========================================================================
   MOBILE OVERFLOW FIX — eliminates horizontal scroll on phones.
   Common causes: wide images, padding/margins on full-width sections,
   inline-style transforms, sticky bars wider than viewport.
   ========================================================================== */
@media (max-width: 768px) {
    /* Hard cap: nothing wider than the screen */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    /* Every direct descendant must respect viewport width — but EXCLUDE fixed/absolute
       overlays (mobile menu, popups, gates) so they can fill the screen properly. */
    html body *:not(.nav-mobile):not(.nav-mobile *):not(#ora-contact-gate):not(#ora-contact-gate *):not(.ora-popup):not(.ora-popup *):not(.modal):not(.modal *):not([role="dialog"]):not([role="dialog"] *):not(.exit-popup):not(.exit-popup *) {
        max-width: 100% !important;
    }
    /* Containers: full width with safe padding (no negative margins) */
    html body .container,
    html body .footer-container,
    html body .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    /* Sections: no overflow, full width — DO NOT clip <header> because nav-mobile
       is a fixed child that must escape header bounds. */
    html body section,
    html body main,
    html body footer,
    html body .hero-section,
    html body .projects-section,
    html body .about-section,
    html body .inquiry-section {
        max-width: 100vw !important;
        overflow-x: clip !important;
        box-sizing: border-box !important;
    }
    /* Header: no clipping — nav-mobile (fixed, full screen) must escape. */
    html body header.site-header,
    html body .site-header {
        max-width: 100vw !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    /* Mobile logo sizing — keep small, never let inline width attribute force 120/160 */
    html body .site-logo .logo-img,
    html body .logo-img {
        height: 32px !important;
        width: auto !important;
        max-width: 120px !important;
        max-height: 32px !important;
        object-fit: contain !important;
    }
    html body .mobile-logo-img {
        height: 30px !important;
        width: auto !important;
        max-width: 110px !important;
        max-height: 30px !important;
        object-fit: contain !important;
    }
    html body .footer-logo img {
        height: 36px !important;
        width: auto !important;
        max-width: 130px !important;
        max-height: 36px !important;
        object-fit: contain !important;
    }
    /* Mobile nav must always be full screen and on top, regardless of parent overflow. */
    html body .nav-mobile {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 9999 !important;
    }
    html body .mobile-menu-toggle {
        z-index: 10000 !important;
    }
    /* Grids/flex rows: wrap, never overflow */
    html body .projects-grid,
    html body .footer-grid,
    html body .about-grid,
    html body .nav-actions,
    html body .nav-menu,
    html body .form-row,
    html body .ora-cd-cell,
    html body .ora-countdown {
        flex-wrap: wrap !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Images: never wider than their container.
       NOTE: do NOT force `height: auto` on images that are children of containers
       using object-fit (like .card-image img / .about-image img / .hero img),
       because those need height:100% to fill the aspect-ratio box. */
    html body img,
    html body picture,
    html body svg,
    html body video {
        max-width: 100% !important;
    }
    /* Default: free-standing images get height: auto so they keep aspect ratio */
    html body img:not(.card-image img):not(.about-image img):not(.hero-image img):not(.project-hero img):not([style*="object-fit"]) {
        height: auto !important;
    }
    /* Object-fit images (cards, hero, about) MUST keep height:100% to fill their box */
    html body .card-image img,
    html body .about-image img,
    html body .hero-image img,
    html body .project-hero img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        max-width: 100% !important;
    }
    /* Tables/pre/code: scroll inside their container, not the page */
    html body table,
    html body pre,
    html body code {
        max-width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        box-sizing: border-box !important;
    }
    /* Sticky bottom CTA bar — must be exactly viewport-wide */
    html body .ora-sticky-bar {
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }
    /* Floating WhatsApp / chips — keep inside viewport */
    html body .floating-whatsapp,
    html body .floating-stat {
        max-width: calc(100vw - 32px) !important;
        right: 16px !important;
        box-sizing: border-box !important;
    }
    html[dir="rtl"] body .floating-whatsapp,
    html[dir="rtl"] body .floating-stat {
        right: auto !important;
        left: 16px !important;
    }
    /* Project cards — no minimum width that could blow out the row */
    html body .project-card {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Long URLs / text — break instead of stretching */
    html body p,
    html body a,
    html body span,
    html body h1, html body h2, html body h3, html body h4,
    html body .card-tagline,
    html body .card-location,
    html body .footer-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    /* Scarcity banner text long → wrap */
    html body #oraScarcityBanner {
        max-width: 100vw !important;
        white-space: normal !important;
        text-align: center !important;
    }
    /* Inquiry form full width on mobile */
    html body .inquiry-form-wrapper,
    html body .ora-gate-box,
    html body .ora-exit-box {
        max-width: calc(100vw - 24px) !important;
        width: calc(100vw - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    /* Phone country dropdown — never wider than screen */
    html body .country-dropdown,
    html body .country-list {
        max-width: calc(100vw - 16px) !important;
        box-sizing: border-box !important;
    }
}
