/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Premium Dark Theme */
    --primary: #FF6B00;
    /* Safety Orange */
    --primary-hover: #FF8533;
    --primary-glow: rgba(255, 107, 0, 0.4);

    --bg-body: #0F1115;
    --bg-card: #181A20;
    --bg-card-hover: #22252C;
    --bg-nav: rgba(15, 17, 21, 0.95);

    --text-main: #FFFFFF;
    --text-muted: #B0B3B8;

    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 17, 21, 0.3) 0%, #0F1115 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.2);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    /* Keep consistent but can use weights */

    /* Spacing & Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    letter-spacing: -0.5px;
}

.logo strong {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-phone:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.header-phone i {
    color: var(--primary);
}

.header-phone:hover i {
    color: var(--text-main);
}

/* === HERO === */
.hero,
.article-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 600px;
    text-align: center;
    background: radial-gradient(circle at top center, #1F2329 0%, #0F1115 70%);
    overflow: hidden;
    contain: layout;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: var(--primary);
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
    contain: strict;
    will-change: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-title,
.article-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.article-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.breadcrumb {
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary);
}

/* === SERVICES & CARDS === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid,
.neighborhoods-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card,
.neighborhood-card,
.why-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover,
.neighborhood-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
}

.service-card h3,
.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.service-card p,
.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Neighborhood Cards Specifics */
.neighborhood-card {
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 30px;
}

.neighborhood-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.neighborhood-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.neighborhood-card span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 100px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.neighborhood-card:hover span {
    background: var(--primary);
    color: white;
}

/* === ARTICLE CONTENT === */
.article-container {
    padding: 60px 0;
    background: var(--bg-body);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-section p {
    color: #D0D3D8;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.content-section h2 {
    color: var(--text-main);
    font-size: 2rem;
    margin: 40px 0 20px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

.content-section ul {
    background: var(--bg-card);
    padding: 30px 30px 30px 50px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.content-section ul li {
    margin-bottom: 12px;
    color: #D0D3D8;
}

.content-section strong {
    color: var(--primary);
}

/* === CTA BOX & CONTACT === */
.cta-box,
.cta-box-article {
    background: linear-gradient(135deg, #1A1A2E 0%, #151515 100%);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: #000000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: #D0D3D8;
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #D0D3D8;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-content {
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        font-size: 1rem;
        /* Smaller font on mobile */
        gap: 6px;
        flex: 1;
        /* Allow logo to take space but not push too much */
    }

    .logo img {
        height: 28px;
        /* Slightly smaller logo */
        width: auto;
    }

    .nav {
        display: none !important;
        /* Force hide nav on mobile */
    }

    .header-phone {
        padding: 6px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        /* Prevent phone number wrapping */
    }

    /* Fix header phone contrast on mobile */
    .header-phone span {
        color: var(--text-main);
    }

    .hero {
        padding-top: 140px;
        /* Increase passing to prevent overlap */
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #FFFFFF;
        position: relative;
        z-index: 5;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
        color: rgba(255, 255, 255, 0.95);
        position: relative;
        z-index: 5;
    }

    .hero-badge {
        position: relative;
        z-index: 5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-box,
    .cta-box-article {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    /* Better spacing for very small screens */
    .services-grid,
    .neighborhoods-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === ABOUT & FAQ SECTIONS === */
.about-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(255, 107, 0, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--text-main);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-item:nth-child(3) {
    grid-column: span 2;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Accordion */
.faq-section {
    background: var(--bg-body);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 24px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* === REVIEWS SECTION === */
.reviews-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #151515 100%);
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: #FFD700;
    /* Gold for stars */
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
}

.review-text {
    color: #D0D3D8;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.review-author strong {
    color: var(--text-main);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}