/* =========================================================================
   Palm Crest Roofing — Sunset + Palm Green Theme
   ========================================================================= */

:root {
    --primary-color: #E76F51;     /* Sunset coral */
    --primary-dark: #0F1B18;      /* Deep tropical night */
    --secondary-color: #F4A261;   /* Sunset glow */
    --accent-color: #52B788;      /* Palm green */
    --accent-deep: #1B4332;       /* Deep palm green */
    --text-color: #EDE7DA;        /* Cream */
    --text-light: #A8B3A8;        /* Muted sage */
    --bg-light: #16251F;          /* Dark palm */
    --bg-gray: #1E2E28;           /* Card background */
    --white: #243430;             /* Glass surface */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(231, 111, 81, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-dark);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(244, 162, 97, 0.12), transparent 60%),
        radial-gradient(1000px 500px at -10% 110%, rgba(82, 183, 136, 0.10), transparent 60%);
    overflow-x: hidden;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.55);
    background: linear-gradient(135deg, #f7b98a 0%, #ef8068 100%);
    color: #ffffff;
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    backdrop-filter: blur(5px);
}
.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(231, 111, 81, 0.1);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(231, 111, 81, 0.2);
}
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* =========================================================================
   Header
   ========================================================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background-color: rgba(15, 27, 24, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(82, 183, 136, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-top {
    background: linear-gradient(90deg, var(--primary-dark) 0%, #16251F 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.header-promo {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(231, 111, 81, 0.4); }
    50% { opacity: 0.75; text-shadow: none; }
}
.header-trust {
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-trust span { display: flex; align-items: center; gap: 5px; }

.phone-link {
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.12), rgba(231, 111, 81, 0.05));
    border: 1px solid rgba(231, 111, 81, 0.35);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    padding: 6px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.phone-link:hover {
    box-shadow: 0 0 15px rgba(231, 111, 81, 0.3);
    transform: scale(1.02);
    background: rgba(231, 111, 81, 0.16);
}

@media (max-width: 768px) {
    .header-promo, .header-trust { display: none; }
    .header-top .container { justify-content: center; }
}

.navbar { padding: 15px 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo-link { display: inline-flex; align-items: center; }
.logo-link img { height: 42px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
    position: relative;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(231, 111, 81, 0.4);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15, 27, 24, 0.82) 0%, rgba(27, 67, 50, 0.88) 100%),
        linear-gradient(180deg, #0F1B18 0%, #16251F 100%);
    padding-top: 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 80% 10%, rgba(244, 162, 97, 0.22), transparent 70%),
        radial-gradient(600px 400px at 20% 90%, rgba(82, 183, 136, 0.18), transparent 70%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
    max-width: 820px;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}
.hero-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    padding: 26px 40px;
    border-radius: 20px;
    margin-bottom: 32px;
    transition: var(--transition);
}
.hero-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 24px rgba(231, 111, 81, 0.3);
}
.hero-logo img { height: 110px; width: auto; }

.hero-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.75);
    letter-spacing: 0.5px;
}
.hero-text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--accent-color);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================================
   Sections
   ========================================================================= */
.section { padding: 80px 0; }
.section-gray { background-color: var(--bg-gray); }

.section.services {
    position: relative;
    background-image: url('https://images.pexels.com/photos/2138126/pexels-photo-2138126.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section.services::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15, 27, 24, 0.94), rgba(27, 67, 50, 0.92));
}
.section.services .container { position: relative; z-index: 1; }

.section.why-us {
    position: relative;
    background-image: url('https://images.pexels.com/photos/7788269/pexels-photo-7788269.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section.why-us::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(22, 37, 31, 0.94), rgba(15, 27, 24, 0.96));
}
.section.why-us .container { position: relative; z-index: 1; }

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* =========================================================================
   Services grid + cards
   ========================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: linear-gradient(135deg, rgba(36, 52, 48, 0.7), rgba(22, 37, 31, 0.85));
    border: 1px solid rgba(82, 183, 136, 0.12);
    border-top: 1px solid rgba(82, 183, 136, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.12), transparent);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(231, 111, 81, 0.2);
    border-color: rgba(231, 111, 81, 0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 48px; margin-bottom: 20px; }
.service-card h3 { font-size: 22px; color: var(--primary-color); margin-bottom: 15px; }
.service-card p { color: var(--text-light); }

/* =========================================================================
   Service page content
   ========================================================================= */
.service-content { max-width: 900px; margin: 0 auto; }
.service-content h2 { font-size: 32px; color: var(--primary-color); margin-bottom: 20px; }
.service-content h3 { font-size: 24px; color: var(--secondary-color); margin-top: 40px; margin-bottom: 15px; }
.service-content p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: var(--text-color); }

