/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Primary Colors */
    --primary-green: #0d6e42;
    --primary-green-dark: #0a5535;
    --primary-green-light: #14a364;
    
    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a2b;
    --accent-orange-light: #ff8c5a;
    
    /* Neutral Colors */
    --dark-900: #0f1419;
    --dark-800: #1a1f26;
    --dark-700: #2d333b;
    --gray-600: #4a5568;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #0a3d23 0%, #0d5c38 50%, #0a5535 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(13, 110, 66, 0.3);
    --shadow-orange-glow: 0 0 30px rgba(255, 107, 53, 0.4);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --container-padding: 20px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--dark-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: 16px;
}

/* ===== STICKY CONTACT BAR ===== */
.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 12px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.sticky-contact .btn-call {
    background: var(--accent-orange);
    color: var(--white);
}

.sticky-contact .btn-call:hover {
    background: var(--accent-orange-dark);
    transform: scale(1.05);
}

.sticky-contact .btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.sticky-contact .btn-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.05);
}

/* ===== HEADER ===== */
header {
    background: var(--gradient-primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: rgba(0,0,0,0.2);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.9);
}

.header-top-left {
    display: flex;
    gap: 20px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-main {
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-normal);
}

.header-phone:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.header-phone-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header-phone-text {
    display: flex;
    flex-direction: column;
}

.header-phone-text .label {
    font-size: 0.75rem;
    opacity: 0.85;
}

.header-phone-text .number {
    font-size: 1.125rem;
    font-weight: 700;
}

.nav-menu {
    background: rgba(0,0,0,0.15);
    padding: 12px 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-list a {
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero h1 .highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.0625rem;
    font-weight: 600;
    box-shadow: var(--shadow-orange-glow);
    transition: var(--transition-normal);
}

.btn-hero-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.0625rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== TRUST BADGES ===== */
.trust-section {
    background: var(--gray-100);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.75rem;
}

.trust-card h3 {
    color: var(--dark-900);
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-card h3 {
    color: var(--dark-900);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-link:hover {
    color: var(--accent-orange);
    gap: 10px;
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 80px 0;
}

.locations-header {
    text-align: center;
    margin-bottom: 48px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.location-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    font-weight: 500;
    color: var(--dark-800);
}

.location-card .icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.location-card:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.location-card:hover .icon {
    background: rgba(255,255,255,0.2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-900);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question .icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-green);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--gray-100);
    padding: 80px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    color: var(--dark-900);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.contact-card .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card .content h4 {
    color: var(--dark-900);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-card .content p,
.contact-card .content a {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-card .content a:hover {
    color: var(--primary-green);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
    color: var(--dark-900);
    margin-bottom: 24px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-800);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(13, 110, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* ===== CONTENT PAGES ===== */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-green);
    margin: 32px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.content-wrapper h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-wrapper h3 {
    color: var(--dark-900);
    margin: 24px 0 12px;
}

.content-wrapper ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-wrapper li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.content-wrapper li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 32px 0;
    box-shadow: var(--shadow-lg);
}

/* ===== NEIGHBORHOODS GRID ===== */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.neighborhood-card {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
}

.neighborhood-card strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 8px;
}

.neighborhood-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
}

.cta-banner .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    position: relative;
    transition: var(--transition-normal);
}

.cta-banner .btn:hover {
    background: var(--accent-orange-dark);
    transform: scale(1.05);
}

/* ===== RELATED LINKS ===== */
.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.related-link {
    background: var(--gray-100);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    color: var(--primary-green);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.related-link:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}