:root {
    /* Premium Color Palette */
    --primary: #050B14;      /* Ultra Dark Navy */
    --secondary: #0A192F;    /* Dark Navy */
    --gold: #D4AF37;         /* Luxury Gold */
    --gold-light: #F9E596;
    --gold-dark: #A68827;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    
    /* Variables */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --box-shadow-soft: 0 10px 40px -10px rgba(10, 25, 47, 0.1);
    --box-shadow-hover: 0 20px 50px -10px rgba(10, 25, 47, 0.2);
}

/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.number-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-inline: auto;
}

.subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold-glow {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% auto;
    color: var(--primary);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-gold-glow:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

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

.full-width {
    width: 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
}

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

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--gold);
}

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

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(10, 25, 47, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
    padding-top: 80px;
}

.badge-premium {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Partners Section */
.partners {
    background: var(--primary);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.partners-title {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-grid i {
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
    transition: var(--transition);
}

.partners-grid i:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Trust Bar */
.trust-container {
    position: relative;
}

.trust-bar {
    background: var(--white);
    padding: 40px;
    position: relative;
    z-index: 20;
    transform: translateY(-50%);
    margin-bottom: -50px; /* offset the transform */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 24px;
    position: relative;
}

/* Add dividers between items */
.trust-grid > div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #E2E8F0;
    left: 0; /* RTL specific */
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: var(--gold-dark);
    font-size: 1.8rem;
    transition: var(--transition);
}

.trust-item:hover .icon-box {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.trust-item h3 {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 700;
}

/* Services / Why Us */
.services {
    padding: 60px 0 100px;
    background: var(--bg-light);
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

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

.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-bottom-color: var(--gold);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Properties */
.featured {
    padding: 100px 0;
    background: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.property-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition);
    border: 1px solid #F1F5F9;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.property-img-wrapper {
    position: relative;
    overflow: hidden;
}

.property-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.property-card:hover .property-img {
    transform: scale(1.1);
}

.grayscale {
    filter: grayscale(80%);
}

.overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-badge, .type-badge {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-badge.sale { background: var(--secondary); color: var(--white); }
.status-badge.sold { background: #E11D48; color: var(--white); }
.type-badge { background: var(--gold); color: var(--primary); }

.img-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 700;
    gap: 5px;
}

.icon-btn:hover { background: var(--gold); color: var(--white); }
.icon-btn:last-child { width: auto; padding: 0 12px; }

.property-content {
    padding: 30px;
}

.price-row {
    margin-bottom: 15px;
}

.property-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 900;
    direction: ltr;
    text-align: right;
}

.property-price span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
}

.property-location {
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.property-location i { color: var(--gold); margin-left: 5px; }

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 25px;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.property-features i { color: var(--text-light); font-size: 1.1rem; }

.btn.disabled {
    pointer-events: none;
    border-color: #CBD5E1;
    color: #CBD5E1;
}

.center-action {
    text-align: center;
}

/* Virtual Tour Video Section */
.video-tour {
    height: 70vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 20, 0.7);
}

.video-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.play-btn-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.play-btn {
    position: absolute;
    inset: 0;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 2;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s linear infinite;
    z-index: 1;
}

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

.video-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.video-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 40px; /* RTL reversed */
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 800;
}

.client-info span {
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lead Form Section */
.lead-section {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(5, 11, 20, 0) 70%);
}

.lead-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.lead-text {
    color: var(--white);
}

.lead-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text p {
    font-size: 1.2rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.info-item h5 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-item span {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
}

.lead-form-wrapper {
    position: relative;
}

.form-decoration {
    position: absolute;
    top: -20px;
    right: -20px; /* rtl */
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.lead-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.lead-form-box h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 16px 20px 16px 45px; /* right padding for icon in RTL */
    border-radius: var(--border-radius-sm);
    border: 1px solid #CBD5E1;
    background: #F8FAFC;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.input-icon {
    position: absolute;
    bottom: 18px;
    right: 18px; /* RTL */
    color: var(--text-light);
    font-size: 1.2rem;
}

.form-control:focus + .input-icon {
    color: var(--gold);
}

.secure-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.secure-note i { color: #10B981; }

/* Footer */
footer {
    background: #03070E;
    color: var(--white);
    padding: 80px 0 0;
    border-top: 5px solid var(--gold);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-col p {
    color: #94A3B8;
    margin: 25px 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '\f104'; /* fa-angle-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.work-hours li {
    display: flex;
    justify-content: space-between;
    color: #94A3B8;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.gold-text { color: var(--gold) !important; font-weight: 700; }

.newsletter-col p {
    color: #94A3B8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--gold);
    color: var(--primary);
    border: none;
    width: 50px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748B;
    font-size: 0.95rem;
}

.dev-credits {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .trust-grid > div:not(:last-child)::after { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .nav-container .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content { text-align: center; margin: 0 auto; padding-top: 40px; }
    .hero-actions { justify-content: center; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .lead-container { grid-template-columns: 1fr; }
    .lead-text { text-align: center; margin: 0 auto; }
    .contact-info-list { align-items: center; }
    .form-decoration { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    
    .section-header h2 { font-size: 2.2rem; }
    
    .trust-bar { transform: translateY(-30%); margin-bottom: -30px; padding: 30px 15px; }
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .video-content h2 { font-size: 2.2rem; }
    
    .lead-form-box { padding: 30px 20px; }
    .lead-text h2 { font-size: 2.4rem; }
    
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* ==========================================================================
   Demo Modal Styles
   ========================================================================== */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.demo-modal.show {
    opacity: 1;
    visibility: visible;
}

.demo-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    text-align: center;
    transform: translateY(50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.demo-modal.show .demo-modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    font-size: 3rem;
    color: #2e5c3e;
    margin-bottom: 20px;
}

.demo-modal-content h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.demo-modal-content p {
    color: #4a4a4a;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.demo-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-modal-actions .btn-modal {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-modal {
    background: transparent;
    border: 2px solid #e0e0e0 !important;
    color: #555 !important;
}

.btn-outline-modal:hover {
    background: #f5f5f5;
    color: #1a1a1a !important;
    border-color: #d0d0d0 !important;
}

.btn-primary-modal {
    background: #0077b5;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.btn-primary-modal:hover {
    background: #006097;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}