/*
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);
    
    --ora-gray: #A1A1A1;
    --ora-gray-light: #B8B8B8;
    --ora-gray-dark: #6B6B6B;
    
    /* Semantic Colors */
    --success: #25D366;
    --success-dark: #1DA851;
    --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.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 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;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    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;
    }
}
