:root {
    --gold: #FFD700;
    --dark: #121212;
    --gray: #1e1e1e;
    --white: #ffffff;
    --whatsapp: #25d366;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gold-grad: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

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

body {
    background: #0b0b0b;
    color: var(--white);
    overflow-x: hidden;
}

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

/* --- Navbar --- */
.navbar {
    height: 90px;
    background: rgba(18, 18, 18, 0.95);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

.logo div {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920') center/cover fixed;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.badge {
    background: var(--gradient);
    color: var(--dark);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    transition: 0.4s;
}

.btn-call {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-whatsapp {
    background: transparent;
    border: 2px solid var(--whatsapp);
    color: var(--whatsapp);
    margin-right: 15px;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.line {
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: auto;
    border-radius: 2px;
}

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

.service-card {
    background: var(--gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 20px;
}

/* --- Gallery & Map --- */
.gallery {
    padding: 100px 0;
    background: #0b0b0b;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    border: 2px solid var(--gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid var(--gray);
    margin: 50px 0;
}

/* --- Floating --- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btns a {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.float-call {
    background: var(--gold);
    color: var(--dark) !important;
}

.float-whatsapp {
    background: var(--whatsapp);
}

/* --- Footer --- */
footer {
    padding: 50px 0;
    background: var(--gray);
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--gold);
}

/* --- Mobile Styling --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

:root {
    --gold: #FFD700;
    --dark: #121212;
    --gray: #1e1e1e;
    --white: #ffffff;
    --whatsapp: #25d366;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

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

body {
    background: #0b0b0b;
    color: var(--white);
    overflow-x: hidden;
}

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

/* --- Navbar Fixed: Logo & Links in one row --- */
.navbar {
    height: 80px;
    background: rgba(18, 18, 18, 0.98);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.8rem;
    color: var(--gold);
}

.logo div {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920') center/cover fixed;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 900;
}

.badge {
    background: var(--gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.btn {
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-call {
    background: var(--gold);
    color: #000;
    margin-left: 10px;
}

.btn-whatsapp {
    border: 2px solid var(--whatsapp);
    color: var(--whatsapp);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.line {
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 10px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #252525;
}

.icon-box {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* --- Why Us Section --- */
.why-us {
    padding: 80px 0;
    background: #0b0b0b;
}

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

.why-text ul {
    list-style: none;
    margin-top: 20px;
}

.why-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-text li i {
    color: var(--gold);
}

.why-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px var(--gold);
    opacity: 0.8;
}

/* --- Area Tags (Local SEO) --- */
.areas {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.area-tags span {
    background: var(--gray);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid var(--gold);
    font-size: 0.9rem;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

/* --- Floating --- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btns a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.float-call {
    background: var(--gold);
    color: #000 !important;
}

.float-whatsapp {
    background: var(--whatsapp);
}

/* --- Footer --- */
footer {
    background: var(--gray);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-contact {
    margin-bottom: 15px;
    color: #aaa;
}

.copy {
    font-size: 0.8rem;
    color: #666;
}

/* --- Mobile Menu --- */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--white);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* Features Section  */
.features {
    padding: 60px 0;
    background: #151515;
}

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

.feat-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

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

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

.steps-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-item span {
    width: 50px;
    height: 50px;
    background: var(--gold-grad);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

/* FAQ Section  */
.faq {
    padding: 80px 0;
    background: #121212;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: var(--gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-right: 4px solid var(--gold);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Footer  */
.main-footer {
    padding: 80px 0 0;
    background: #080808;
    border-top: 2px solid var(--gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: #aaa;
    line-height: 1.8;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--gold);
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-contact p {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--gray);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #555;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btns a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.float-call {
    background: var(--gold);
    color: #000 !important;
}

.float-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .footer-contact p {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%; 
        height: 100vh;
        background-color: #111; 
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        transition: 0.4s ease-in-out; 
        z-index: 10000; 
    }

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

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem; 
        display: block;
        padding: 10px;
        color: var(--white);
    }

    .burger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        z-index: 10001;
    }

    .burger div {
        width: 100%;
        height: 3px;
        background-color: var(--gold);
        transition: 0.3s;
    }
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}