:root {
    --primary: #1a1a1a;
    --accent: #d4af37; 
    --accent-light: #f39c12; 
    --text-light: #f4f4f4;
    --white: #ffffff;
    --grey: #888;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body { background-color: var(--white); color: var(--primary); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.glass-nav {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.logo { display: flex; flex-direction: row; gap: 10px }
.logo-premium { font-weight: 900; font-size: 1.8rem; color: var(--primary); line-height: 1; }
.logo-sub { font-size: 0.7rem; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-weight: bold; }

.nav-links { display: flex; list-style: none; gap: 15px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 700; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }

.btn-call-glow {
    background: var(--primary); color: white !important;
    padding: 10px 25px; border-radius: 50px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('imgs/img5.jpeg') center/cover no-repeat;
    display: flex; align-items: center; position: relative; color: white;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.city-tag { background: var(--accent); padding: 5px 15px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; display: inline-block; }
.hero-section h1 { font-size: 3.4rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; }
.text-gradient { color: var(--accent); text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-section p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.9; }

.cta-group { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-main { background: var(--accent-light); color: white; padding: 15px 35px; border-radius: 12px; text-decoration: none; font-weight: 900; font-size: 1.1rem; transition: var(--transition); }
.btn-outline { border: 2px solid white; color: white; padding: 15px 35px; border-radius: 12px; text-decoration: none; font-weight: 900; transition: var(--transition); }
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

.services { padding: 100px 0; background: #fafafa; }
.section-title h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; }
.title-line { width: 80px; height: 5px; background: var(--accent); margin-bottom: 50px; }

.modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.grid-item { position: relative; border-radius: 20px; overflow: hidden; color: white; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.grid-item.large { grid-column: span 2; grid-row: span 2; }
.grid-item.wide { grid-column: span 2; }

.item-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1; transition: 0.3s; }
.item-content { position: absolute; bottom: 30px; right: 30px; z-index: 2; }
.item-content i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.grid-item:hover img { transform: scale(1.1); }
.grid-item:hover .item-overlay { background: rgba(212, 175, 55, 0.7); }

/* Why Us Section */
.why-us { padding: 100px 0; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-list { margin-top: 40px; }
.f-item { display: flex; gap: 20px; margin-bottom: 30px; }
.f-item i { font-size: 2rem; color: var(--accent); }
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: 30px; box-shadow: 30px 30px 0 #f0f0f0; }
.experience-box { position: absolute; top: -30px; left: -30px; background: var(--primary); color: white; padding: 30px; border-radius: 20px; text-align: center; }

/* Floating Button Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse 2s infinite; }

.wa-float {
    position: fixed; bottom: 30px; left: 30px;
    background: #25d366; color: white; width: 65px; height: 65px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 35px; z-index: 1000; text-decoration: none;
}

/* Footer */
.footer { background: var(--primary); color: white; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-contact a { color: var(--accent); text-decoration: none; font-size: 1.5rem; font-weight: 900; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #777; }

/* Responsive */
@media (max-width: 992px) {
    .modern-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .grid-item.large, .grid-item.wide { grid-column: span 2; height: 300px; }
    .grid-two { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-section h1 { font-size: 2.5rem; }
}

.menu-btn {
    display: none; 
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

@media (max-width: 992px) {
    .menu-btn {
        display: block;
    }
    .nav-links {
        display: none; 
    }
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
    animation: rotateIcon 5s infinite linear;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}





.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000') center/cover no-repeat;
    z-index: -1;
    animation: zoomAction 20s infinite alternate ease-in-out;
}

@keyframes zoomAction {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background: linear-gradient(70deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 100%); */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: right;
}

.text-glow-gold {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.gold-glow {
    box-shadow: 0 0 15px var(--accent-glow);
    border: 1px solid var(--accent);
}

.btn-main {
    background: var(--accent);
    color: #000 !important;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.4s;
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 15px;
    transition: 0.4s;
}

.btn-outline-white:hover {
    background: white;
    color: black;
}

.pulse-gold {
    animation: pulse-gold-animation 2s infinite;
}

@keyframes pulse-gold-animation {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 768px) {
    .hero-container { text-align: center; }
    .cta-group { justify-content: center; }
    .btn-outline-white { margin-right: 0; margin-top: 10px; }
}


.modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px; 
    gap: 20px;
}

.grid-item.large { grid-column: span 2; grid-row: span 2; } 
.grid-item.wide { grid-column: span 2; }

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; 
}

.tag {
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .grid-item.large, .grid-item.wide { grid-column: span 2; }
}

@media (max-width: 576px) {
    .modern-grid {
        grid-template-columns: 1fr;
    }
    .grid-item.large, .grid-item.wide { grid-column: span 1; }
}


.process-section { padding: 100px 0; background: #fff; }
.process-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; margin-top: 50px; 
}
.step-card {
    background: var(--light-bg); padding: 50px 30px; border-radius: 20px;
    text-align: center; position: relative; border: 1px solid #eee; transition: 0.3s;
}
.step-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.step-number {
    position: absolute; top: 20px; right: 20px;
    font-size: 3rem; font-weight: 900; color: rgba(212, 175, 55, 0.1);
}
.step-card i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.step-card h4 { font-weight: 800; margin-bottom: 15px; }

.coverage-area { padding: 50px 0; }
.coverage-box {
    background: var(--primary); color: white; padding: 60px 40px;
    border-radius: 30px; text-align: center;
}
.neighborhoods-tags {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin: 30px 0;
}
.neighborhoods-tags span {
    background: rgba(255,255,255,0.1); padding: 8px 18px;
    border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-section { padding: 80px 0; background: #fafafa; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.faq-item { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.faq-item h5 { color: var(--accent); font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.faq-item i { margin-left: 10px; }

/* --- Final CTA --- */
.final-cta { padding: 100px 0; text-align: center; }
.cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 40px; border-radius: 40px; color: white;
    border: 2px solid var(--accent);
}
.cta-card h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .cta-card h2 { font-size: 1.8rem; }
}

.neighborhoods-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    color: #ddd;
}

.neighborhoods-tags span:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--accent);
}

.final-cta {
    padding: 100px 0;
}

.cta-card {
    position: relative;
    padding: 100px 40px;
    border-radius: 40px;
    overflow: hidden;
    color: white;
    border: 2px solid var(--accent);
    background: url('imgs/img5.jpeg') center/cover no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-card h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 40px; 
    opacity: 0.9;
}

.btn-container {
    margin-top: 20px;
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 20px;
    }
    .cta-card h2 {
        font-size: 1.8rem;
    }
    .neighborhoods-tags span {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
        display: block;
        text-align: center;
    }
.nav-links a:hover { color: var(--accent); }

    .menu-btn {
        display: block !important;
        font-size: 2rem;
        z-index: 2001;
    }

    .hero-section {
        min-height: 100dvh; 
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-main, .btn-outline {
        width: 100%;
        margin: 5px 0 !important;
    }
}

.main-footer {
    background: #0d0d0d; 
    color: #fff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

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

.about-f p {
    color: #999;
    font-size: 0.95rem;
    margin: 20px 0;
    line-height: 1.8;
}

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
}

.f-links li, .f-contact li {
    margin-bottom: 15px;
    list-style: none;
}

.f-links a, .f-contact a, .f-contact li {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.f-links a:hover { color: var(--accent); padding-right: 8px; }

.f-contact i { color: var(--accent); margin-left: 10px; }

.footer-bottom {
    background: #000;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-icons, .logo {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; 
        height: 100vh;
        background: #ffffff !important; 
        display: flex !important; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 3000 !important; 
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-weight: 800;
        display: block;
        width: 100%;
        text-decoration: none;
    }

    .menu-btn {
        display: block !important;
        position: relative;
        z-index: 3001 !important; 
        font-size: 2rem;
        color: var(--primary);
    }
    
    .nav-links.active ~ .menu-btn {
        color: #000;
    }
}
.hero-section {
    position: relative;
    width: 100%;
    height: auto; 
    min-height: 100dvh; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    box-sizing: border-box; 
    padding-top: 80px; 
}

.hero-zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000') center/cover no-repeat;
    z-index: -1;
    animation: zoomAction 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 100dvh; 
        padding-top: 100px;
        padding-bottom: 50px;
    }
}


html, body {
    max-width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit; 
}

@media (max-width: 768px) {
    .nav-container {
        width: 100% !important;
        padding: 0 15px !important;
        overflow: hidden;
    }
    
    .logo {
        max-width: 70%; 
    }

    .hero-section {
        width: 100% !important;
        overflow: hidden;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 10px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        word-wrap: break-word;
    }

    [data-aos] {
        pointer-events: none;
    }
    .aos-animate {
        pointer-events: auto;
    }
}

.developer-credit a {
    color: var(--accent); 
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.developer-credit a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--accent);
}