/* Extracted from page-home.php <style> */
/* Keep content identical to preserve behavior */

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

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #1e293b;
    --orange-accent: #d91c1c;
    --light-gray: #f8fafc;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --white: #ffffff;
    --border-light: #e2e8f0;
}

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

body.admin-bar {
    margin-top: 0px !important;
}

@media screen and (max-width:782px) {
    body.admin-bar {
        margin-top: 46px;
    }
}

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

/*body.admin-bar header {*/
/*    top: 32px;*/
/*}*/

/*@media screen and (max-width:782px) {*/
/*    body.admin-bar header {*/
/*        top: 46px;*/
/*    }*/
/*}*/

.header-container {
    max-width: 1200px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-icon {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Desktop navigation only - exclude mobile dropdown menus */
nav:not(.elementor-nav-menu--dropdown):not(.elementor-nav-menu__container) {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav:not(.elementor-nav-menu--dropdown):not(.elementor-nav-menu__container) ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav:not(.elementor-nav-menu--dropdown):not(.elementor-nav-menu__container) a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color .3s;
    font-size: 1rem;
}

nav:not(.elementor-nav-menu--dropdown):not(.elementor-nav-menu__container) a:hover {
    color: var(--orange-accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.header-phone:hover {
    color: var(--orange-accent);
}

.header-cta {
    background: var(--orange-accent);
    color: var(--white);
    padding: .65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 6px rgba(249, 115, 22, .1);
}

.header-cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, .2);
}

/* Hero */
.hero {
    margin-top: 74px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, .7);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.booking-form {
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.booking-form h2 {
    font-size: 1.75rem;
    margin-bottom: .75rem;
    color: var(--white);
}

.booking-form p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: .95rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.booking-form input {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    color: var(--white);
    font-size: .95rem;
    font-family: inherit;
    transition: all .3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.btn-submit {
    width: 100%;
    background: var(--orange-accent);
    color: var(--white);
    padding: .9rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

.priority-badge {
    background: rgba(249, 115, 22, .1);
    border: 1px solid var(--orange-accent);
    color: var(--orange-accent);
    padding: .5rem 1rem;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: .875rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--orange-accent);
}

.hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: var(--orange-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, .4);
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: color .3s;
}

.phone-link:hover {
    color: var(--orange-accent);
}

.booking-form input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--orange-accent);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .3);
}

input[type="date"],
input[type="time"] {
    position: relative;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25em;
    cursor: pointer;
}

input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

input[type="time"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}

input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

input[type="date"]:not(:valid)::before,
input[type="time"]:not(:valid)::before {
    content: attr(placeholder);
    color: #94a3b8;
}

.btn-submit:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, .4);
}

/* Locations Section */
.locations {
    background: var(--light-gray);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.locations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.locations-subtitle {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.swiper-container-wrapper {
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    overflow: hidden;
}

/* Fallbacks for Swiper */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    flex-shrink: 0;
}

.no-swiper {
    overflow-x: auto;
}

.no-swiper .swiper-wrapper {
    display: flex;
    gap: 24px;
}

.no-swiper .swiper-slide {
    flex: 0 0 auto;
}

.no-swiper~.swiper-button-prev,
.no-swiper~.swiper-button-next,
.no-swiper .swiper-button-prev,
.no-swiper .swiper-button-next {
    display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--orange-accent);
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    transition: all .3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--white);
    color: #ea580c;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev {
    left: -16px;
}

.swiper-button-next {
    right: -16px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 260px;
    aspect-ratio: 1/1;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-color: var(--orange-accent);
}

.location-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: #d91c1c;
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--text-dark);
}

.location-card .phone {
    color: var(--orange-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width:767px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }

    .swiper-button-prev {
        left: 8px;
    }

    .swiper-button-next {
        right: 8px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }

    .swiper-slide {
        justify-content: center;
    }

    .location-card {
        margin: 0 auto;
    }
}

/* Services */
.services {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 2.5rem;
}

.services-header-left h2 {
    font-size: 65.5px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 500px;
}

.services-header-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: .5rem;
}

