/* =====================================================
   Aqari — Global Stylesheet
   Cleaned & deduplicated. RTL handled via [dir="rtl"].
   ===================================================== */

:root {
    --primary: #2B62B4;
    --secondary: #6682c9;
    --primary-dark: #1e4a8a;
    --primary-light: #4a7fd4;
    --accent-green: #10B981;
    --accent-gold: #F59E0B;
    --accent-rose: #F43F5E;
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    --dark: #0B1120;
    --darker: #060912;
    --light: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

/* =====================================================
   Background
   ===================================================== */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, rgba(43, 98, 180, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(102, 130, 201, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 30s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    top: -300px;
    left: -200px;
    opacity: 0.15;
}

[dir="rtl"] .orb-1 {
    left: auto;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
    bottom: -200px;
    right: -100px;
    opacity: 0.12;
    animation-delay: -10s;
}

[dir="rtl"] .orb-2 {
    right: auto;
    left: -100px;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.03); }
}

/* =====================================================
   Navigation
   ===================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 6px 25px rgba(43, 98, 180, 0.4);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light);
}

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

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    font-family: inherit;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-400);
    padding: 0.75rem 1rem;
}

.btn-ghost:hover {
    color: var(--light);
    background: var(--glass);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(43, 98, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(43, 98, 180, 0.5);
}

.btn-green {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 16px;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--light);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(43, 98, 180, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.15rem;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   Main Content
   ===================================================== */
main {
    flex: 1;
    padding-top: 80px;
}

/* Page Header / Breadcrumb */
.page-header {
    padding: 5rem 5% 3rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--gray-400);
}

/* =====================================================
   Content Section (shared across sub-pages)
   ===================================================== */
.content-section {
    padding: 3rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-card h2 i {
    color: var(--primary-light);
}

.content-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--light);
}

.content-card p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-card ul {
    color: var(--gray-400);
    margin: 1rem 0 1rem 1.5rem;
}

[dir="rtl"] .content-card ul {
    margin-left: 0;
    margin-right: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

/* =====================================================
   Section Styles (Landing)
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(43, 98, 180, 0.1) 0%, rgba(102, 130, 201, 0.1) 100%);
    border: 1px solid rgba(43, 98, 180, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.download-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    padding: 0.875rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.download-btn:hover {
    background: rgba(43, 98, 180, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 1.75rem;
    color: var(--light);
}

.download-btn .text {
    text-align: left;
}

[dir="rtl"] .download-btn .text {
    text-align: right;
}

.download-btn .text span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn .text strong {
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stats .stat {
    position: relative;
}

.hero-stats .stat::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

[dir="rtl"] .hero-stats .stat::after {
    right: auto;
    left: -1.5rem;
}

.hero-stats .stat:last-child::after {
    display: none;
}

.hero-stats .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* =====================================================
   Hero Visual / Phone
   ===================================================== */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-container {
    position: relative;
    perspective: 1500px;
}

.phone-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.25;
    z-index: 0;
}

.phone-3d {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateX(7deg) rotateY(-7deg); }
}

.phone {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 45px;
    padding: 10px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(43, 98, 180, 0.15);
}

.phone::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--light);
    border-radius: 38px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 3;
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card-1 { top: 8%; left: -80px; }
.floating-card-2 { bottom: 30%; right: -70px; animation-delay: -1.5s; }
.floating-card-3 { top: 45%; left: -100px; animation-delay: -3s; }

[dir="rtl"] .floating-card-1 { left: auto; right: -80px; }
[dir="rtl"] .floating-card-2 { right: auto; left: -70px; }
[dir="rtl"] .floating-card-3 { left: auto; right: -100px; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card-icon.blue {
    background: linear-gradient(135deg, rgba(43, 98, 180, 0.15) 0%, rgba(102, 130, 201, 0.15) 100%);
    color: var(--primary);
}

.card-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    color: var(--accent-green);
}

.card-icon.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    color: var(--accent-gold);
}

.card-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
}

.card-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

/* =====================================================
   Services Section
   ===================================================== */
.services {
    padding: 7rem 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 98, 180, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    color: white;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.blue  { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); box-shadow: 0 12px 35px rgba(43, 98, 180, 0.4); }
