/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

:root {
    --color-dark: #1a202c;
    --color-light-bg: #f5f5f5;
    --color-white: #ffffff;
    --color-accent: #fbbf24;
    --color-accent-dark: #f59e0b;
    --color-text-dark: #1a202c;
    --color-text-light: #ffffff;
    --color-border: #e5e7eb;
    --color-yellow: #fbbf24;
    --color-yellow-dark: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    padding-top: 80px;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--color-dark);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.header--hidden {
    transform: translateY(-100%);
}

body {
    padding-top: 80px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.logo-icon[src] {
    width: auto;
    height: 60px;
}

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

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.logo-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 12px;
    color: var(--color-white);
    opacity: 0.8;
    margin-top: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle--open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-dropdown {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 90px;
    padding-bottom: 24px;
    background: var(--color-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

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

.nav-dropdown a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown a:last-of-type {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.navigation {
    display: flex;
    gap: 32px;
}

.navigation a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.navigation a:hover {
    opacity: 0.8;
}

.btn-get-quote {
    background-color: var(--color-yellow);
    border: none;
    color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s;
    min-height: 44px;
    text-decoration: none;
}

.btn-get-quote:hover {
    background-color: var(--color-yellow-dark);
    transform: translateY(-1px);
}

.btn-get-quote svg {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.6) 0%, rgba(26, 32, 44, 0.5) 100%),
                url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.3);
    backdrop-filter: blur(3px);
}

.hero-content-centered {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.hero-title-centered {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-dark);
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    margin-bottom: 60px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.trusted-by-section {
    margin-top: 60px;
}

.trusted-by-label {
    font-size: 14px;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.trusted-logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-white);
    opacity: 0.8;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-insured {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-white);
    padding: 10px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.badge-insured svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    font-size: 14px;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Services Section */
.services {
    background-color: var(--color-light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--color-accent);
    margin-bottom: 24px;
}


.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 14px;
    color: var(--color-text-dark);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--color-yellow);
    font-weight: bold;
    font-size: 18px;
}

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

.btn-view-services,
.btn-learn-more,
.btn-contact {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-view-services:hover,
.btn-learn-more:hover,
.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.about-content {
    display: grid;
    grid-template-columns: 750px 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-photo {
    width: 750px;
    height: 456px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 16px;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.differentiator {
    display: flex;
    gap: 16px;
}

.diff-icon {
    width: 48px;
    height: 48px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.diff-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.diff-description {
    font-size: 14px;
    color: var(--color-text-dark);
    opacity: 0.7;
}

.about-sidebar {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-sidebar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sidebar-stat {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.sidebar-label {
    font-size: 14px;
    color: var(--color-text-dark);
    opacity: 0.7;
}

/* Service Areas Section */
.service-areas {
    background-color: var(--color-dark);
    padding: 80px 0;
}

.service-areas .section-tagline,
.service-areas .section-title,
.service-areas .section-description {
    color: var(--color-white);
}

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

.service-areas-left {
    display: flex;
    flex-direction: column;
}

.service-areas-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-areas-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    max-height: 600px;
}

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

.areas-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-white);
}

.area-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.areas-note {
    text-align: center;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: var(--color-light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--color-text-dark);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-icon:hover {
    background-color: var(--color-yellow);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.contact-description {
    font-size: 16px;
    color: var(--color-text-dark);
    opacity: 0.7;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity 0.3s;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.contact-button-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.contact-button-dark:hover {
    opacity: 0.9;
}

.contact-button-light {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
}

.contact-button-light:hover {
    opacity: 0.9;
}

.contact-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contact-info-bold {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contact-availability {
    font-size: 14px;
    color: var(--color-text-dark);
    opacity: 0.7;
}

/* Customers Section */
.customers {
    background-color: var(--color-light-bg);
    padding: 80px 0;
}

.customers .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 32px;
    align-items: center;
}

.customer-logo {
    background-color: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.customer-logo:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.customer-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partners/Logos Section */
.partners-section {
    background-color: var(--color-white);
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    min-width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.logo-placeholder-partner {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    padding: 40px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.footer-copyright {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-address {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-address a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: #ffffff;
}

.footer-phone {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 0;
}

.footer-phone a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone a:hover {
    color: #ffffff;
}

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

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: underline;
    text-decoration-color: #b0b0b0;
    text-underline-offset: 3px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-icon-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    text-decoration: none;
}

.footer-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

.footer-icon-btn svg {
    width: 16px;
    height: 16px;
}

.footer-powered {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-powered-text {
    font-size: 12px;
    color: #b0b0b0;
    margin: 0;
}

.footer-powered-text a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-powered-text a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .service-card {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

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

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

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    html {
        scroll-padding-top: 120px;
    }

    .header {
        padding: 12px 0;
    }

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

    .header .logo-icon[src] {
        height: 48px !important;
    }

    .header .logo {
        order: 1;
    }

    .nav-toggle {
        display: flex;
        order: 2;
    }

    .header .btn-get-quote {
        order: 3;
    }

    .navigation {
        display: none !important;
    }

    .nav-dropdown {
        display: block;
    }

    .navigation a {
        font-size: 15px;
        padding: 10px 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-get-quote {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 15px;
    }

    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .service-card {
        min-height: 260px;
        padding: 20px 16px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description,
    .service-list li {
        font-size: 14px;
    }

    section {
        padding: 48px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 28px 24px;
    }

    .contact-button {
        min-height: 48px;
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .customer-logo {
        height: 120px;
        padding: 20px;
    }

    .customer-logo img {
        max-height: 80px;
    }

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

    .service-areas {
        padding: 48px 0;
    }

    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-areas-image {
        max-height: 400px;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-right {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .about-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .about .section-title {
        font-size: 28px;
    }

    .about-description p {
        font-size: 15px;
    }

    .btn-learn-more,
    .btn-view-services {
        min-height: 48px;
        padding: 14px 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    body {
        padding-top: 120px;
    }

    html {
        scroll-padding-top: 120px;
    }

    .header .logo-icon[src] {
        height: 40px !important;
    }

    .navigation a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: auto;
    }

    .service-title {
        font-size: 17px;
    }

    section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-title {
        font-size: 20px;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .customer-logo {
        height: 100px;
        padding: 16px;
    }

    .customer-logo img {
        max-height: 70px;
    }

    .hero-title-centered {
        font-size: 24px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 85vh;
    }

    .trusted-logo {
        width: 50px;
        height: 50px;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 14px;
    }

    .service-areas {
        padding: 40px 0;
    }

    .service-areas-image {
        max-height: 300px;
    }
}