.service-list { list-style: none; padding: 0; margin-bottom: 30px; }
.service-list li { padding: 10px 0 10px 30px; position: relative; line-height: 1.6; }
.service-list li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-cta {
    position: relative;
    background-image: url('https://images.pexels.com/photos/7788269/pexels-photo-7788269.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid rgba(82, 183, 136, 0.2);
    box-shadow: var(--shadow);
}
.service-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(22, 37, 31, 0.96), rgba(15, 27, 24, 0.98));
    border-radius: 12px;
}
.service-cta > * { position: relative; z-index: 1; }
.service-cta h3 { margin-top: 0; color: var(--primary-color); }
.service-cta p { margin-bottom: 25px; }
.service-cta .btn { margin: 5px 10px; }

/* =========================================================================
   Features / About / Page headers
   ========================================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature { text-align: center; padding: 30px; }
.feature h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 15px; }
.feature p { color: var(--text-light); }

.cta {
    position: relative;
    background-image: url('https://images.pexels.com/photos/8853521/pexels-photo-8853521.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #ffffff;
}
.cta::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.92) 0%, rgba(15, 27, 24, 0.96) 100%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: 36px; margin-bottom: 15px; }
.cta p { font-size: 18px; margin-bottom: 30px; opacity: 0.95; }

.page-header {
    position: relative;
    background-image: url('https://images.pexels.com/photos/7788264/pexels-photo-7788264.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    padding: 150px 0 60px;
    text-align: center;
    color: #ffffff;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.82) 0%, rgba(15, 27, 24, 0.92) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 42px; margin-bottom: 10px; }
.page-header p { font-size: 18px; opacity: 0.95; }

.about-content { max-width: 820px; margin: 0 auto; text-align: center; }
.about-content p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; color: var(--text-light); }
.about-highlight { font-size: 24px; color: var(--primary-color); font-weight: 600; margin-bottom: 30px; }

.sister-brand-note {
    background: rgba(82, 183, 136, 0.08);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 30px auto;
    max-width: 820px;
    text-align: left;
}
.sister-brand-note strong { color: var(--accent-color); }

/* =========================================================================
   FAQs
   ========================================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: linear-gradient(135deg, rgba(36, 52, 48, 0.55), rgba(22, 37, 31, 0.75));
    border: 1px solid rgba(82, 183, 136, 0.12);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(5px);
}
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary-color); background: rgba(231, 111, 81, 0.06); }
.faq-question::after { content: '+'; font-size: 24px; font-weight: 400; transition: var(--transition); }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { padding: 0 25px 20px; max-height: 500px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; }

/* =========================================================================
   Reviews / Gallery / Contact
   ========================================================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.review-card {
    background: linear-gradient(135deg, rgba(36, 52, 48, 0.6), rgba(22, 37, 31, 0.8));
    border: 1px solid rgba(82, 183, 136, 0.12);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.review-stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(244, 162, 97, 0.5);
}
.review-text { color: var(--text-light); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.review-author { font-weight: 600; color: var(--primary-color); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
    background-color: var(--bg-gray);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 24px; color: var(--primary-color); margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; color: var(--text-light); }
.contact-info a { color: var(--secondary-color); font-weight: 600; }
.contact-info a:hover { color: var(--primary-color); }
.phone-numbers { margin-top: 30px; }
.phone-numbers p { font-size: 18px; margin-bottom: 10px; }

.contact-form {
    position: relative;
    background-image: url('https://images.pexels.com/photos/31763537/pexels-photo-31763537.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(82, 183, 136, 0.15);
}
.contact-form::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(22, 37, 31, 0.96), rgba(15, 27, 24, 0.98));
    border-radius: 12px;
}
.contact-form > * { position: relative; z-index: 1; }
.contact-form h3 { font-size: 24px; color: var(--primary-color); margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-color); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(82, 183, 136, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(231, 111, 81, 0.25);
    background: rgba(0, 0, 0, 0.5);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.captcha-group { display: flex; align-items: center; gap: 15px; }
.captcha-question { font-weight: 600; color: var(--primary-color); }
.captcha-group input { width: 80px; }

/* =========================================================================
   Areas (city directory + city pages)
   ========================================================================= */
