:root {
    --primary-dark: #1a1917;
    --secondary-dark: #242320;
    --gold: #a08e65;
    --gold-light: #b8a57a;
    --gold-dark: #8a7956;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-muted: rgba(255,255,255,0.7);
    --text-dark: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Logo */
.logo, .logo-center, .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: lowercase;
    font-weight: 300;
    margin-top: 2px;
}

.logo .logo-img,
.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.footer-logo .logo-img {
    height: 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26,25,23,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26,25,23,0.98);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    align-items: flex-start;
}

.logo .logo-text {
    font-size: 1.5rem;
}

.logo .logo-sub {
    font-size: 0.6rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-light);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-inline-start: 12px;
}

.lang-btn:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
    padding-top: 70px;
    padding-bottom: 200px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
                url('../image/WhatsApp%20Image%202026-07-21%20at%2011.50.05%20AM.jpeg') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,25,23,0.3), rgba(26,25,23,0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 60px;
    text-align: right;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin-bottom: 80px;
}

.feature-item {
    position: relative;
    padding-right: 20px;
    border-right: 3px solid var(--gold-light);
}

.feature-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-item h4::before {
    content: '| ';
    color: var(--gold-light);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: var(--gold);
    padding: 30px 0;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hero-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: var(--white);
}

.hero-card i {
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 5px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-card:hover i {
    transform: rotate(360deg) scale(1.15);
}

.hero-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light p {
    opacity: 0.8;
}

.logo-center {
    margin-bottom: 30px;
}

.logo-center-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo-center .logo-text {
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold-light);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Services Section */
.services {
    background: var(--primary-dark);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--gold);
    padding: 30px;
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0.95;
}

.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.about-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Tours Section */
.tours {
    background: var(--gold);
    padding: 80px 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tour-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.tour-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.tour-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(26,25,23,0.95), transparent);
    z-index: 1;
}

.tour-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.tour-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.tour-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.tour-content::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--white);
    margin-top: 15px;
    border-radius: 2px;
}

/* Clients Section */
.clients {
    background: var(--gold);
    padding: 80px 0 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.client-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--primary-dark);
}

.client-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    z-index: 2;
    text-align: center;
}

.client-logo i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.client-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, rgba(26,25,23,0.3), rgba(26,25,23,0.8));
    z-index: 1;
}

.client-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding: 25px;
    background: var(--primary-dark);
    color: var(--white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.client-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.client-content::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--white);
    margin-top: 12px;
    border-radius: 2px;
}

