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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

/* Colors */
:root {
    --rm-black: #000000;
    --rm-gray: #64748b;
    --rm-light: #fafafa;
    --rm-text: #334155;
    --rm-accent: #6b7280;
}

/* Service-area layout */
.service-area .county-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
}
@media (min-width:640px){
    .service-area .county-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (min-width:1024px){
    .service-area .county-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}

/* County cards */
.service-area .county-group{
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:16px;
    padding:20px 22px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.service-area .county-group h3{
    margin:0 0 10px;
    font-weight:700;
    color:#1f2937;
}

/* City list in columns */
.service-area .city-list{
    margin:0;
    padding-left:18px;               /* bullets alignment */
    list-style:disc;
    column-gap:24px;
    columns:1;
}
@media (min-width:640px){ .service-area .city-list{ columns:2; } }
.service-area .city-list li{
    break-inside:avoid;
    margin:4px 0;
}
.service-area .city-list li.primary{ font-weight:600; }


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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.nav-fixed {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

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

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo .logo {
    height: 3rem;
    width: auto;
    margin-top: 10px;
}

.nav-desktop {
    display: none;
}

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

.nav-links {
    margin-left: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.nav-link {
    color: var(--rm-text);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--rm-black);
}

.btn-call-nav {
    background-color: var(--rm-black);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-call-nav:hover {
    background-color: var(--rm-gray);
}

.nav-mobile-toggle {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile-toggle {
        display: none;
    }
}

.mobile-menu-btn {
    color: var(--rm-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hamburger {
    width: 1.5rem;
    height: 0.125rem;
    background-color: currentColor;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    right: 0;
    width: 16rem;
    height: calc(100vh - 4rem);
    background-color: white;
    box-shadow: -5px 0 15px -3px rgb(0 0 0 / 0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 40;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mobile-nav-link {
    color: var(--rm-text);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
}

.mobile-nav-link:hover {
    color: var(--rm-black);
}

.btn-call-mobile {
    background-color: var(--rm-black);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-call-mobile:hover {
    background-color: var(--rm-gray);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-subtitle-text {
    font-size: 1.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-subtitle-text {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

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

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

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

.btn-quote {
    background-color: white;
    color: var(--rm-black);
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: all 0.2s;
}

.btn-quote:hover {
    background-color: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-phone {
    border: 2px solid white;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-phone:hover {
    background-color: white;
    color: var(--rm-black);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--rm-black);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--rm-gray);
    max-width: 42rem;
    margin: 0 auto;
}

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

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

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

.service-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--rm-light);
    transition: all 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--rm-black);
}

.service-description {
    color: var(--rm-gray);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--rm-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-photo {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    width: 100%;
    height: auto;
}

.about-description {
    font-size: 1.125rem;
    color: var(--rm-gray);
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: var(--rm-black);
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-buttons {
        flex-direction: row;
    }
}

.btn-quote-about {
    background-color: var(--rm-black);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-quote-about:hover {
    background-color: var(--rm-gray);
}

.btn-phone-about {
    border: 2px solid var(--rm-black);
    color: var(--rm-black);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-phone-about:hover {
    background-color: var(--rm-black);
    color: white;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

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

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

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rm-black);
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--rm-black);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--rm-gray);
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--rm-black);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--rm-gray);
}

.contact-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--rm-black);
}

.contact-hours-note {
    font-size: 0.875rem;
    color: var(--rm-gray);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rm-black);
    margin-bottom: 2rem;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rm-text);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--rm-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

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

.btn-submit {
    width: 100%;
    background-color: var(--rm-black);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background-color: var(--rm-gray);
}

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

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

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

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
    filter: invert(1);
}

.footer-description {
    color: #d1d5db;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

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

.footer-contact-item {
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.footer-contact-link:hover {
    color: white;
}

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

.footer-copyright {
    color: #d1d5db;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.phone-icon {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-quote,
    .btn-phone {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2rem 0;
    }

}


