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

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #78350f 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Canvas Background - Real Estate Theme */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1000px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(254, 154, 0, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.5s ease-out;
    transition: background 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(254, 154, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    text-align: right;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to left, #fbbf24, #fe9a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.nav-btn {
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 154, 0, 0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #e58a00 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 154, 0, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon {
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(5deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
    }
}

.sparkles {
    color: #fe9a00;
    filter: drop-shadow(0 0 10px rgba(254, 154, 0, 0.5));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight-orange {
    color: #fe9a00;
}

.gradient-text {
    background: linear-gradient(to right, #fbbf24, #fe9a00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(10deg);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #fef3c7;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(254, 154, 0, 0.5);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e58a00 0%, #d97706 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(254, 154, 0, 0.7);
}

.cta-button:active {
    transform: scale(1.02) translateY(0);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(254, 154, 0, 0.1), rgba(251, 191, 36, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(254, 154, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(254, 154, 0, 0.5);
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fe9a00;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(254, 154, 0, 0.3);
}

.stat-label {
    color: #fef3c7;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid #fe9a00;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    animation: bounce 2s infinite;
}

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

.scroll-dot {
    width: 4px;
    height: 12px;
    background: #fe9a00;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(254, 154, 0, 0.5);
}

/* Section */
.section {
    padding: 8rem 1rem;
    position: relative;
}

.section-gradient {
    background: linear-gradient(to bottom, transparent 0%, rgba(254, 154, 0, 0.05) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(254, 154, 0, 0.15);
    border: 1px solid rgba(254, 154, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: #fef3c7;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(254, 154, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.feature-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(254, 154, 0, 0.5);
    box-shadow: 0 20px 40px rgba(254, 154, 0, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(254, 154, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 370px;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: rgba(254, 154, 0, 0.5);
    box-shadow: 0 20px 40px rgba(254, 154, 0, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.3);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Process */
.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-line {
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, #fe9a00, rgba(254, 154, 0, 0.3));
    margin-top: 1rem;
}

.process-step:last-child .process-line {
    display: none;
}

.process-content {
    flex: 1;
    padding-top: 1rem;
    position: relative;
}

.process-number {
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(254, 154, 0, 0.15);
    z-index: -1;
}

.process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.process-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(254, 154, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 370px;
}

.audience-card:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: rgba(254, 154, 0, 0.5);
    box-shadow: 0 20px 40px rgba(254, 154, 0, 0.2);
}

.audience-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.3);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(12deg);
}

.audience-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.audience-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.audience-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 600;
}

/* Contact */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-banner {
    background: linear-gradient(135deg, rgba(254, 154, 0, 0.1), rgba(251, 191, 36, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(254, 154, 0, 0.3);
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(254, 154, 0, 0.2);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-section {
    text-align: center;
}

.contact-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.3);
}

.contact-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-link:hover {
    color: #fe9a00;
    background: rgba(254, 154, 0, 0.1);
}

.contact-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(254, 154, 0, 0.5), transparent);
    margin-bottom: 3rem;
}

.social-section {
    text-align: center;
}

.social-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 154, 0, 0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(254, 154, 0, 0.4);
    border-color: transparent;
}

.contact-footer {
    text-align: center;
    margin-top: 3rem;
}

.contact-footer-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid rgba(254, 154, 0, 0.2);
    padding: 3rem 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fe9a00 0%, #f59e0b 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-text {
    text-align: right;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fe9a00;
    margin: 0;
}

.footer-subtitle {
    font-size: 0.75rem;
    color: #fde68a;
    margin: 0;
}

.footer-copyright {
    color: rgba(253, 230, 138, 0.6);
    font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: row;
    }

    .nav-logo {
        flex-direction: row-reverse;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .features-grid,
    .services-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .contact-banner {
        padding: 2rem 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        gap: 1rem;
    }

    .process-icon {
        width: 72px;
        height: 72px;
    }

    .stats-grid {
        margin-top: 3rem;
    }
}
/* Tablet View (Max-width: 992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Mobile View (Max-width: 600px) */
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem; /* Scaled down for readability */
        padding: 0 15px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    /* Forces the <br> to behave like a space on mobile if needed */
    .hero-title br {
        display: none; 
    }
}
@media (max-width: 480px) {
    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
/* For Tablets (Max-width: 768px) */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Becomes 2 columns */
        gap: 15px;
    }
    
    /* Optional: Make the last item span both columns to center it */
    .stat-card:last-child {
        grid-column: span 2;
    }
}

/* For Small Mobile (Max-width: 480px) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Full width stack */
        padding: 20px;
    }
    
    .stat-card:last-child {
        grid-column: span 1; /* Reset the span */
    }

    .stat-number {
        font-size: 2rem; /* Slightly smaller text for small screens */
    }
}