:root {
    --primary-teal: #1E5F74;
    --secondary-teal: #3B9C9C;
    --cream: #F7F5F0;
    --light-gray: #E0E0E0;
    --alert-red: #D32F2F;
    --accent-green: #5B8C5A;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-fallback: 'Arial', sans-serif;
    --header-height: 80px;
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary), var(--font-fallback);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-teal);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    background-color: var(--cream);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo img {
    width: 200px;
    height: 50px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-teal);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.cta-button.primary-cta {
    background-color: var(--primary-teal);
    color: var(--white);
}

.cta-button.primary-cta:hover {
    background-color: var(--secondary-teal);
    transform: translateY(-2px);
}

.cta-button.secondary-cta {
    background-color: var(--secondary-teal);
    color: var(--white);
}

.cta-button.secondary-cta:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 95, 116, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(30, 95, 116, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-teal);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-teal);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-overlay.active {
    display: flex;
}

.mobile-overlay nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.mobile-overlay nav a {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Fixed CTA */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-teal);
    padding: 15px;
    z-index: 999;
    text-align: center;
}

.mobile-fixed-cta .cta-button {
    width: 100%;
    display: block;
}

/* Hero Sections */
.hero {
    display: flex;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s var(--transition-smooth);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 0.8s var(--transition-smooth) 0.2s both;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--cream);
    padding: 40px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

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

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.trust-text h3 {
    font-size: 16px;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Problem Solution */
.problem-solution {
    padding: 80px 0;
    background-color: var(--white);
}

.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-content h2 {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.solution-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.solution-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Unfair Advantage */
.unfair-advantage {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.advantage-header h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

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

.advantage-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.advantage-item h3 {
    font-size: 18px;
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.services-overview h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: var(--cream);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 25px;
    height: 25px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.learn-more {
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--primary-teal);
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
    background-color: var(--cream);
}

.process-steps h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

.testimonial-slide blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-slide cite {
    font-size: 16px;
    color: var(--secondary-teal);
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background-color: var(--primary-teal);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Humane Commitment */
.humane-commitment {
    position: relative;
    padding: 100px 0;
    min-height: 400px;
}

.humane-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.humane-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.humane-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.humane-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.humane-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
    background-color: var(--primary-teal);
    text-align: center;
    color: var(--white);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: var(--cream);
    text-align: center;
}

.service-areas h2 {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.service-areas p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.map-preview {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-primary);
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    color: var(--secondary-teal);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition-smooth);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.newsletter-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.form-group {
    position: relative;
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group input:not(:placeholder-shown) {
    border-color: var(--primary-teal);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    background: var(--white);
    padding: 0 5px;
    color: var(--primary-teal);
}

/* Footer */
.main-footer {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.footer-links h3,
.footer-company h3,
.footer-contact h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-links a,
.footer-company a,
.footer-contact a {
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover,
.footer-company a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Services Page Styles */
.services-hero,
.about-hero,
.locations-hero,
.contact-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-teal);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.services-hero .hero-content,
.about-hero .hero-content,
.locations-hero .hero-content,
.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.services-hero h1,
.about-hero h1,
.locations-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Service Categories Nav */
.service-categories-nav {
    background-color: var(--cream);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-link {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-teal);
    transition: width 0.3s;
}

.category-link:hover::after {
    width: 100%;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

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

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse > * {
    direction: ltr;
}

.detail-content h2 {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Inspection Section */
.inspection-section {
    background-color: var(--cream);
}

.inspection-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.inspection-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.area-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
}

.area-item svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.area-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.area-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Repairs Section */
.repairs-section {
    background-color: var(--white);
}

.repair-list {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.repair-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.repair-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Exclusion Section */
.exclusion-section {
    background-color: var(--light-gray);
}

.exclusion-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.exclusion-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.exclusion-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.exclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.exclusion-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.exclusion-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Related Problems CTA */
.related-problems-cta {
    padding: 80px 0;
    background-color: var(--primary-teal);
    text-align: center;
    color: var(--white);
}

.related-problems-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.related-problems-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* About Page Styles */
.mission-values {
    padding: 80px 0;
    background-color: var(--cream);
}

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Company History */
.company-history {
    padding: 80px 0;
    background-color: var(--white);
}

.company-history h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-teal);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 100px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-teal);
    padding-top: 5px;
}

.timeline-content {
    flex: 1;
    background-color: var(--cream);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 16px;
    height: 16px;
    background-color: var(--secondary-teal);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -48px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -48px;
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background-color: var(--cream);
}

.our-team h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

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

.team-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-title {
    font-size: 14px;
    color: var(--secondary-teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Unique Philosophy */
.unique-philosophy {
    padding: 100px 0;
    background-color: var(--white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content blockquote {
    font-size: 28px;
    font-style: italic;
    color: var(--primary-teal);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.philosophy-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose-us h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.benefit-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* About Contact CTA */
.about-contact-cta {
    padding: 80px 0;
    background-color: var(--primary-teal);
    text-align: center;
    color: var(--white);
}

.about-contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Locations Page Styles */
.map-locator {
    padding: 80px 0;
    background-color: var(--cream);
}

.map-locator h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.search-bar input {
    padding: 15px 20px;
    width: 300px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.map-placeholder {
    position: relative;
    background-color: var(--primary-teal);
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    cursor: pointer;
}

.pin-dot {
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--accent-green);
    border-radius: 50%;
    border: 3px solid var(--white);
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--accent-green);
    border-radius: 50%;
    opacity: 0.5;
    animation: ping 2s infinite;
}

@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Featured Locations */
.featured-locations {
    padding: 80px 0;
    background-color: var(--white);
}

.featured-locations h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 50px;
}

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

.location-card {
    background-color: var(--cream);
    border-radius: 10px;
    overflow: hidden;
}

.location-image {
    height: 200px;
    background-color: var(--light-gray);
}

.location-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-teal));
}

.location-info {
    padding: 25px;
}

.location-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-phone {
    margin-bottom: 5px;
}

.location-phone a {
    color: var(--secondary-teal);
    font-weight: 600;
}

.location-address {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Service Area Details */
.service-area-details {
    padding: 80px 0;
    background-color: var(--cream);
}

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

.details-content h2 {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.details-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.network-benefits {
    margin-top: 30px;
}

.network-benefits li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.network-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.details-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-graphic {
    max-width: 400px;
}

/* Contact By Region */
.contact-by-region {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.contact-by-region h2 {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.contact-by-region p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.region-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Locations FAQ */
.locations-faq {
    padding: 80px 0;
    background-color: var(--cream);
}

/* Contact Page Styles */
.primary-contact-options {
    padding: 60px 0;
    background-color: var(--cream);
}

.contact-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-block {
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s var(--transition-smooth);
}

.contact-block:hover {
    transform: translateY(-5px);
}

.call-block {
    background-color: var(--primary-teal);
    color: var(--white);
}

.email-block {
    background-color: var(--secondary-teal);
    color: var(--white);
}

.block-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.block-icon svg {
    width: 35px;
    height: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.phone-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.email-link {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
    text-decoration: underline;
}

.contact-block p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form-section h2 {
    font-size: 36px;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
    background: var(--white);
    cursor: pointer;
}

.contact-form button {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

/* Office Hours & Location */
.office-hours-location {
    padding: 80px 0;
    background-color: var(--cream);
}

.hours-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours-block h3,
.location-block h3 {
    font-size: 24px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.hours-list p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hours-list .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.location-block p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-teal);
    font-weight: 600;
}

.map-link svg {
    width: 20px;
    height: 20px;
}

/* Emergency Contact Info */
.emergency-contact-info {
    padding: 80px 0;
    background-color: var(--primary-teal);
    text-align: center;
    color: var(--white);
}

.emergency-contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.emergency-contact-info p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

/* Social Media Connect */
.social-media-connect {
    padding: 80px 0;
    background-color: var(--cream);
    text-align: center;
}

.social-media-connect h2 {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    transition: transform 0.3s var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link svg {
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
}

.social-link span {
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
    }

    .hero-image {
        height: 300px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .problem-solution .container {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .detail-grid.reverse {
        direction: ltr;
    }

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

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

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

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

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

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

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

    .contact-blocks {
        grid-template-columns: 1fr;
    }

    .hours-location-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .region-contact {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 150px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 68px;
    }

    .mobile-fixed-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .hero h1,
    .services-hero h1,
    .about-hero h1,
    .locations-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 28px !important;
    }

    .advantage-grid,
    .services-grid,
    .steps-container,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .contact-phone {
        font-size: 24px;
    }

    .emergency-phone {
        font-size: 32px;
    }

    .search-bar {
        flex-direction: column;
        align-items: center;
    }

    .search-bar input {
        width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 40px;
    }

    .timeline-date {
        text-align: left;
        width: auto;
        position: absolute;
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -32px;
        right: auto;
    }

    .logo img {
        width: 120px;
        height: 35px;
    }

    .main-header .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .trust-badges {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
