 :root {
            --primary: #e74c3c;
            --secondary: #c0392b;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --gray: #95a5a6;
            --whatsapp: #25D366;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(255,255,255,0.95);
            color: var(--dark);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .logo img {
            height: 50px;
            transition: all 0.3s;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-size: 13px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }
        
        .logo-sub {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .contact-header {
            background-color: var(--primary);
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: bold;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .contact-header:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }
        
        .contact-header i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* Hero Section */
        .local-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .local-hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -10%;
            width: 120%;
            height: 100px;
            background-color: white;
            transform: rotate(-2deg);
            z-index: 1;
        }
        
        .local-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .local-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .local-hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.5);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid white;
            box-shadow: none;
        }
        
        .cta-button.secondary:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Neighborhood Intro */
        .neighborhood-intro {
            padding: 80px 0;
            background-color: white;
        }
        
        .neighborhood-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .neighborhood-text h2 {
            color: var(--dark);
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .neighborhood-text h2 span {
            color: var(--primary);
        }
        
        .neighborhood-text p {
            margin-bottom: 15px;
            font-size: 17px;
            line-height: 1.7;
        }
        
        .neighborhood-highlights {
            margin-top: 30px;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .highlight-icon {
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }
        
        .highlight-text h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .highlight-text p {
            font-size: 15px;
            color: var(--gray);
        }
        
        .neighborhood-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .neighborhood-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s;
        }
        
        .neighborhood-image:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
        .local-services {
            padding: 80px 0;
            background-color: #f8f9fa;
            position: relative;
        }
        
        .local-services::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -10%;
            width: 120%;
            height: 100px;
            background-color: white;
            transform: rotate(2deg);
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark);
            position: relative;
            z-index: 2;
        }
        
        .section-title span {
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 3;
        }
        
        .service-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .service-content p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .service-content ul {
            list-style-type: none;
            margin-bottom: 20px;
        }
        
        .service-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            color: var(--dark);
        }
        
        .service-content ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        .service-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .service-button:hover {
            background-color: var(--secondary);
        }
        
        /* Areas Section */
        .areas-covered {
            padding: 80px 0;
            background-color: white;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .area-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            border-left: 4px solid var(--primary);
        }
        
        .area-card:hover {
            background-color: var(--primary);
            transform: translateY(-10px);
        }
        
        .area-card:hover h4,
        .area-card:hover p {
            color: white;
        }
        
        .area-card h4 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .area-card p {
            color: var(--gray);
            font-size: 15px;
        }
        
        /* Testimonials Section */
        .local-testimonials {
            padding: 80px 0;
            background-color: #f9f9f9;
            position: relative;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-slide {
            background: white;
            padding: 30px;
            margin: 0 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            border: 1px solid #eee;
        }

        .testimonial-slide:before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 60px;
            color: #e74c3c;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            font-size: 16px;
            color: #555;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid #e74c3c;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: #e74c3c;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .author-info p {
            color: #95a5a6;
            font-size: 14px;
        }
        
        /* CTA Banner */
        .local-cta {
            padding: 80px 0;
            background-color: var(--primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .local-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .local-cta p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .local-cta .cta-button {
            background-color: white;
            color: var(--primary);
            font-size: 18px;
            padding: 15px 40px;
        }
        
        .local-cta .cta-button:hover {
            background-color: var(--dark);
            color: white;
        }
        
        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--whatsapp);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: #128C7E;
            animation: none;
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 80px;
            background-color: white;
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            opacity: 0;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .whatsapp-button:hover .whatsapp-tooltip {
            opacity: 1;
            right: 90px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
        }
        
        .footer-logo-text {
            font-size: 20px;
            font-weight: 800;
            color: white;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 10px;
            color: var(--primary);
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .footer-contact-icon {
            color: var(--primary);
            font-size: 18px;
            margin-top: 3px;
        }
        
        .footer-contact-text {
            opacity: 0.8;
        }
        
        .footer-contact-text small {
            display: block;
            font-size: 12px;
            color: rgba(255,255,255,0.6);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .local-hero h1 {
                font-size: 42px;
            }
            
            .local-hero p {
                font-size: 18px;
            }
            
            .neighborhood-content {
                grid-template-columns: 1fr;
            }
            
            .neighborhood-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .local-hero {
                padding: 150px 0 80px;
                background-attachment: scroll;
            }
            
            .local-hero h1 {
                font-size: 36px;
            }
            
            .local-hero p {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-header {
                width: 100%;
                justify-content: center;
            }
            
            .logo {
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
            
            .logo-text {
                align-items: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links li::before {
                display: none;
            }
            
            .footer-contact-item {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .local-hero h1 {
                font-size: 30px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .whatsapp-button {
                width: 60px;
                height: 60px;
                font-size: 30px;
                bottom: 20px;
                right: 20px;
            }
        }