/* ============================================
   Hydro Clean Maintenance Solutions - Stylesheet
   All sizing scaled to 70% | Mobile-first
   ============================================ */

/* CSS Variables */
:root {
    --navy: #17325C;
    --blue: #1038C7;
    --green: #77CD1A;
    --light-green: #5FB600;
    --light-gray: #EDF2FD;
    --medium-gray: #a0a0a0;
    --dark-gray: #3b3b3b;
    --white: #ffffff;
    --black: #000000;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 7px 18px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 11px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 14px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2.1vw, 1.4rem); }
h4 { font-size: 1.05rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.7rem; }

.lead {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #69b315;
    border-color: #69b315;
}

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

.btn-white:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.7rem;
    transition: var(--transition);
}

.arrow-link:hover {
    gap: 8px;
    color: var(--navy);
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    background: var(--white);
}

.nav-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

/* Logo Image */
.logo-image {
    height: 64px;
    width: auto;
}

.mobile-logo-image {
    height: 46px;
    width: auto;
}

.footer-logo-image {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Main Menu */
.main-menu {
    display: flex;
    gap: 28px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 20px 0;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.665rem;
}

.main-menu > li > a:hover {
    color: var(--blue);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 196px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(7px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 8px 14px;
    color: var(--dark-gray);
    font-size: 0.63rem;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: var(--light-gray);
    color: var(--blue);
}

/* Secondary Navigation */
.secondary-nav {
    display: none;
    background: var(--navy);
    color: var(--white);
}

.secondary-nav-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.secondary-menu {
    display: flex;
    gap: 21px;
}

.secondary-menu > li {
    position: relative;
}

.secondary-menu > li > a {
    font-size: 0.595rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

.secondary-menu > li > a:hover {
    opacity: 1;
}

.secondary-menu .dropdown {
    background: var(--navy);
}

.secondary-menu .dropdown li a {
    color: var(--white);
    border-color: rgba(255,255,255,0.1);
}

.secondary-menu .dropdown li a:hover {
    background: rgba(255,255,255,0.1);
}

.call-link {
    font-size: 0.63rem;
    font-weight: 600;
    color: var(--white);
}

.call-link:hover {
    color: var(--green);
}

/* Mobile Header */
.mobile-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px;
    background: var(--white);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--navy);
    font-size: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-phone-number {
    color: var(--green);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.75rem;
}

.mobile-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    width: 21px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-inner {
    padding: 14px;
}

.mobile-menu > li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu > li > a {
    display: block;
    padding: 11px 0;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.77rem;
}

.mobile-menu .submenu {
    padding-left: 14px;
    padding-bottom: 7px;
}

.mobile-menu .submenu li a {
    display: block;
    padding: 7px 0;
    color: var(--dark-gray);
    font-size: 0.63rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px;
    margin-top: 14px;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    border-radius: 3px;
}

/* Mobile Fixed CTA */
.mobile-cta-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 11px;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    z-index: 998;
    box-shadow: 0 -3px 7px rgba(0,0,0,0.1);
}

/* ============================================
   Hero Section with Form Overlay
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 64px;
    overflow: hidden;
    padding: 28px 0 56px;
}

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

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

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

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 910px;
    margin: 0 auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    min-height: calc(100vh - 105px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    color: var(--white);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 18px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-phone,
.hero-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-phone:hover,
.hero-email:hover {
    color: var(--green);
}

.hero-phone i,
.hero-email i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    border-radius: 50%;
    font-size: 0.63rem;
}

/* Hero Form */
.hero-form {
    width: 100%;
}

.hero-form-inner {
    background: var(--white);
    padding: 21px;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.hero-form-inner h2 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: center;
    color: var(--navy);
}

.hero-form-inner h2 span {
    color: var(--green);
}

.hero-form .form-group {
    margin-bottom: 11px;
}

.hero-form .form-group label {
    color: var(--navy);
    font-size: 0.595rem;
    margin-bottom: 4px;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 7px 8px;
    font-size: 0.665rem;
}

.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder {
    color: var(--medium-gray);
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
}

.hero-form .form-group select option,
.hero-form .form-group select optgroup {
    background: var(--white);
    color: var(--dark-gray);
}

.hero-form .form-group .required {
    color: #e74c3c;
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-bottom: 11px;
}

.hero-form .form-row .form-group {
    margin-bottom: 0;
}

.hero-form textarea {
    min-height: 49px;
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.hero-form .btn-primary {
    padding: 10px 14px;
    font-size: 0.7rem;
    margin-top: 7px;
}

.hero-controls {
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-dots {
    display: flex;
    gap: 7px;
}

.slider-dots .dot,
.ba-dots .dot,
.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active,
.ba-dots .dot.active,
.testimonial-dots .dot.active {
    background: var(--white);
}

.play-pause button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    border: 2px solid var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.play-pause button:hover {
    background: var(--white);
    color: var(--navy);
}

.play-pause .play-btn {
    display: none;
}

.play-pause .pause-btn.active ~ .play-btn,
.play-pause .play-btn.active {
    display: flex;
}

.play-pause .pause-btn:not(.active) {
    display: none;
}

/* Animations */
.animate-fade-right {
    opacity: 0;
    transform: translateX(-21px);
    animation: fadeRight 0.8s ease forwards;
}

.animate-fade-right:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-right:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-right:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(21px);
    transition: all 0.8s ease;
}

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

.animate-fade-left {
    opacity: 0;
    transform: translateX(21px);
    animation: fadeLeft 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Services Section - 6 Service Bubbles
   ============================================ */

.services-section {
    padding: 56px 0;
    background: var(--white);
}

.section-title {
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 21px;
}

.services-grid:last-child {
    margin-bottom: 0;
}

.service-card {
    text-align: center;
    padding: 28px 18px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

/* Commercial services - Blue theme */
.service-icon.commercial {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}

.service-icon.commercial i {
    color: var(--white);
    font-size: 1.75rem;
}

/* Residential services - Green theme */
.service-icon.residential {
    background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
}

.service-icon.residential i {
    color: var(--white);
    font-size: 1.75rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card h3 {
    margin-bottom: 11px;
    font-size: 0.84rem;
    color: var(--navy);
}

.service-card p {
    margin-bottom: 14px;
    color: var(--medium-gray);
    font-size: 0.665rem;
    line-height: 1.6;
}

.service-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--blue);
    padding: 6px 14px;
    border-radius: 4px;
}

.service-card:hover .arrow-link {
    gap: 8px;
    color: var(--green);
    border-color: var(--green);
}

/* ============================================
   Before/After Section
   ============================================ */

.before-after-section {
    padding: 42px 0;
    background: var(--light-gray);
}

.ba-slider {
    max-width: 700px;
    margin: 0 auto;
}

.ba-slide {
    display: none;
}

.ba-slide.active {
    display: block;
}

.ba-headers {
    display: flex;
    justify-content: space-around;
    margin-bottom: 14px;
}

.ba-headers h3 {
    font-size: 0.84rem;
    color: var(--navy);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ba-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ba-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.ba-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 21px;
}

.ba-dots .dot {
    background: var(--medium-gray);
    border-color: var(--medium-gray);
}

.ba-dots .dot.active {
    background: var(--blue);
    border-color: var(--blue);
}

/* ============================================
   Why Us Section
   ============================================ */

.why-us-section {
    padding: 56px 0;
    overflow: hidden;
}

.why-us-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    background: var(--blue);
    z-index: -1;
}

.why-us-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.why-us-content {
    padding: 0 14px;
}

.why-us-content h2 {
    margin-bottom: 21px;
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.icon-list .icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.icon-list .icon i {
    color: var(--white);
    font-size: 0.84rem;
}

.icon-list span:not(.icon) {
    font-size: 0.7rem;
    color: var(--dark-gray);
}

/* ============================================
   Service Areas Section
   ============================================ */

.service-areas-section {
    padding: 56px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.service-areas-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.service-areas-content {
    padding: 0 14px;
}

.service-areas-content h2 {
    margin-bottom: 11px;
}

.service-areas-content .lead {
    margin-bottom: 14px;
}

.service-areas-content p {
    font-size: 0.7rem;
    line-height: 1.7;
}

.service-areas-image {
    position: relative;
}

.service-areas-image::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    right: -14px;
    bottom: -14px;
    background: var(--green);
    z-index: -1;
}

.service-areas-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: 56px 0;
}

.testimonials-section .section-title {
    margin-bottom: 21px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 630px;
    margin: 0 auto;
    padding: 42px 28px;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: var(--blue);
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.testimonials-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    margin-bottom: 21px;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    font-size: 0.77rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 21px;
    font-style: italic;
}

.testimonial-slide cite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-slide .author {
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--white);
    font-style: normal;
}

.testimonial-slide .location {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

.testimonials-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 21px;
}

.testimonials-nav .prev-btn,
.testimonials-nav .next-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    border-radius: 50%;
    font-size: 0.7rem;
    transition: var(--transition);
}

