* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-400: #60a5fa;
    --blue-100: #dbeafe;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.text-blue {
    color: var(--blue-400);
}

.text-yellow {
    color: var(--yellow-400);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--yellow-400);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--blue-600);
}

.nav-cta-desktop {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-900);
}

.menu-icon {
    font-size: 1.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0;
    text-align: left;
}

.nav-link-mobile:hover {
    color: var(--blue-600);
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .nav-cta-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px 1px ;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--blue-600);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-yellow {
    background: var(--yellow-400);
    color: var(--gray-900);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
    background: var(--yellow-500);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: white;
    color: var(--blue-600);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-width: 12rem;
}


  .btn-cta {
    background: #1d4ed8; 
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.50rem;
}
.btn-cta:hover {
    background: var(--blue-800);
    transform: scale(1.05);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)),
                url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=1920&h=1080&fit=crop') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 1rem 5rem;
}

.hero-content {
    max-width: 64rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: #185E3F!important;
    color: white;
    position: relative;
    overflow: hidden;
}


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

.services-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}



.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue-100);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--blue-100);
    max-width: 64rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--yellow-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--blue-800);
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--blue-100);
}

.cta-box {
    text-align: center;
}

.cta-box-inner {
    background: var(--yellow-400);
    border-radius: 1rem;
    padding: 2rem;
    display: inline-block;
}

.cta-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Referral Services Section */
.referral-services {
    padding: 5rem 0;
    background: var(--gray-50);
}

.referral-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto 2rem;
}

.referral-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.referral-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.referral-icon {
    width: 4rem;
    height: 4rem;
    background: var(--yellow-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gray-900);
}

.referral-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.referral-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.referral-info {
    background: #fef3c7;
    border-left: 4px solid var(--yellow-400);
    padding: 1rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.referral-info svg {
    color: #ca8a04;
    flex-shrink: 0;
}

.referral-info p {
    color: var(--gray-700);
    margin: 0;
}

@media (min-width: 768px) {
    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .referral-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Areas Section */
.areas {
    padding: 5rem 0;
    background: white;
}

.section-title-dark {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 2rem;
}

.areas-box {
    background: linear-gradient(to bottom right, #eff6ff, #fef3c7);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.area-icon {
    width: 4rem;
    height: 4rem;
    background: var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.areas-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.area-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.area-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-title svg {
    color: var(--blue-600);
}

.area-description {
    color: var(--gray-600);
}

.response-box {
    background: var(--blue-600);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.response-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-description {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.section-title {
    
    font-size: 2rem!important;
}
    .section-title-dark {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.section-description-dark {
    font-size: 1.25rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.testimonial-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.stars {
    color: var(--yellow-400);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote-icon {
    color: var(--blue-600);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contractor Form Section */
.contractor {
    padding: 5rem 0;
    background: var(--gray-50);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.success-message {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-card {
        padding: 3rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800));
    color: white;
    position: relative;
    overflow: hidden;
}


.contact-content {
    text-align: center;
    max-width: 64rem;
    position: relative;
    z-index: 1;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.availability {
    font-size: 0.875rem;
    color: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-email a {
    color: var(--blue-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email a:hover {
    color: #93c5fd;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 40;
    transition: all 0.3s;
}

.floating-cta:hover {
    background: var(--blue-700);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

@media (min-width: 1024px) {
    .floating-cta {
        display: none;
    }
}