.areas-hero {
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(15, 27, 24, 0.88), rgba(27, 67, 50, 0.9)),
        url('https://images.pexels.com/photos/2245436/pexels-photo-2245436.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    color: #fff;
    text-align: center;
}
.areas-hero h1 { font-size: 44px; margin-bottom: 12px; }
.areas-hero p { max-width: 760px; margin: 0 auto; font-size: 18px; color: var(--text-light); }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.area-card {
    display: block;
    background: linear-gradient(135deg, rgba(36, 52, 48, 0.65), rgba(22, 37, 31, 0.85));
    border: 1px solid rgba(82, 183, 136, 0.15);
    border-radius: 10px;
    padding: 22px 20px;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.area-card:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 111, 81, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(231, 111, 81, 0.18);
}
.area-card h3 { color: var(--primary-color); font-size: 18px; margin-bottom: 6px; }
.area-card p { color: var(--text-light); font-size: 14px; margin: 0; }

.area-cluster-title {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 50px 0 18px;
    border-bottom: 1px solid rgba(82, 183, 136, 0.2);
    padding-bottom: 10px;
}
.area-cluster-title:first-of-type { margin-top: 20px; }

.city-hero {
    padding: 150px 0 60px;
    background:
        linear-gradient(135deg, rgba(231, 111, 81, 0.82), rgba(15, 27, 24, 0.92)),
        url('https://images.pexels.com/photos/7788264/pexels-photo-7788264.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    color: #fff;
    text-align: center;
}
.city-hero h1 { font-size: 42px; margin-bottom: 10px; }
.city-hero .city-subtitle { font-size: 18px; opacity: 0.95; }
.city-hero .hero-buttons { margin-top: 24px; }

.city-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}
.city-intro strong { color: var(--text-color); }

.city-neighborhoods {
    max-width: 820px;
    margin: 0 auto 40px;
    padding: 24px 28px;
    background: rgba(82, 183, 136, 0.06);
    border-left: 3px solid var(--accent-color);
    border-radius: 6px;
}
.city-neighborhoods h3 { color: var(--accent-color); margin-bottom: 10px; font-size: 18px; }
.city-neighborhoods p { color: var(--text-light); margin: 0; }

.city-placeholder-note {
    max-width: 820px;
    margin: 0 auto 30px;
    padding: 14px 18px;
    background: rgba(244, 162, 97, 0.08);
    border: 1px dashed rgba(244, 162, 97, 0.4);
    border-radius: 6px;
    font-size: 13px;
    color: var(--secondary-color);
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    position: relative;
    background-image: url('https://images.pexels.com/photos/48784/roof-plate-tiles-brick-black-48784.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    color: var(--text-color);
    padding: 60px 0 20px;
}
.footer::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 24, 0.98), rgba(0, 0, 0, 0.98));
}
.footer .container { position: relative; z-index: 1; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 { font-size: 24px; margin-bottom: 15px; color: var(--primary-color); }
.footer-brand p { opacity: 0.85; color: var(--text-light); }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-links h4,
.footer-contact h4 { font-size: 18px; margin-bottom: 20px; color: var(--accent-color); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--primary-color); }
.footer-contact p { margin-bottom: 10px; }
.footer-contact a:hover { color: var(--primary-color); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 13px;
}

/* =========================================================================
   Mobile
   ========================================================================= */
@media (max-width: 768px) {
    .navbar { position: relative; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #0F1B18;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
        border-top: 1px solid rgba(82, 183, 136, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-menu li { width: 100%; text-align: center; }
    .nav-menu a {
        display: block;
        font-size: 16px;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(82, 183, 136, 0.08);
        white-space: normal;
    }
    .nav-menu .btn {
        margin: 15px auto;
        width: calc(100% - 40px);
        display: inline-flex;
        border-bottom: none;
        padding: 12px 20px;
        justify-content: center;
    }
    .hero-logo { padding: 18px 26px; }
    .hero-logo img { height: 80px; }
    .hero-subtitle { font-size: 22px; }
    .hero-text { font-size: 18px; }
    .page-header h1, .city-hero h1, .areas-hero h1 { font-size: 32px; }
    .section-title { font-size: 28px; }
    .section { padding: 60px 0; }
}