/* Stats Section */
.stats {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number,
.stat-suffix {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-item p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Apartments Section */
.apartments {
    background: var(--gold);
    padding: 80px 0;
}

.apartments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.apartments-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.apartments-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.apartments-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26,25,23,0.9);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.apartments-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.apartments-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.apartments-list {
    margin-bottom: 30px;
}

.apartments-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.apartments-list i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Steps Section */
.steps {
    background: var(--gold);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.step-item {
    color: var(--white);
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26,25,23,0.3);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item:nth-child(2) .step-number {
    background: var(--white);
    color: var(--gold);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* App Section */
.app {
    background: var(--primary-dark);
    padding: 100px 0;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 360px;
    height: 420px;
    background: var(--secondary-dark);
    border-radius: 30px;
    padding: 25px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1e1d1b;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.status-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    min-width: 100px;
}

.status-badge span {
    font-size: 0.65rem;
    opacity: 0.7;
}

.status-badge strong {
    font-size: 0.8rem;
}

.status-badge i {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    color: var(--gold-light);
}

.panorama-preview {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.panorama-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vr-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.live-preview {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 150px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.live-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-preview span {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-preview span i {
    color: #4ade80;
    font-size: 0.5rem;
}

.app-content {
    color: var(--white);
}

.app-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.app-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 450px;
}

.app-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 450px;
    margin-bottom: 40px;
}

.store-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn div span {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 600;
}

.store-btn div strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.rating {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 5px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.rating i {
    font-size: 0.7rem;
    color: var(--gold-light);
}

/* CTA Section */
.cta {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn-outline-dark {
    background: var(--white);
    border-color: var(--primary-dark);
}

.cta-buttons .btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.cta-buttons .btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-dark);
}

/* Retention Section */
.retention {
    background: var(--gold);
}

.retention-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.retention-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-overlay {
    position: absolute;
    bottom: 30px;
    right: 10%;
    width: 120px;
    height: 180px;
    background: var(--primary-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.camera-overlay i {
    font-size: 3rem;
    color: var(--gold-light);
}

.retention-content {
    padding: 80px 0;
}

.retention-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.retention-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 5px;
}

.retention-text h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.retention-text p {
    color: var(--primary-dark);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.05rem;
}

.retention-features ul {
    list-style: none;
}

.retention-features li {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
    padding-right: 15px;
}

.retention-features li::before {
    content: '|';
    position: absolute;
    right: 0;
    color: var(--primary-dark);
    font-weight: 700;
}

[dir="ltr"] .retention-features li {
    padding-right: 0;
    padding-left: 15px;
}

[dir="ltr"] .retention-features li::before {
    right: auto;
    left: 0;
}

.dark-steps .step-number {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.dark-steps .step-item:nth-child(2) .step-number {
    background: var(--white);
    color: var(--gold);
}

.dark-steps .step-item h3,
.dark-steps .step-item p {
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    background: var(--gold);
    padding: 80px 0 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stars {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    background: var(--gold);
    padding: 40px 0 80px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(26,25,23,0.2);
    border: none;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26,25,23,0.3);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(26,25,23,0.1);
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn.whatsapp {
    background: var(--white);
    color: var(--primary-dark);
}

.contact-btn.whatsapp:hover {
    background: var(--gold-light);
}

.contact-btn.linkedin {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.contact-btn.linkedin:hover {
    background: rgba(255,255,255,0.1);
}

.contact-btn i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.social-links span {
    font-weight: 700;
    margin-left: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-right: 5px;
}

.footer-about .footer-logo {
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-about .logo-text {
    font-size: 1.8rem;
}

.footer-about h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--gold-light);
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location h4 {
    margin-bottom: 12px;
}

.map-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
}

.map-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--white);
    background: var(--gold-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(160, 142, 101, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(160, 142, 101, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(160, 142, 101, 0.5), 0 0 10px rgba(160, 142, 101, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(160, 142, 101, 0.8), 0 0 30px rgba(160, 142, 101, 0.5);
    }
}

.fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-down {
    animation: fadeInDown 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rotate-in {
    animation: rotateIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Hover Effects */
.service-card,
.tour-card,
.client-card,
.testimonial-card,
.step-item,
.hero-card,
.apartments-image {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.service-card:hover,
.tour-card:hover,
.client-card:hover,
.testimonial-card:hover,
.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 30px rgba(160, 142, 101, 0.3);
}

.tour-card:hover,
.client-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.step-item:hover .step-number {
    animation: pulse 1.5s infinite;
}

.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.btn-primary:hover,
.store-btn:hover,
.contact-btn.whatsapp:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.3), 0 0 20px rgba(160, 142, 101, 0.4);
}

.social-links a {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.nav-menu a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

.logo-img,
.logo-center-img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover .logo-img,
.logo-center:hover .logo-center-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(160, 142, 101, 0.5));
}

/* Image hover effects */
.apartments-image:hover,
.map-thumb:hover {
    transform: scale(1.02);
}

.apartments-image img,
.tour-image img,
.client-image img,
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apartments-image:hover img,
.tour-card:hover img,
.client-card:hover img,
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Floating animation for phone mockup */
.phone-mockup {
    animation: float 6s ease-in-out infinite;
}

/* Hero title animation */
.hero-title {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-label {
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-features .feature-item {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.hero-features .feature-item:nth-child(1) { animation-delay: 0.4s; }
.hero-features .feature-item:nth-child(2) { animation-delay: 0.6s; }
.hero-features .feature-item:nth-child(3) { animation-delay: 0.8s; }

/* Stats number animation */
.stat-number {
    transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(184, 165, 122, 0.5);
}

.stat-item p {
    transition: color 0.3s ease;
}

.stat-item:hover p {
    color: var(--gold-light);
}

/* Divider animation */
.divider {
    transition: width 0.6s ease;
}

.section-header:hover .divider {
    width: 100px;
}

/* FAQ smooth transitions */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* Link hover underline effect */
.footer-links a {
    position: relative;
    transition: color 0.3s ease, padding 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-right: 0;
}

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

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: scaleIn 0.6s ease, float 3s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(160, 142, 101, 0.2);
    border-top-color: var(--gold-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Stagger delay utilities */
[data-delay="1"] { animation-delay: 0.1s; }
[data-delay="2"] { animation-delay: 0.2s; }
[data-delay="3"] { animation-delay: 0.3s; }
[data-delay="4"] { animation-delay: 0.4s; }
[data-delay="5"] { animation-delay: 0.5s; }
[data-delay="6"] { animation-delay: 0.6s; }

/* Smooth scroll reveal base state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .tours-grid,
    .clients-grid,
    .testimonials-grid,
    .steps-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apartments-grid,
    .app-grid,
    .retention-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        display: flex;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .tours-grid,
    .clients-grid,
    .testimonials-grid,
    .steps-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons,
    .cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .retention-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .camera-overlay {
        width: 80px;
        height: 120px;
        right: 5%;
    }
    
    .camera-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .app-content h2 {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 360px;
    }
    
    .stat-number,
    .stat-suffix {
        font-size: 2rem;
    }
}