.testimonials-nav .prev-btn:hover,
.testimonials-nav .next-btn:hover {
    background: var(--green);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 7px;
}

/* ============================================
   Form Styles (used in hero)
   ============================================ */

.form-group {
    margin-bottom: 14px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.63rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 11px;
    font-size: 0.7rem;
    font-family: inherit;
    border: 2px solid var(--light-gray);
    border-radius: 3px;
    background: var(--white);
    color: var(--dark-gray);
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 42px 0 70px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    margin-bottom: 7px;
}

.footer-brand address {
    font-style: normal;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 0.7rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 21px;
    text-align: center;
}

.copyright {
    font-size: 0.63rem;
    opacity: 0.8;
}

.copyright a {
    color: var(--green);
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-social span {
    font-weight: 600;
    font-size: 0.7rem;
}

.social-icons {
    display: flex;
    gap: 7px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.7rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--green);
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (min-width: 768px) {
    .hero {
        margin-top: 56px;
    }

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

    .ba-image img {
        height: 245px;
    }

    .why-us-inner,
    .service-areas-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 21px;
    }

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

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-brand {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

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

    .testimonial-slide cite {
        flex-direction: row;
        gap: 11px;
    }

    .hero-contact-info {
        flex-direction: row;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .mobile-header,
    .mobile-nav,
    .mobile-cta-fixed {
        display: none;
    }

    .desktop-nav,
    .secondary-nav {
        display: block;
    }

    .hero {
        margin-top: 95px;
        padding: 42px 0 70px;
    }

    .hero-inner {
        grid-template-columns: 1fr 315px;
        gap: 42px;
        padding: 0 28px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 2.8vw, 2.45rem);
    }

    .hero-form-inner {
        padding: 25px;
    }

    .hero-form-inner h2 {
        font-size: 1.12rem;
    }

    .services-section,
    .why-us-section,
    .service-areas-section,
    .testimonials-section {
        padding: 70px 0;
    }

    .site-footer {
        padding: 56px 0 28px;
    }

    .why-us-image img,
    .service-areas-image img {
        height: 350px;
    }

    .logo-image {
        height: 69px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 700px;
    }
}

/* ============================================
   Service Pages
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 84px 0 42px;
    text-align: center;
    margin-top: 64px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 11px;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
}

.page-header-green {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--green) 100%);
}

/* Service Content */
.service-content {
    padding: 42px 0 56px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.service-content-image {
    width: 100%;
    border-radius: 8px;
    margin: 21px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.service-main h2 {
    margin-bottom: 14px;
}

.service-main h3 {
    margin-top: 25px;
    margin-bottom: 11px;
    font-size: 0.91rem;
}

.service-main p {
    margin-bottom: 11px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-size: 0.7rem;
}

/* Service List */
.service-list {
    margin: 14px 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.7rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--green);
    font-size: 0.7rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 25px;
    border-radius: 8px;
    margin-top: 28px;
    text-align: center;
}

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

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    font-size: 0.7rem;
}

.cta-box-green {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--green) 100%);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-card {
    background: var(--light-gray);
    padding: 18px;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 0.84rem;
    margin-bottom: 14px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--blue);
}

