/* --- GLOBAL DEFAULTS --- */
:root {
    --brand-blue: #0fbbf5;
    --dark-blue: #0E7490;
    --text-grey: #444;
    --bg-grey: #f9f9f9;
}

body {
 
    font-family: "Roboto", sans-serif;
    color: var(--text-grey);
}

main {
    background-color: white;
   
    /* Removed the weird white border and overflow hidden that was cutting off content */
}

h1, h2, h3 {
    margin-top: 0;
}

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

ul, ol {
    padding-left: 1.2em;
}

/* --- HERO SECTION --- */
.areaheroSect {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Ensures it's tall enough */
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Improved Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

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

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Hero Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    border: 2px solid var(--brand-blue);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    border: 2px solid white;
}

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

/* --- TRUST BAR --- */
.trust-bar {
    background-color: var(--bg-grey);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #e3f2fd;
    color: var(--dark-blue);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 700;
}

/* --- MAIN CONTENT WRAPPER --- */
.contentWrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* --- SERVICE GRID (The Cards) --- */
.services-section {
    margin: 50px 0;
}

/* This creates the grid layout automatically */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    border-top: 5px solid var(--brand-blue);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--text-grey);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-list span {
    color: var(--brand-blue);
    font-weight: bold;
    margin-right: 8px;
}

/* --- PLANNING & PROCESS (Split Layout) --- */
.planning-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    margin: 60px 0;
    align-items: start;
}

.process-box {
    background-color: var(--bg-grey);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-blue);
}

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

.process-box ol li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* --- REVIEWS --- */
.reviews-section {
    margin: 60px 0;
    text-align: center;
}

.customerReviewsFlex {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.reviewContianer {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-grey);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--brand-blue); /* Moved border to bottom for cleaner look */
}

.reviewTitle {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.customerReviewsName {
    font-weight: 700;
    margin-top: 15px;
}

.viewMore {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-blue);
    color: white;
    font-weight: 700;
    border-radius: 4px;
}

.viewMore:hover {
    opacity: 0.9;
}
.service-card-emergency {
  border: 2px solid #e74c3c; /* Red border to signal urgency */
  background-color: #fff5f5; /* Very faint red background */
}
/* --- CALLOUT & AREA WRAP --- */
.callout-section {
    background-color: var(--brand-blue);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 50px;
}

.callout-section h3, .callout-section p {
    color: white;
}

.calla {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.formO {
    padding: 10px 20px;
    background-color: white;
    color: var(--brand-blue);
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid white;
}

.formO:hover {
    background-color: #eee;
}

/* --- AREA SECTION (Homepage Style) --- */
.areaWrap {
    background-color: white;
    padding: 40px 10px;
    width: 100%;
    margin-top: 40px;
}

.areaWrap h2 {
    color: white;
    background-color: var(--nav-blue);
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    width: 100%;
    border-radius: 4px;
    padding: 10px 0;
    /* Reset margins from previous global styles if necessary */
    margin-top: 0;
}

.area-category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    max-width: 1000px; /* Keeps it neat on large screens */
    margin: 0 auto;
}

.areasGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.areasGrid li {
    background-color: #f5f5f5;
    border-radius: 3px;
    transition: transform 0.2s ease;
}

.areasGrid li a {
    display: block; 
    padding: 12px 5px;
    text-align: center;
    font-weight: 600;
    color: var(--nav-blue);
    text-decoration: none;
    font-size: 0.95rem;
}

.areasGrid li:hover {
    transform: scale(1.05);
    background-color: #e8e8e8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.area-footer-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    font-weight: 900;
    letter-spacing: 3px;
    color: white;
    background-color: var(--light-blue);
    padding: 8px;
    border-radius: 3px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.projects {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    /* FIX: Split the gap controls */
    column-gap: 40px; /* Keeps wide space between Image and Text */
    row-gap: 0px;     /* Removes the big gap between Heading and Content */
    
    align-items: center;
}

.projects h2 {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    
    /* Controls the space specifically under the heading */
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 1px solid #eee;
}

.projects {
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px; /* Reduced padding slightly */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    /* GAPS */
    column-gap: 40px; 
    row-gap: 15px; /* Small specific gap between Header and Content */
    
    /* IMPORTANT FIX: Prevents text floating down to the middle */
    align-items: start; 
}

.projects h2 {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    
    
    margin-bottom: 0px; 
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.projects p {
    /* Remove the browser's default top margin so it touches the grid line */
    margin-top: 0; 
    
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-grey);
}

.projects img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    
    /* Ensure image starts at the top line too */
    display: block; 
}

.projects p strong:first-child {
    display: block;
    color: var(--brand-blue);
    font-size: 1.3rem;
    margin-bottom: 10px; /* Reduced slightly */
    font-weight: 700;
    
    /* Add a tiny bit of top padding if it feels TOO tight against the line */
    padding-top: 5px; 
}
/* Style the button/header */
.expandableHeader {
    background-color: #eee;
    /* Light grey background */
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    transition: 0.4s;
    margin-bottom: 10px;
 
    position: relative;
}


.expandableHeader:hover,
.expandableHeader.active {
    background-color: #ccc;
}


.expandableHeader:after {
    content: '\002B';
 
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.expandableHeader.active:after {
    content: "\2212";
    /* Unicode character for "minus" sign (-) */
}

/* Style the content box */
.expandableContent {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #eee;
}

/* Container takes full width but limited height */
.breadcrumb {
    width: 100%;
    background: #f9f9f9; /* Light grey background */
    border-bottom: 1px solid #eee; /* Optional: adds a subtle definition line */
}

/* The list inside */
.breadcrumb ol {
    list-style: none;
    margin: 0;
    
    /* Strict Height Controls */
    height: 30px; 
    line-height: 30px; 
    
    /* Layout */
    display: flex;
    align-items: center; 
    padding: 0 20px; 
    box-sizing: border-box; 
    
   
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #444;
}

/* The Slash Separator */
.breadcrumb li + li:before {
    padding: 0 8px; /* Reduced space around the slash */
    color: #ccc;
    content: "/";
}

.breadcrumb a {
    color: var(--brand-blue); /* Uses your root variable */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--dark-blue);
}

.current-page {
    font-weight: 600;
    color: #777; /* Slightly lighter grey for the non-clickable item */
    pointer-events: none; /* Ensures user can't click the page they are already on */
}
/* --- MOBILE --- */
@media (max-width: 768px) {
    .projects {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}
/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .planning-split {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .customerReviewsFlex {
        flex-direction: column;
    }
}