/* ===================================
   Global Styles & CSS Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e5aa8;
    --secondary-color: #ff6b35;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --warning-color: #ecc94b;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* ===================================
   Section Utilities
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), #2d72c5);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo strong {
    color: var(--secondary-color);
    font-weight: 800;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(30, 90, 168, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 90, 168, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--warning-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--warning-color);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
}

.hero-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-card h3 {
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: var(--white);
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-text h2 {
    margin-bottom: 24px;
    margin-top: 8px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), #2d72c5);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
}

.cert-badge i {
    font-size: 1.3rem;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #2d72c5);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.plumbing-icon {
    font-size: 8rem;
    margin-bottom: 20px;
    opacity: 0.2;
}

.img-overlay {
    position: relative;
    z-index: 1;
}

.img-overlay h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.img-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

.about-highlight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: -40px;
    margin-left: 40px;
    position: relative;
    z-index: 2;
}

.about-highlight-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.about-highlight-box h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.about-highlight-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #2d72c5);
    color: var(--white);
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 36px 28px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), #ff8355);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}

.why-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #2d72c5);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   Areas We Serve Section
   =================================== */
.areas {
    background-color: var(--white);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.areas-text h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.areas-text h4 {
    margin: 32px 0 20px;
    font-size: 1.25rem;
}

.areas-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--light-color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.city-item i {
    color: var(--secondary-color);
}

.service-note {
    padding: 20px;
    background-color: #fff4ed;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin-top: 24px;
}

.service-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.service-note a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-info {
    background-color: var(--light-color);
    padding: 24px;
    border-radius: 12px;
}

.map-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-info h4 i {
    color: var(--secondary-color);
}

.map-info p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.map-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-info a:hover {
    text-decoration: underline;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   CTA Banner Section
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d72c5 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-text p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.cta-features i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.cta-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.cta-box h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-box .btn {
    width: 100%;
    margin-bottom: 16px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-logo strong {
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-rating {
    margin-top: 20px;
}

.footer-rating .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.footer-rating i {
    color: var(--warning-color);
    font-size: 1rem;
}

.footer-rating p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-keywords {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-content,
    .about-content,
    .areas-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .nav {
        order: 3;
        width: auto;
        flex: none;
        position: static;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: var(--light-color);
        border-radius: 0 0 8px 8px;
        margin-top: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 20px;
    }

    .logo {
        font-size: 1rem;
        margin-right: auto;
    }

    .logo i {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .services-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .cta-content {
        gap: 30px;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .header-cta {
        order: 2;
    }

    .header-cta .btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
    }

    .header-cta .btn i {
        font-size: 1.2rem;
        margin: 0;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.65rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .service-card,
    .why-card,
    .testimonial-card {
        padding: 24px;
    }
}

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

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

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

.mt-1 {
    margin-top: 0.5rem;
}

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

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

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

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}