/* 
    Raymsco Mechanical LLC - Main Stylesheet
    Author: Antigravity AI
    Description: Modern, professional plumbing business design system
*/

:root {
    /* Color Palette - Primary Color: #0F766E (Deep Teal) */
    --primary: #0F766E;
    --primary-dark: #0D5F58;
    --primary-light: #F0FDFA;
    --secondary-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--secondary-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 5rem 0;
}

/* Header & Navigation */
header {
    background: var(--secondary-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(15, 118, 110, 0.2);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Footer specific logo modifications */
.footer-logo .logo-main {
    color: white;
}
.footer-logo .logo-sub {
    color: #AAA;
}
.footer-logo .logo-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}
.footer-logo:hover .logo-icon {
    background: var(--primary);
    border-color: var(--primary);
}

nav > ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav > ul > li {
    position: relative;
}

nav > ul > li > a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav > ul > li > a:hover::after,
nav > ul > li > a.active::after {
    width: 100%;
}

/* Dropdown Menu styling */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 0.75rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

nav ul li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown li {
    display: block;
    width: 100%;
    margin: 0;
}

.nav-dropdown li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
    transition: var(--transition);
}

.nav-dropdown li a::after {
    display: none;
}

.nav-dropdown li a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1.8rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--secondary-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1500;
    overflow-y: auto;
    padding: 6rem 0 3rem;
}

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

.mobile-menu ul {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 2rem;
}

.mobile-menu ul li {
    margin: 1.2rem 0;
    width: 100%;
}

.mobile-menu ul li a {
    color: var(--secondary-white);
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-dropdown-toggle i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-top: 0.5rem;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mobile-dropdown-menu.open {
    max-height: 400px;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-menu li {
    margin: 0.6rem 0 !important;
}

.mobile-dropdown-menu li a {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    opacity: 0.95;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--secondary-white);
    font-size: 3rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--secondary-white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Appointment Form */
.booking-card {
    background: var(--secondary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.booking-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--secondary-white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
    background: var(--secondary-white);
    padding-bottom: 8rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

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

.review-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.review-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.1;
}

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

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #1A1A1A;
    color: var(--secondary-white);
    padding: 5rem 0 2rem;
    margin-top: 0;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #EEE;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #EEE;
}

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

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #EEE;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #AAA;
    font-size: 0.9rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 173, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 95%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    transform: scale(1.1);
}

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

.lightbox-arrow {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Page */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.service-card {
    background: white;
    border: 1px solid rgba(15, 118, 110, 0.15);
    border-radius: 16px;
    padding: 3rem 2.2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

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

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid var(--border-light);
}

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

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

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 500px;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
}

/* Animation System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }

    nav {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

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

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

    section {
        padding: 3rem 0;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: -3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .booking-card {
        padding: 1.5rem;
    }
}

/* --- Added Design System Adjustments --- */

/* Trust Cards Redesign (Homepage) */
.trust-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}

.trust-card {
    background: white;
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-top: 4px solid var(--primary);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px -5px rgba(15, 118, 110, 0.15);
    border-top-color: var(--primary-dark);
}

.trust-card .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

.trust-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Specialized Services Cards Tweaks */
.service-card {
    background: white;
    border: 1px solid rgba(15, 118, 110, 0.15);
    border-radius: 16px;
    padding: 3rem 2.2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--primary-light) 50%);
    opacity: 0.7;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px -5px rgba(15, 118, 110, 0.15);
}

.service-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, var(--primary) 50%);
    opacity: 0.15;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.service-icon {
    transition: var(--transition);
}

/* Customer Says section padding-bottom */
.reviews {
    padding-bottom: 6rem;
}

/* Spacing and margins for CTA & Footer */
.final-cta {
    margin-bottom: 0 !important;
    padding: 5rem 0;
}

main > section:last-of-type {
    margin-bottom: 0 !important;
}

/* Service Area Pages specific styles */
.area-about {
    padding: 5rem 0;
    background: var(--secondary-white);
}

.area-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .area-about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.area-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.area-about-text h1,
.area-about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.area-about-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.area-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

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

.area-sidebar-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.area-sidebar-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* --- Mobile Screen Responsiveness and Overrides (max-width: 768px) --- */
@media (max-width: 768px) {
    /* 1. Mobile Menu Button Dark Green Color */
    .mobile-menu .nav-cta {
        background: #064e3b !important;
        color: white !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.5rem !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
    }
    
    .mobile-menu .nav-cta:hover {
        background: #022c22 !important;
    }

    /* 2. Service Area Pages Title Sizes (Hero & Experience & Customer says & FAQ) */
    .service-hero h1 {
        font-size: 2.2rem !important;
    }

    .area-about-text h1,
    .area-about-text h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .faq-question {
        font-size: 1rem !important;
        padding: 1rem !important;
    }

    /* 3. Trust Section optimization (Master Plumber, Prompt Service, Fully Insured) */
    .trust-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: -3rem !important;
        padding: 0 1rem;
    }

    .trust-card {
        padding: 2.5rem 1.5rem !important;
    }

    /* 4. Recent Projects & Gallery (Display single image per row on mobile) */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* 5. Our Specialized Services section adjustments on mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 2.5rem 1.5rem !important;
    }

    /* 6. Services Page expert plumbing service heading size decrease */
    .service-hero h1 {
        font-size: 2.2rem !important;
    }
    
    /* 7. Common Questions heading (About page) size decrease */
    .section-header h2 {
        font-size: 1.8rem !important;
    }

    /* 8. Area About Features columns for mobile */
    .area-about-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}