:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --accent: #facc15;
    --white: #ffffff;
    --text-gray: #a1a1aa;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Fixed Actions */
.fixed-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    transition: 0.3s;
    text-decoration: none;
}

.action-btn.wa {
    background: #22c55e;
    color: white;
}

.action-btn.call {
    background: var(--accent);
}

.action-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #222;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
}

.logo-icon {
    color: var(--accent);
    font-size: 2rem;
}

.logo-text span {
    color: var(--accent);
    margin-right: 4px;
}

.nav-call {
    background: #222;
    padding: 8px 20px;
    border-radius: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--accent);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imgs/img1.png') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    border-right: 4px solid var(--accent);
    padding-right: 20px;
}

.btn-main {
    background: var(--accent);
    color: var(--black);
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-block;
    transition: 0.3s;
    margin-left: 15px;
}

.btn-sub {
    border: 2px solid #333;
    color: white;
    padding: 16px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-main:hover {
    background: white;
    transform: translateY(-5px);
}

/* Services Grid */
.services {
    padding: 100px 0;
    background: var(--dark-gray);
}

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

.info-card {
    grid-column: span 2;
    padding: 50px;
    background: var(--black);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.tags {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.tags span {
    background: #222;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
}

.service-box {
    padding: 40px;
    background: #222;
    border-radius: 30px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.service-box i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.service-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-box p {
    color: var(--text-gray);
}

.service-box:hover {
    background: var(--black);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.item-1 {
    grid-column: 3;
}

.item-2 {
    grid-column: 1;
}

.item-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Contact & Map */
.contact-map {
    padding: 100px 0;
    background: var(--black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.loc-box {
    margin-top: 30px;
    padding: 25px;
    background: #111;
    border-radius: 20px;
    border-right: 6px solid var(--accent);
}

.loc-box a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.cta-box {
    background: var(--accent);
    padding: 60px;
    border-radius: 40px;
    color: var(--black);
    text-align: center;
}

.big-call {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 20px;
    text-decoration: none;
    color: var(--black);
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #444;
}

@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }

    .info-card,
    .item-1,
    .item-2,
    .item-3 {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .btn-main,
    .btn-sub {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}
header {
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.neighborhoods-section { background: var(--black); }
.line-accent { width: 80px; height: 4px; background: var(--accent); margin: 15px auto 30px; }
.neighborhoods-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
.neighborhoods-cloud span { background: #1a1a1a; padding: 10px 25px; border-radius: 50px; border: 1px solid #333; color: var(--text-gray); transition: 0.3s; }
.neighborhoods-cloud span:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }


/* --- FAQ & Footer --- */
.faq-section {
    background-color: #f8fafc;
    color: var(--black);
    text-align: center;
}

.faq-section h2 {
    color: var(--black);
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.faq-item {
    background: #ffffff; 
    padding: 35px;
    border-radius: 20px;
    text-align: right;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); 
    border-right: 5px solid var(--accent); 
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.faq-item p {
    color: #555; 
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-section h2 {
        font-size: 2rem;
    }
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; text-align: right; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 900px) {
    .menu-btn { display: block; }
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: auto;
        background: var(--black);
        flex-direction: column;
        padding: 40px;
        transition: 0.4s;
        border-bottom: 2px solid var(--accent);
    }
    .nav-links.active { right: 0; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
.about-section {
    background-color: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
    z-index: 1;
}

.about-img-box img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: block;
    transform: rotate(-2deg);
    border: 1px solid #eee;
}

.img-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--black);
    color: var(--accent);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 2px solid var(--accent);
    min-width: 140px;
}

.img-floating-badge .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.img-floating-badge .txt {
    font-size: 0.9rem;
    font-weight: 700;
}

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

.about-text .tag {
    background: rgba(250, 204, 21, 0.1);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.features-check {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
}

.f-item i {
    color: #22c55e; 
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .features-check {
        align-items: center;
    }

    .about-img-box {
        order: 2;
        padding: 0 20px;
    }
    
    .about-img-box img {
        transform: rotate(0deg);
    }
    
    .img-floating-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }
}

.section-padding {
    padding: 120px 0 !important; 
}

.neighborhoods-section {
    background-color: var(--black);
    text-align: center;
}

.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.line-accent {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto !important; 
    border-radius: 50px;
}

.neighborhoods-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.neighborhoods-cloud span {
    background: #151515;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #333;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.neighborhoods-cloud span:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
}

section {
    margin-bottom: 20px; 
}

.main-footer {
    background-color: #050505; 
    color: #fff;
    padding: 80px 0 0;
    border-top: 1px solid #1a1a1a;
}

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

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

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

.about-col p {
    color: #888;
    line-height: 1.8;
    margin-top: 20px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: #111;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid #222;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-5px);
}

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

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.links-col ul li a:hover {
    color: var(--accent);
    padding-right: 10px;
}

.footer-map {
    background: #111;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #222;
}

.map-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 700;
}

.map-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding: 25px 0;
    background: #000;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .social-links {
        justify-content: center;
    }
    .flex-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn-main, .big-call {
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}


.form-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-info {
    background: var(--accent);
    padding: 60px 40px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.form-info p { font-weight: 700; line-height: 1.6; opacity: 0.8; }

.form-stats { margin-top: 30px; display: flex; gap: 20px; }
.form-stats span { background: rgba(0,0,0,0.1); padding: 8px 15px; border-radius: 10px; font-weight: 900; font-size: 0.9rem; }

.booking-form { padding: 60px 40px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.input-group { margin-bottom: 20px; text-align: right; }
.input-group label { display: block; color: var(--accent); margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }

.input-group input, .input-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid #222;
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-family: 'Cairo';
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--accent);
    background: #000;
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--black);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { transform: scale(1.02); background: white; }

@media (max-width: 900px) {
    .form-container { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }
    .form-info { padding: 40px 20px; text-align: center; }
    .form-stats { justify-content: center; }
}
.reveal {
    opacity: 0 !important;
    transform: translateY(50px) !important;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) !important;
}

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

.reveal:nth-child(2) { transition-delay: 0.2s !important; }
.reveal:nth-child(3) { transition-delay: 0.4s !important; }
@media (max-width: 900px) {
    .grid-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .info-card.main-info {
        padding: 40px 20px;
        text-align: center;
        border-radius: 25px;
    }

    .info-card h2 {
        font-size: 2.2rem; 
        margin-bottom: 15px;
    }

    .tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-box {
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 25px;
    }

    .service-box i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }

    .service-box p {
        font-size: 0.95rem;
    }

    .item-1, .item-2, .item-3 {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .services {
        padding: 60px 0 100px;
    }
}
.active-city {
    border-color: var(--accent) !important;
    font-weight: 900 !important;
    color: var(--accent) !important;
}