.services-header-right p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.services-menu {
    width: 350px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.services-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.services-menu-nav {
    display: none;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

@media (max-width:992px) {
    .services-menu-wrapper {
        gap: 12px;
        align-items: center;
    }

    .services-menu-nav {
        display: inline-flex;
        flex: 0 0 40px;
    }

    .services-menu {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        flex-direction: row;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .services-menu::-webkit-scrollbar {
        display: none;
    }
}

.service-item-btn {
    padding: 1.75rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    transition: all .3s ease;
    position: relative;
}

.service-item-btn:first-child {
    border-top: 1px solid var(--border-light);
}

.service-item-btn:hover {
    color: var(--orange-accent);
    padding-left: .5rem;
}

.service-item-btn.active {
    color: #d91c1c;
    padding-left: 1.25rem;
}

.service-item-btn.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: var(--orange-accent);
    border-radius: 2px;
}

.service-image-wrapper {
    width: 450px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, opacity .4s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-details-wrapper {
    width: 400px;
    padding: 0;
    flex-shrink: 0;
}

.service-details-wrapper .btn-primary {
    margin-bottom: 2rem;
}

.service-details-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    transition: opacity .3s ease;
}

.service-details-wrapper .description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    transition: opacity .3s ease;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all .3s ease;
}

.service-features-list li:hover {
    transform: translateX(5px);
    color: var(--orange-accent);
}

.service-features-list li::before {
    content: "\2713";
    color: var(--orange-accent);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.service-contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all .3s ease;
}

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

.service-contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-contact-info {
    flex: 1;
}

.service-contact-label {
    color: var(--text-gray);
    font-size: .875rem;
    margin-bottom: .25rem;
}

.service-contact-number {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.service-call-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--orange-accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    flex-shrink: 0;
}

.service-call-button:hover {
    background-color: #ea580c;
    transform: rotate(15deg);
}

.service-call-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.service-content-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.service-content-block:not(:first-child) {
    display: none;
}

.service-content-block:first-child {
    display: flex;
}

.service-content-block.active {
    display: flex;
}

@media (max-width:768px) {
    .service-content-block {
        flex-direction: column;
        gap: 2rem;
    }

    .service-content-block .service-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-content-block .service-details-wrapper {
        width: 100%;
        padding: 2rem 0 0 0;
    }
}

.content-loading {
    opacity: .3;
    transition: opacity .2s ease;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo-image {
    flex-shrink: 0;
}

.footer-logo-image img {
    width: 100%;
    height: 192px;
    object-fit: contain;
}

.footer-logo-text {
    flex: 1;
}

.logo-main {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem;
}

.logo-citywide {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}

.logo-melbourne {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.2;
}

.logo-appliance {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}

.logo-partner {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.partner-text {
    font-size: .875rem;
    color: var(--text-gray);
}

.partner-company {
    font-size: .875rem;
    color: #dc2626;
    text-decoration: underline;
}

.footer-address h3,
.footer-quick-links h3,
.footer-social h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-address p {
    color: var(--text-gray);
    line-height: 1.6;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.quick-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: .875rem;
    transition: color .3s ease;
    padding: .25rem 0;
}

.quick-link:hover {
    color: var(--orange-accent);
}

.quick-link:first-child {
    color: var(--orange-accent);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

@media (max-width:1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width:768px) {
    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

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

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-us-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.why-choose-us-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid var(--orange-accent);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.why-choose-us-content h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -.02em;
}

.why-choose-us-content p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange-accent);
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: .95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Portfolio */
.portfolio-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    color: #5b9bd5;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #5b9bd5;
    margin: 0 auto;
}

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

.filter-btn {
    padding: 12px 32px;
    border: none;
    background: #f5f7fa;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 155, 213, .2);
}

.filter-btn.active {
    background: #48516b;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s forwards;
    height: 280px;
}

.portfolio-item:nth-child(1) {
    animation-delay: .1s;
}

.portfolio-item:nth-child(2) {
    animation-delay: .2s;
}

.portfolio-item:nth-child(3) {
    animation-delay: .3s;
}

.portfolio-item:nth-child(4) {
    animation-delay: .4s;
}

.portfolio-item:nth-child(5) {
    animation-delay: .5s;
}

.portfolio-item:nth-child(6) {
    animation-delay: .6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(48, 51, 67, 0) 0%, rgba(48, 51, 67, .9) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

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

.portfolio-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform .4s ease;
}

.portfolio-description {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.5;
    transform: translateY(20px);
    transition: transform .4s ease .1s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-description {
    transform: translateY(0);
}

.rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(48, 51, 67, .9);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .4s ease;
}

.portfolio-item:hover .rating {
    opacity: 1;
    transform: translateY(0);
}

.star {
    color: #ffc107;
    font-size: 14px;
}

.rating-number {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}

.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    pointer-events: none;
}

.portfolio-item:hover .view-icon {
    transform: translate(-50%, -50%) scale(1);
}

.view-icon::before {
    content: "\2192";
    font-size: 24px;
    color: #48516b;
}

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

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(.9);
    transition: transform .3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: transform .3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    cursor: pointer;
    padding: 20px;
    transition: opacity .3s ease;
}

