/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Black & White Theme */
:root {
    --primary-black: #000000;
    --secondary-black: #333333;
    --light-gray: #f8f8f8;
    --medium-gray: #666666;
    --white: #ffffff;
    --accent-gray: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #333;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: var(--secondary-black);
    border-color: var(--secondary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 3px solid var(--primary-black);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.nav-logo .logo i {
    font-size: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Service Hero Section (for service pages) */
.service-hero {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-black);
    letter-spacing: -0.03em;
}

.service-hero-description {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Areas Served Section */
.areas-served {
    padding: 100px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.area-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.75rem 0;
    color: var(--secondary-black);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.area-column li:hover {
    color: var(--primary-black);
    padding-left: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-gray);
}

/* Breadcrumb Styling */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--secondary-black);
}

.breadcrumb a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Additional Section Spacing */
section {
    position: relative;
}

/* Ensure all sections have proper spacing */
section:not(.hero):not(.service-hero) {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-black);
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--secondary-black);
    font-weight: 800;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-black);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--secondary-black);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature i {
    font-size: 1.3rem;
    color: var(--primary-black);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #f8f8f8;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    border: 2px dashed #000;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder small {
    font-size: 0.9rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-black);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.service-description {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.service-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #333;
    gap: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #333;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item .image-placeholder {
    height: 250px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
}

.gallery-item .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #000;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #333;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #000;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #000;
}

.cta-section .btn-primary:hover {
    background: #f8f8f8;
    color: #000;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #000;
}

/* Service Images */
.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #000;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #333;
    margin: 0;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #333;
}

/* Form Styles */
.form {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #fff;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info a {
    color: var(--primary-black);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--secondary-black);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced Utility Classes */
.text-center {
    text-align: center;
}

/* Fix for fixed header spacing */
body {
    padding-top: 80px;
}

/* Override for hero section since it has its own padding */
.hero {
    padding-top: 140px;
}

.text-left {
    text-align: left;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Enhanced Visual Elements */
.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-black);
    margin: 2rem auto;
    border-radius: 2px;
}

.accent-line {
    width: 100px;
    height: 3px;
    background: var(--primary-black);
    margin: 1rem 0;
    border-radius: 2px;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error states for forms */
.form-success {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.form-error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

/* Sitemap Styles */
.sitemap-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 60px;
}

.sitemap-header h1 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
}

.sitemap-header p {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-category {
    margin-bottom: 50px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sitemap-category h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sitemap-category h2 i {
    color: #000;
    font-size: 1.5rem;
}

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

.sitemap-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sitemap-link:hover {
    background: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sitemap-link i {
    font-size: 1.5rem;
    color: #000;
    width: 30px;
    text-align: center;
}

.sitemap-link span {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.sitemap-link small {
    color: #333;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.sitemap-contact {
    background: #000;
    color: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.sitemap-contact h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sitemap-contact h2 i {
    color: #fff;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-black);
}

@media (max-width: 768px) {
    .sitemap-header h1 {
        font-size: 2.5rem;
    }

    .sitemap-links {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   NEW CONVERSION-FOCUSED STYLES
   Added for ultra-SEO and conversion optimization
   ======================================== */

/* STICKY CALL BANNER - Ultra prominent for conversions */
.sticky-call-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFD700;
    color: #000;
    z-index: 2000;
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.banner-text i {
    font-size: 1.3rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.banner-btn {
    background: #000;
    color: #FFD700;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.banner-btn:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.05);
}

/* Adjust body padding for sticky banner */
body {
    padding-top: 120px !important;
}

/* Nav phone link */
.nav-phone {
    background: #000;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #333;
    transform: scale(1.05);
}

/* LOCATION BADGES */
.location-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(0, 0, 0, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-badge i {
    color: #000;
}

/* URGENT VALUE PROPOSITION */
.urgent-value-prop {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

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

.value-item {
    padding: 1.5rem;
}

.value-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* SERVICE CARDS - Enhanced */
.service-featured {
    border: 3px solid #FFD700 !important;
    position: relative;
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FFD700;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8f8f8;
    border-radius: 16px;
    border: 2px dashed #000;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* LOCATIONS SECTION */
.locations-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.location-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 2.5rem;
    color: #FFD700;
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.location-card p {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.neighborhood-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.neighborhood-list li {
    padding: 0.75rem 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 1.5rem;
    position: relative;
}

.neighborhood-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 900;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #FFD700;
    gap: 1rem;
}

.locations-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #000;
}

.locations-cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* FAQ SECTION - SEO GOLD */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #000;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #fff;
    border-left-color: #FFD700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px dashed #ccc;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* CONTACT FORM ENHANCEMENTS */
.form h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-privacy {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-privacy i {
    color: #000;
}

/* SOCIAL PROOF */
.social-proof {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.social-proof p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars-large {
    display: flex;
    gap: 0.25rem;
}

.stars-large i {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-display span {
    color: #666;
    font-size: 0.9rem;
}

/* GALLERY ENHANCEMENTS */
.gallery-caption {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA ENHANCEMENTS */
.cta-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
}

.cta-fine-print {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-fine-print i {
    color: #FFD700;
}

/* BUTTON PULSE ANIMATION */
.btn-pulse {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* FLOATING CALL BUTTON - Mobile Conversion */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background: #000;
    color: #FFD700;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* FOOTER ENHANCEMENTS */
.footer-keywords {
    margin-top: 1rem;
    color: #999;
    font-size: 0.85rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc !important;
    margin: 0 !important;
}

.footer-contact a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFD700 !important;
}

.footer-contact i {
    color: #FFD700;
    width: 20px;
}

/* RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .sticky-call-banner {
        padding: 10px 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .banner-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .banner-text span {
        font-size: 0.9rem;
    }

    .banner-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }

    body {
        padding-top: 160px !important;
    }

    .location-badges {
        justify-content: center;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-number {
        font-size: 2.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-fine-print {
        flex-direction: column;
        gap: 0.75rem;
    }

    .floating-call-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* PRINT STYLES - Hide conversion elements */
@media print {
    .sticky-call-banner,
    .floating-call-btn,
    .nav-phone,
    .banner-btn {
        display: none !important;
    }
}