.service-icon.green { background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%); box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4); }
.service-icon.gold  { background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%); box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4); }
.service-icon.purple{ background: linear-gradient(135deg, var(--accent-purple) 0%, #7C3AED 100%); box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4); }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =====================================================
   Property Types
   ===================================================== */
.property-types {
    padding: 7rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(43, 98, 180, 0.03) 50%, transparent 100%);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.property-type-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.5rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.property-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.property-type-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(43, 98, 180, 0.2);
}

.property-type-card:hover::before { opacity: 1; }
.property-type-card > * { position: relative; z-index: 1; }

.property-type-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 0.75rem;
    background: rgba(43, 98, 180, 0.1);
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.property-type-card:hover .property-type-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.property-type-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.property-type-card:hover h4 { color: white; }

/* =====================================================
   App Showcase (Swiper)
   ===================================================== */
.app-showcase {
    padding: 7rem 5%;
    overflow: hidden;
}

.swiper-container {
    max-width: 100%;
    padding: 2rem 0;
}

.app-swiper {
    padding: 1.5rem 0 4rem;
}

.showcase-phone-wrapper {
    perspective: 1200px;
}

.showcase-phone {
    width: 240px;
    height: 500px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    transform: rotateY(20deg) scale(0.9);
    margin: 0 auto;
}

.swiper-slide-active .showcase-phone {
    transform: rotateY(0deg) scale(1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), 0 0 60px rgba(43, 98, 180, 0.2);
}

.swiper-slide-prev .showcase-phone { transform: rotateY(20deg) scale(0.9); }
.swiper-slide-next .showcase-phone { transform: rotateY(-20deg) scale(0.9); }

.showcase-phone .phone-screen { border-radius: 34px; }

.swiper-pagination-bullet {
    background: var(--gray-500);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 1;
    width: 35px;
    border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-light);
    background: var(--glass);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.15rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

/* =====================================================
   Investment Section
   ===================================================== */
.investment {
    padding: 7rem 5%;
}

.investment-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.investment-card-main {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: 28px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(16, 185, 129, 0.3);
}

.investment-card-main::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

[dir="rtl"] .investment-card-main::before {
    right: auto;
    left: -80px;
}

.investment-card-main > * { position: relative; z-index: 1; }
.investment-card-main .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.investment-card-main h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.investment-card-main > p { opacity: 0.9; margin-bottom: 1.75rem; font-size: 0.95rem; }

.investment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.inv-stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.1rem;
    text-align: center;
}

.inv-stat-value { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.inv-stat-label { font-size: 0.75rem; opacity: 0.9; margin-top: 0.25rem; }

.investment-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.investment-text > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--gray-300);
}

/* =====================================================
   Auctions Section
   ===================================================== */
.auctions {
    padding: 7rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 158, 11, 0.03) 50%, transparent 100%);
}

.auction-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.auction-feature {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    transition: all 0.3s ease;
}

.auction-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.auction-feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    color: white;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.35);
    transition: transform 0.3s ease;
}

.auction-feature:hover .auction-feature-icon { transform: scale(1.08); }
.auction-feature h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.auction-feature p { color: var(--gray-400); font-size: 0.85rem; }

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
    padding: 7rem 5%;
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 36px;
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(43, 98, 180, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

[dir="rtl"] .cta-box::before {
    left: auto;
    right: -80px;
}

.cta-content { position: relative; z-index: 1; }

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
    padding: 3rem 5% 1.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 280px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.6rem; }

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-column a i { font-size: 0.55rem; }

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

[dir="rtl"] .footer-column a:hover {
    transform: translateX(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.footer-bottom i.fa-heart { color: var(--accent-rose); }

/* =====================================================
   Mobile Menu Overlay
   ===================================================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

[dir="rtl"] .mobile-menu-close {
    right: auto;
    left: 5%;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1200px) {
    .property-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 9rem;
    }
    .hero-content { max-width: 100%; }
    .hero-description { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
    .floating-card { display: none; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .property-grid { grid-template-columns: repeat(4, 1fr); }

    .investment-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .investment-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    .feature-list { align-items: center; }
    .auction-features { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta .btn-ghost { display: none; }
    .mobile-menu-btn { display: flex; }

    .services-grid { grid-template-columns: 1fr; }
    .property-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .hero-stats .stat { text-align: center; }
    .hero-stats .stat::after { display: none; }
    .auction-features { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .social-links { justify-content: center; }
    .phone { width: 250px; height: 520px; }

    .content-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .property-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { padding: 3rem 1.5rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