.lightbox-nav:hover {
    opacity: .7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity .5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #5b9bd5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* Testimonials */
.google-reviews-section {
    padding: 88px 0;
    background-color: var(--light-gray);
}

.google-reviews-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.google-reviews-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.google-reviews-section .sub-heading {
    color: var(--orange-accent);
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
}

.google-reviews-section .main-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 32px;
    align-items: start;
}

.google-summary-panel {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 1px solid var(--border-light);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.google-summary-panel h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0 0 4px 0;
}

.google-summary-panel .company-name {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.google-summary-panel .rating-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.google-summary-panel .rating-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
}

.google-summary-panel .stars {
    font-size: 24px;
    color: #fdb515;
}

.google-summary-panel .review-count {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.google-summary-panel .buttons-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.google-summary-panel .btn-primary {
    background-color: var(--orange-accent);
}

.google-summary-panel .btn-primary:hover {
    background-color: #ea580c;
}

.google-summary-panel .btn-secondary {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--border-light);
}

.google-summary-panel .btn-secondary:hover {
    border-color: var(--orange-accent);
    color: var(--orange-accent);
}

.slider-column {
    position: relative;
    min-width: 0;
}

.slider-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 500ms ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(100% / 3 - 16px);
    margin: 0 8px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 340px;
    box-sizing: border-box;
}