/* Contact List Simple */
.contact-list-simple {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.contact-list-simple li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-list-simple li i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.63rem;
    flex-shrink: 0;
}

.contact-list-simple li a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.7rem;
}

.contact-list-simple li a:hover {
    color: var(--blue);
}

/* Service Links */
.service-links {
    display: flex;
    flex-direction: column;
}

.service-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-links li:last-child {
    border-bottom: none;
}

.service-links li a {
    display: block;
    padding: 8px 0;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.7rem;
    transition: var(--transition);
}

.service-links li a:hover {
    color: var(--blue);
    padding-left: 7px;
}

/* Service Page Responsive */
@media (min-width: 768px) {
    .page-header {
        padding: 98px 0 49px;
    }

    .service-content {
        padding: 56px 0 70px;
    }

    .service-grid {
        grid-template-columns: 2fr 1fr;
        gap: 35px;
    }
}

@media (min-width: 1024px) {
    .page-header {
        margin-top: 95px;
        padding: 56px 0;
    }

    .service-grid {
        gap: 42px;
    }
}

/* Utility: Hide for specific breakpoints */
@media (max-width: 1023px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================
   Breadcrumb Navigation
   ============================================ */

.breadcrumb {
    background: var(--light-gray);
    padding: 8px 0;
    margin-top: 64px;
    font-size: 0.7rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--medium-gray);
}

.breadcrumb li + li::before {
    content: "/";
    margin-right: 4px;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--blue);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: var(--navy);
    font-weight: 500;
}

.breadcrumb + .page-header,
.breadcrumb + .hero {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .breadcrumb {
        margin-top: 95px;
    }
}
