@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary-color: #8B4513;
    --primary-dark: #5e2f0d;
    --secondary-color: #DAA520;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-color: #4a4a4a;
    --border-radius: 12px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.8;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.tagline {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}

.highlight {
    color: var(--secondary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

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

.cta-button-small {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 5px;
}

.cta-button-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 140px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.whatsapp-button {
    background-color: #25D366;
    color: var(--white);
}

.cta-button,
.whatsapp-button {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover,
.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Base Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px;
    background: #fff9e6;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 80px;
}

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

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Article Section */
.bg-white {
    background-color: var(--white);
}

.article-section h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    border-right: 5px solid var(--secondary-color);
    padding-right: 20px;
}

.article-list {
    list-style: none;
    margin: 30px 0;
}

.article-list li {
    margin-bottom: 20px;
    position: relative;
    padding-right: 25px;
}

.article-list li:before {
    content: "✔️";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--secondary-color);
}

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

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.faq-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Testimonials */
.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    position: relative;
    font-style: italic;
}

.testi-card p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.testi-card span {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
    text-align: left;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.call-btn,
.wa-btn {
    padding: 16px 35px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    background: var(--white);
    color: var(--primary-dark);
    transition: var(--transition);
}

.wa-btn {
    background: #25D366;
    color: var(--white);
}

.call-btn:hover,
.wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/* Badge Style for Neighborhoods */
.badge {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #eee;
    transition: var(--transition);
}

.badge:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
    cursor: default;
}

/* FooterStart */
/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

.f-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.f-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.f-col a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.copy-right {
    text-align: center;
    font-size: 0.9rem;
}


/* Pricing Table */
.price-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: 30px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.price-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    font-size: 1.1rem;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.price-table tr:nth-child(even) {
    background: #fafafa;
}

.price-table tr:hover {
    background: #fffcf0;
}

/* Bullet Lists */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-right: 5px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.detail-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.detail-item ul {
    list-style: none;
}

.detail-item ul li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 25px;
    font-size: 0.95rem;
}

.detail-item ul li::before {
    content: "✦";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Sticky Mobile Bar Mobile Only */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    gap: 10px;
}


/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--primary-dark);
    transition: 0.3s;
}

.faq-question:hover {
    background: #fffcf0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
    color: #666;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #eee;
    background: #fffcf0;
}

/* Keyword Tag Cloud (SEO Booster) */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tag-item {
    background: var(--white);
    color: #555;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.tag-item:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

/* Neighborhood Display (Competitive) */
.neighborhood-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.neighborhood-list {
    column-count: 2;
    column-gap: 20px;
    list-style: none;
}

@media (min-width: 992px) {
    .neighborhood-list {
        column-count: 3;
    }
}

.neighborhood-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-right: 20px;
    color: #444;
}

.neighborhood-list li::before {
    content: "📍";
    position: absolute;
    right: 0;
    font-size: 0.8rem;
}


/* --- Premium Mega Menu & Navigation --- */
.top-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.contact-info-top {
    display: flex;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.main-nav-bar {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: block;
    padding: 20px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1rem;
}

.nav-links>li:hover>a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* Mega Menu / Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
    padding: 10px 0;
    border-top: 3px solid var(--secondary-color);
}

.nav-links>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu li a:hover {
    background: #fffcf0;
    color: var(--primary-color);
    padding-right: 25px;
}

/* --- Enhanced Home Sections --- */
.home-hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-badge-gold {
    display: inline-block;
    background: var(--secondary-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.home-hero h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.home-hero p {
    font-size: 1.6rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Region Grid Home */
.region-section {
    padding: 80px 0;
}

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

.region-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.region-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.region-header {
    background: var(--primary-dark);
    color: #fff;
    padding: 25px;
}

.region-header h3 {
    font-size: 1.5rem;
}

.region-body {
    padding: 30px;
}

.region-body ul {
    list-style: none;
    padding: 0;
}

.region-body ul li {
    margin-bottom: 12px;
}

.region-body ul li a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
    background: #f9f9f9;
}

.region-body ul li a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Stats Section */
.stats-section {
    background: var(--primary-dark);
    padding: 60px 0;
    color: #fff;
}

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

.stat-item h4 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
}

/* Features Section */
.features-home {
    padding: 80px 0;
    background: #fff;
}

.features-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box-home {
    text-align: center;
}

.feature-icon-home {
    width: 80px;
    height: 80px;
    background: #fffcf0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.22rem;
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.1);
}


/* --- New Design Elements from Image --- */
.sticky-left-container {
    position: fixed;
    left: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.sticky-left-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.sticky-left-btn:hover {
    transform: scale(1.05);
}

.sticky-wa {
    background: #25d366;
}

.sticky-call {
    background: #007bff;
}

.sticky-left-btn img,
.sticky-left-btn i {
    width: 25px;
    height: 25px;
}

/* Tag Cloud */
.tag-cloud-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
}

.tag-item-v2 {
    background: #1e5f58;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.tag-item-v2:hover {
    background: var(--secondary-color);
    color: #000;
}

/* Neighborhood Boxes v2 */
.neighborhood-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.neighborhood-container-v2 {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 2px solid #222;
    border-radius: 10px;
    padding: 20px;
}

.neighborhood-container-v2 h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.neighborhood-list-v2 {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.neighborhood-list-v2 li {
    font-size: 1rem;
    color: #333;
    display: flex;
    justify-content: space-between;
}

/* Footer v2 */
.footer-v2 {
    background: #1e5f58;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

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

.footer-v2-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-v2-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-v2-col ul li a:hover {
    color: #fff;
    padding-right: 10px;
}

.footer-v2-about p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}


.footer-v2-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* --- Mobile Responsiveness (Dynamic View) --- */
@media (max-width: 992px) {
    .home-hero h1 {
        font-size: 2.8rem;
    }

    .home-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .top-header {
        display: none;
        /* Hide top bar on mobile for cleaner look */
    }

    .main-nav-bar {
        padding: 5px 0;
    }

    .nav-links {
        display: flex;
        gap: 10px;
    }

    .nav-links li a {
        padding: 10px 5px !important;
        font-size: 0.85rem !important;
    }

    .home-hero {
        height: auto;
        padding: 80px 0;
    }

    .home-hero h1 {
        font-size: 2.22rem;
    }

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

    .hero-buttons a {
        width: 100%;
        margin: 0 !important;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid-home,
    .region-grid,
    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box-home {
        padding: 20px;
    }

    .neighborhood-container-v2 {
        min-width: 100%;
    }

    .sticky-left-container {
        left: 10px;
        bottom: 20px;
    }

    .sticky-left-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .price-table {
        display: block;
        overflow-x: auto;
    }

    .footer-v2-col {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .home-hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge-gold {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .section {
        padding: 40px 0;
    }
}