.testimonial-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-card .avatar-initials {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: var(--orange-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-card .user-info .name {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.testimonial-card .user-info .date {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-card .google-logo {
    margin-left: auto;
    font-size: 22px;
    color: #ced4da;
}

.testimonial-card .card-rating {
    color: #fdb515;
    margin-bottom: 16px;
    font-size: 15px;
}

.testimonial-card .card-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-response {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    max-height: 70px;
    overflow-y: auto;
}

.card-response .response-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.card-response .response-text {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--orange-accent);
    color: var(--white);
}

.slider-btn:focus-visible {
    outline: 2px solid var(--orange-accent);
    outline-offset: 2px;
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

/* Get to know */
.get-to-know-section {
    padding: 88px 0;
    background-color: var(--light-gray);
}

.get-to-know-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.get-to-know-section .section-header .sub-heading {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 16px;
}

.get-to-know-section .section-header .main-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.get-to-know-section .section-header .tagline {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-to-know-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.get-to-know-image-wrapper {
    flex: 1;
    max-width: 550px;
}

.get-to-know-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.get-to-know-content-wrapper {
    flex: 1.2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    margin-left: -6rem;
    z-index: 2;
}

.get-to-know-content .main-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.get-to-know-content .description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.get-to-know-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.get-to-know-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.get-to-know-item .icon {
    background-color: #e0e7ff;
    color: #d91c1c;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.get-to-know-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.get-to-know-item p {
    font-size: .9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Brands */
.brands-section {
    padding: 64px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

.brands-section .section-header .main-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
}

.brands-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}

.brands-slider .swiper-slide img {
    max-height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease;
}

@media (max-width: 480px) {
    .brands-slider .swiper-slide img {
        max-height: 25px;
    }
}

.brands-slider .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brands-slider-2 {
    margin-top: 30px;
}

/* How it works */
.how-it-works-section {
    padding: 88px 0;
    background-color: var(--light-gray);
}

.how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.how-it-works-header-left {
    max-width: 50%;
}

.how-it-works-header-right {
    max-width: 45%;
    text-align: left;
}

.how-it-works-section .sub-heading {
    color: var(--orange-accent);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 16px;
}

.how-it-works-section .main-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.how-it-works-section .header-description {
    color: var(--text-gray);
    font-size: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    transition: all .3s ease;
    position: relative;
    z-index: 2;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: #d91c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-gray);
}

.warranty-info {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.warranty-info p {
    color: var(--text-gray);
}

.warranty-info .availability {
    font-size: .875rem;
    color: var(--text-gray);
    opacity: .8;
    margin-top: 8px;
}

/* Contact us */
.contact-us-banner {
    padding: 5rem 0;
    text-align: center;
}

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

.contact-us-banner .eyebrow {
    color: var(--orange-accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-us-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-us-banner p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us-banner .btn-call {
    background: var(--dark-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.contact-us-banner .btn-call:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

/* Responsive */
@media (max-width:1024px) {
    nav {
        gap: 1.5rem;
    }

    .why-choose-us-container {
        gap: 3rem;
    }

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

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

@media (max-width:1200px) {
    .services-header-left h2 {
        font-size: 3rem;
    }

    .services-content {
        gap: 2rem;
    }

    .services-menu {
        width: 300px;
    }

    .service-image-wrapper {
        width: 380px;
    }

    .service-details-wrapper {
        width: 350px;
    }

    .service-details-wrapper h3 {
        font-size: 2.2rem;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

@media (max-width:992px) {
    .services-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-header-right {
        align-items: center;
    }

    .services-content {
        flex-direction: column;
    }

    .services-menu {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        border-bottom: 1px solid var(--border-light);
    }

    .services-menu::-webkit-scrollbar {
        display: none;
    }

    .service-item-btn {
        border: none;
        padding: 1rem 1.25rem;
        white-space: nowrap;
    }

    .service-item-btn:first-child {
        border-top: none;
    }

    .service-item-btn.active {
        padding-left: 1.25rem;
    }

    .service-item-btn.active::before {
        width: 100%;
        height: 3px;
        bottom: 0;
        top: auto;
        left: 0;
        transform: none;
    }

    .service-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-details-wrapper {
        width: 100%;
        padding: 2rem 0 0 0;
    }

    .testimonials-grid {
        grid-template-columns: 35% 1fr;
        gap: 24px;
    }

    .testimonial-card {
        flex-basis: calc(100% / 2 - 16px);
    }

    .get-to-know-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .get-to-know-content-wrapper {
        margin-left: 0;
    }
}

@media (max-width:768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-phone {
        display: none;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .section-title {
        font-size: 2.25rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-container {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .google-reviews-section {
        padding: 64px 0;
    }

    .google-reviews-section .main-heading {
        font-size: 32px;
    }

    .google-reviews-section .section-header {
        margin-bottom: 32px;
    }

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

    .google-summary-panel {
        text-align: center;
        align-items: center;
    }

    .testimonial-card {
        flex-basis: 95%;
        height: auto;
        min-height: 260px;
    }

    .slider-btn {
        display: none;
    }

    .get-to-know-section {
        padding: 64px 0;
    }

    .get-to-know-container {
        flex-direction: column-reverse;
    }

    .get-to-know-content-wrapper {
        padding: 24px;
    }

    .get-to-know-image {
        height: 400px;
    }

    .get-to-know-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .how-it-works-header-left,
    .how-it-works-header-right {
        max-width: 100%;
    }

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

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

.logo-icon img {
    width: 200px;
    height: 95px;
}

@media (max-width:768px) {
    .logo-icon img {
        width: 140px;
        height: auto;
        max-height: 60px;
    }
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all .3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-navigation {
    display: flex;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.header-menu li {
    position: relative;
}

.header-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .3s ease;
}

.header-menu a:hover {
    color: #007cba;
}

@media (max-width:768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left .3s ease;
        z-index: 1000;
        padding: 2rem;
    }

    .header-navigation.active {
        left: 0;
    }

    .header-menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .header-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }
}

ul.footer-menu {
    display: block;
}

ul.footer-menu li a {
    color: var(--text-gray);
}