/* =====================================================
   HOMEPRO SOLUTIONS
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --blue: #0878b9;

    --blue-dark: #075a8b;

    --blue-light: #eaf6fc;

    --red: #e63946;

    --dark: #123047;

    --text: #526575;

    --white: #ffffff;

    --light: #f7fafc;

    --border: #dfe9ef;

    --shadow:
        0 15px 40px rgba(9, 65, 95, .10);

}


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


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


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


button,
input,
select,
textarea {
    font: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(1180px, 92%);

    margin: 0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 4px 20px rgba(0,0,0,.04);

}


.header-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    gap: 30px;

}


.logo {

    flex-shrink: 0;

}


.logo img {

    width: 185px;

    height: auto;

}


.desktop-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 25px;

}


.desktop-nav > a,
.dropdown-title {

    position: relative;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    padding: 8px 0;

}


.desktop-nav > a::after,
.dropdown-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--blue);

    transition: .25s ease;

}


.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.nav-dropdown:hover .dropdown-title::after {

    width: 100%;

}


.desktop-nav > a:hover,
.desktop-nav > a.active,
.dropdown-title:hover {

    color: var(--blue);

}


/* =====================================================
   DESKTOP SERVICES DROPDOWN
===================================================== */

/* =====================================================
   DESKTOP SERVICES DROPDOWN - FIXED
===================================================== */

.nav-dropdown {
    position: relative;
}


/* Services link */

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;

    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 0;
}


/* Underline */

.dropdown-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition: .25s ease;
}


.nav-dropdown:hover .dropdown-title {
    color: var(--blue);
}


.nav-dropdown:hover .dropdown-title::after {
    width: 100%;
}


/* Arrow */

.dropdown-arrow {
    font-size: 12px;
    transition: .25s ease;
}


.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {

    position: absolute;

    /*
       IMPORTANT:
       No gap between Services and dropdown.
    */

    top: 100%;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(8px);

    width: 285px;

    max-height: 500px;

    overflow-y: auto;

    padding: 8px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow:
        0 20px 45px rgba(0, 40, 70, .15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

}


/* =====================================================
   INVISIBLE HOVER BRIDGE
===================================================== */

/*
   Ye invisible area Services aur dropdown
   ke beech hover ko maintain karta hai.
*/

.nav-dropdown::after {

    content: "";

    position: absolute;

    left: -10px;

    right: -10px;

    top: 100%;

    height: 12px;

}


/* =====================================================
   SHOW DROPDOWN
===================================================== */

.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);

}


/* =====================================================
   DROPDOWN LINKS
===================================================== */

.dropdown-menu a {

    display: block;

    padding: 9px 12px;

    border-radius: 6px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;

}


.dropdown-menu a:hover {

    background: var(--blue-light);

    color: var(--blue);

}


/* Remove main nav underline from dropdown links */

.dropdown-menu a::after {

    display: none !important;

}


/* View all */

.dropdown-menu .view-all-services {

    margin-top: 5px;

    padding-top: 12px;

    border-top: 1px solid var(--border);

    color: var(--red);

}

/* =====================================================
   CALL BUTTON
===================================================== */

.header-call {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    padding-left: 20px;

    border-left: 1px solid var(--border);

}


.header-call small {

    font-size: 10px;

    color: var(--text);

}


.header-call strong {

    color: var(--blue);

    font-size: 17px;

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display: none;

    margin-left: auto;

    width: 44px;

    height: 44px;

    border: 0;

    background: transparent;

    color: var(--blue);

    font-size: 28px;

    cursor: pointer;

}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {

    display: none;

    background: var(--white);

    border-top: 1px solid var(--border);

    padding: 10px 4% 20px;

}


.mobile-nav.active {

    display: block;

}


.mobile-nav > a {

    display: block;

    padding: 12px 0;

    border-bottom: 1px solid #edf2f5;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

}


/* =====================================================
   MOBILE SERVICES
===================================================== */

.mobile-services {

    border-bottom: 1px solid #edf2f5;

}


.mobile-service-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.mobile-service-heading > a {

    flex: 1;

    padding: 12px 0;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

}


.mobile-services-toggle {

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

    color: var(--blue);

    cursor: pointer;

    font-size: 18px;

    transition: .25s;

}


.mobile-services-toggle.active {

    transform: rotate(180deg);

}


.mobile-services-menu {

    display: none;

    padding:
        5px
        0
        10px
        15px;

}


.mobile-services-menu.open {

    display: block;

}


.mobile-services-menu a {

    display: block;

    padding: 8px 0;

    color: var(--text);

    font-size: 12px;

    font-weight: 600;

}


.mobile-services-menu a:hover {

    color: var(--blue);

}


.mobile-view-all {

    color: var(--red) !important;

    font-weight: 800 !important;

}


.mobile-call {

    display: block !important;

    margin-top: 15px;

    padding: 12px 18px !important;

    border: 0 !important;

    border-radius: 6px;

    background: var(--blue);

    color: white !important;

    text-align: center;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    padding:
        80px
        0;

    background:
        linear-gradient(
            135deg,
            #f2fbff,
            #ffffff
        );

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 60px;

    align-items: center;

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.hero h1 {

    max-width: 700px;

    color: var(--dark);

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    margin-bottom: 22px;

}


.hero h1 span,
h2 span {

    color: var(--blue);

}


.hero-content > p {

    max-width: 650px;

    font-size: 17px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        12px
        22px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;

}


.btn-primary {

    background: var(--blue);

    color: white;

}


.btn-primary:hover {

    background: var(--blue-dark);

    transform: translateY(-2px);

}


.btn-outline {

    border: 1px solid var(--blue);

    color: var(--blue);

}


.btn-outline:hover {

    background: var(--blue-light);

}


.btn-full {

    width: 100%;

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 600;

}


/* =====================================================
   HERO FORM
===================================================== */

.hero-card {

    background: white;

    padding: 28px;

    border-radius: 14px;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);

}


.hero-card-top {

    margin-bottom: 18px;

}


.hero-card-top span {

    display: block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.hero-card-top strong {

    display: block;

    color: var(--dark);

    font-size: 24px;

}


.inquiry-form {

    display: grid;

    gap: 8px;

}


.inquiry-form label {

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

}


.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {

    width: 100%;

    border:
        1px solid
        var(--border);

    border-radius: 6px;

    padding: 11px 12px;

    outline: none;

    background: white;

    color: var(--dark);

    font-size: 13px;

}


.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(8,120,185,.08);

}


.inquiry-form textarea {

    resize: vertical;

}


/* =====================================================
   SECTIONS
===================================================== */

./* =====================================================
   ABOUT SECTION - HOMEPAGE
===================================================== */

.about-section {

    padding: 100px 0;

    background: #ffffff;

}


.about-grid {

    display: grid;

    grid-template-columns:
        .92fr
        1.08fr;

    gap: 70px;

    align-items: center;

}


/* =====================================================
   ABOUT IMAGE
===================================================== */

.about-image-wrap {

    position: relative;

    padding-right: 25px;

    padding-bottom: 25px;

}


.about-image {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    background: #eaf6fc;

}


.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0, 40, 65, .18)
        );

    pointer-events: none;

}


.about-image img {

    width: 100%;

    min-height: 520px;

    object-fit: cover;

    transition: transform .5s ease;

}


.about-image:hover img {

    transform: scale(1.04);

}


/* =====================================================
   EXPERIENCE / FLOATING BOX
===================================================== */

.about-experience {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 190px;

    padding: 22px;

    border-radius: 10px;

    background: var(--blue);

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 80, 120, .22);

}


.about-experience strong {

    display: block;

    font-size: 20px;

    line-height: 1.2;

}


.about-experience span {

    display: block;

    margin-top: 5px;

    font-size: 12px;

    opacity: .9;

}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    max-width: 650px;

}


.about-content h2 {

    margin-bottom: 20px;

}


.about-content p {

    margin-bottom: 14px;

    font-size: 14px;

    line-height: 1.8;

}


.about-content .about-lead {

    color: var(--dark);

    font-size: 17px;

    line-height: 1.7;

}


.about-content strong {

    color: var(--dark);

}


/* =====================================================
   ABOUT FEATURES
===================================================== */

.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;

}


.about-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    border:
        1px solid
        var(--border);

    border-radius: 8px;

    background: #f9fcfe;

}


.feature-icon {

    flex-shrink: 0;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

}


.about-feature strong {

    display: block;

    color: var(--dark);

    font-size: 12px;

    line-height: 1.4;

}


.about-feature div > span {

    display: block;

    margin-top: 3px;

    color: var(--text);

    font-size: 11px;

    line-height: 1.4;

}


/* =====================================================
   ABOUT ACTIONS
===================================================== */

.about-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

}


.about-phone {

    display: flex;

    flex-direction: column;

}


.about-phone span {

    color: var(--text);

    font-size: 10px;

}


.about-phone strong {

    color: var(--blue);

    font-size: 17px;

}


/* =====================================================
   ABOUT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .about-section {

        padding: 75px 0;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .about-content {

        max-width: none;

    }


}


@media (max-width: 600px) {

    .about-section {

        padding: 60px 0;

    }


    .about-image-wrap {

        padding-right: 12px;

        padding-bottom: 18px;

    }


    .about-image img {

        min-height: 360px;

    }


    .about-experience {

        width: 160px;

        padding: 17px;

    }


    .about-experience strong {

        font-size: 17px;

    }


    .about-features {

        grid-template-columns: 1fr;

    }


    .about-actions {

        align-items: stretch;

        flex-direction: column;

    }


    .about-actions .btn {

        width: 100%;

    }

}

/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    max-width: 760px;

    margin:
        0
        auto
        45px;

    text-align: center;

}


.section-heading p {

    margin-top: 10px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: var(--light);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.service-card {

    padding: 27px;

    background: white;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    transition: .25s ease;

}


.service-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.service-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 9px;

    background: var(--blue-light);

    font-size: 22px;

}


.service-card h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 19px;

}


.service-card p {

    margin-bottom: 15px;

    font-size: 13px;

}


.service-card a {

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

}


.center-button {

    margin-top: 35px;

    text-align: center;

}


/* =====================================================
   WHY
===================================================== */

.why-section {

    background: white;

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;

}


.why-card {

    padding: 25px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

}


.why-number {

    display: block;

    margin-bottom: 15px;

    color: var(--blue);

    font-size: 26px;

    font-weight: 900;

}


.why-card h3 {

    margin-bottom: 8px;

    color: var(--dark);

    font-size: 18px;

}


.why-card p {

    font-size: 13px;

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    background: var(--light);

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.process-card {

    position: relative;

    padding: 30px;

    background: white;

    border-radius: 10px;

    border:
        1px solid
        var(--border);

}


.process-card > span {

    display: block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 28px;

    font-weight: 900;

}


.process-card h3 {

    color: var(--dark);

    margin-bottom: 8px;

}


/* =====================================================
   FAQ
===================================================== */

.faq-list {

    max-width: 850px;

    margin: auto;

}


.faq-list details {

    padding: 20px;

    margin-bottom: 12px;

    border:
        1px solid
        var(--border);

    border-radius: 8px;

    background: white;

}


.faq-list summary {

    cursor: pointer;

    color: var(--dark);

    font-size: 14px;

    font-weight: 800;

}


.faq-list p {

    padding-top: 12px;

    font-size: 13px;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 70px 0;

    background: var(--blue);

    color: white;

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.cta-section .section-label {

    color: white;

}


.cta-section h2 {

    color: white;

    margin-bottom: 10px;

}


.cta-section p {

    max-width: 650px;

}


.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;

}


.btn-white {

    background: white;

    color: var(--blue);

}


.btn-outline-white {

    border: 1px solid white;

    color: white;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background: #09283b;

    color: #c5d6df;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 45px;

    padding: 65px 0;

}


.footer-logo img {

    width: 185px;

    background: white;

    padding: 6px;

    border-radius: 5px;

}


.footer-about p {

    max-width: 330px;

    margin: 20px 0;

    font-size: 13px;

}


.footer-phone {

    color: white;

    font-weight: 800;

}


.footer-grid h3 {

    margin-bottom: 15px;

    color: white;

    font-size: 16px;

}


.footer-grid > div:not(.footer-about) a {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;

}


.footer-grid a:hover {

    color: white;

}


.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.1);

    padding: 18px 0;

}


.footer-bottom p {

    font-size: 15px;

    text-align: center;
}
.footer-bottom p a{
    color:#0878b9;
    padding:0px 5px;
    font-weight:600;
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 900;
    height:45px;
    width:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 11px 17px;

    border-radius: 30px;

    background: #25D366;

    color: white;

    font-size: 25px;

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {


    .desktop-nav {

        gap: 15px;

    }


    .header-inner {

        gap: 15px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media (max-width: 950px) {


    .desktop-nav,
    .header-call {

        display: none !important;

    }


    .menu-toggle {

        display: block !important;

    }


    .mobile-nav {

        display: none;

    }


    .mobile-nav.active {

        display: block !important;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .hero {

        padding: 60px 0;

    }


}


@media (max-width: 700px) {


    .header-inner {

        min-height: 68px;

    }


    .logo img {

        width: 155px;

    }


    .hero h1 {

        font-size: 39px;

    }


    .hero-content > p {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-card {

        padding: 22px;

    }


    .two-column {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .about-highlight {

        grid-template-columns: 1fr;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-buttons {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .about-intro,
    .services-section,
    .why-section,
    .process-section,
    .faq-section {

        padding: 65px 0;

    }


}


@media (max-width: 450px) {


    .container {

        width: 90%;

    }


    .hero {

        padding: 45px 0;

    }


    .hero h1 {

        font-size: 34px;

    }


    h2 {

        font-size: 30px;

    }


    .hero-trust {

        flex-direction: column;

        gap: 7px;

    }


    .whatsapp-button {

        right: 12px;

        bottom: 12px;

    }

}
/* =====================================================
   ABOUT PAGE
===================================================== */

.inner-page-hero {

    padding: 85px 0 70px;

    background:
        linear-gradient(
            135deg,
            #eef9ff,
            #ffffff
        );

    border-bottom: 1px solid var(--border);

}


.inner-page-hero h1 {

    max-width: 800px;

    margin: 12px 0 15px;

    font-size: clamp(34px, 5vw, 54px);

    line-height: 1.1;

}


.inner-page-hero h1 span {

    color: var(--blue);

    display: inline;

}


.inner-page-hero p {

    max-width: 680px;

    font-size: 16px;

    line-height: 1.7;

}


.breadcrumb {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    font-size: 12px;

}


.breadcrumb a {

    color: var(--blue);

    font-weight: 700;

}


.breadcrumb span {

    color: #8b9aa5;

}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-page-intro {

    padding: 100px 0;

    background: #ffffff;

}


.about-page-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 70px;

    align-items: center;

}


.about-page-image-wrap {

    position: relative;

    padding-right: 25px;

    padding-bottom: 25px;

}


.about-page-image {

    overflow: hidden;

    border-radius: 16px;

    background: #edf8fd;

}


.about-page-image img {

    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position: center;

    transition: transform .5s ease;

}


.about-page-image:hover img {

    transform: scale(1.035);

}


.about-image-badge {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 210px;

    padding: 20px;

    border-radius: 10px;

    background: var(--blue);

    color: #ffffff;

    box-shadow:
        0 18px 40px rgba(0, 80, 120, .2);

}


.about-image-badge strong {

    display: block;

    font-size: 21px;

}


.about-image-badge span {

    display: block;

    margin-top: 5px;

    font-size: 11px;

    line-height: 1.5;

    opacity: .92;

}


.about-page-content {

    max-width: 680px;

}


.about-page-content h2 {

    margin: 12px 0 20px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

}


.about-page-content h2 span {

    color: var(--blue);

}


.about-page-content p {

    margin-bottom: 16px;

    font-size: 14px;

    line-height: 1.85;

}


.about-page-content .large-text {

    font-size: 17px;

    line-height: 1.7;

    color: var(--dark);

}


/* =====================================================
   APPROACH
===================================================== */

.about-approach {

    padding: 95px 0;

    background: #f7fbfd;

}


.section-heading {

    max-width: 720px;

    margin-bottom: 45px;

}


.section-heading.center {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-heading h2 {

    margin: 12px 0 15px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

}


.section-heading h2 span {

    color: var(--blue);

}


.section-heading p {

    font-size: 14px;

    line-height: 1.8;

}


.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.approach-card {

    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 12px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.approach-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 50, 80, .1);

}


.approach-number {

    margin-bottom: 20px;

    color: var(--blue);

    font-size: 14px;

    font-weight: 800;

}


.approach-card h3 {

    margin-bottom: 12px;

    font-size: 19px;

    line-height: 1.4;

}


.approach-card p {

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   ABOUT SERVICES
===================================================== */

.about-services {

    padding: 100px 0;

    background: #ffffff;

}


.about-service-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.about-service-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.about-service-card:hover {

    transform: translateY(-4px);

    border-color: #b9e4f5;

    box-shadow:
        0 14px 30px rgba(0, 60, 90, .08);

}


.service-card-icon {

    flex-shrink: 0;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eaf7fc;

    font-size: 21px;

}


.about-service-card h3 {

    margin-bottom: 6px;

    font-size: 16px;

}


.about-service-card p {

    font-size: 12px;

    line-height: 1.7;

}


.center-button {

    display: flex;

    justify-content: center;

    margin-top: 35px;

}


/* =====================================================
   WHY HOMEPRO
===================================================== */

.why-homepro {

    padding: 90px 0;

    background: #f7fbfd;

}


.why-homepro-grid {

    display: grid;

    grid-template-columns:
        1fr
        .65fr;

    gap: 60px;

    align-items: center;

}


.why-content h2 {

    margin: 12px 0 18px;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.15;

}


.why-content h2 span {

    color: var(--blue);

}


.why-content > p {

    max-width: 680px;

    font-size: 14px;

    line-height: 1.85;

}


.why-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;

}


.why-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border-radius: 8px;

    background: #ffffff;

    border: 1px solid var(--border);

}


.why-item span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

}


.why-item strong {

    font-size: 12px;

    line-height: 1.4;

}


.why-contact-box {

    padding: 35px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0, 50, 80, .08);

}


.why-contact-box > span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;

}


.why-contact-box h3 {

    margin: 10px 0 12px;

    font-size: 25px;

    line-height: 1.3;

}


.why-contact-box p {

    margin-bottom: 22px;

    font-size: 13px;

    line-height: 1.75;

}


.call-link {

    display: block;

    margin-top: 16px;

    color: var(--blue);

    font-size: 16px;

    font-weight: 800;

}


/* =====================================================
   FAQ
===================================================== */

.about-faq {

    padding: 95px 0;

    background: #ffffff;

}


.faq-list {

    max-width: 850px;

    margin: auto;

}


.faq-list details {

    border-bottom: 1px solid var(--border);

}


.faq-list summary {

    position: relative;

    padding: 20px 40px 20px 0;

    cursor: pointer;

    list-style: none;

    font-size: 15px;

    font-weight: 700;

    color: var(--dark);

}


.faq-list summary::-webkit-details-marker {

    display: none;

}


.faq-list summary::after {

    content: "+";

    position: absolute;

    right: 5px;

    top: 18px;

    color: var(--blue);

    font-size: 22px;

    font-weight: 400;

}


.faq-list details[open] summary::after {

    content: "−";

}


.faq-list details p {

    max-width: 760px;

    padding: 0 40px 20px 0;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   PAGE CTA
===================================================== */

.page-cta {

    padding: 85px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #eaf8fd,
            #f8fcfe
        );

}


.page-cta h2 {

    margin: 12px auto 15px;

    max-width: 800px;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.15;

}


.page-cta p {

    max-width: 650px;

    margin: auto;

    font-size: 14px;

    line-height: 1.8;

}


.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;

}


.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border: 1px solid var(--blue);

    border-radius: 6px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;

}


.btn-outline:hover {

    background: var(--blue);

    color: #ffffff;

}


/* =====================================================
   ABOUT PAGE MOBILE
===================================================== */

@media (max-width: 900px) {


    .inner-page-hero {

        padding: 65px 0 55px;

    }


    .about-page-intro {

        padding: 70px 0;

    }


    .about-page-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .about-page-content {

        max-width: none;

    }


    .approach-grid {

        grid-template-columns: 1fr;

    }


    .why-homepro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}


@media (max-width: 600px) {


    .inner-page-hero h1 {

        font-size: 34px;

    }


    .inner-page-hero p {

        font-size: 14px;

    }


    .about-page-intro {

        padding: 60px 0;

    }


    .about-page-image-wrap {

        padding-right: 12px;

        padding-bottom: 18px;

    }


    .about-image-badge {

        width: 175px;

        padding: 16px;

    }


    .about-image-badge strong {

        font-size: 18px;

    }


    .about-page-content h2 {

        font-size: 31px;

    }


    .about-page-content .large-text {

        font-size: 15px;

    }


    .about-service-grid {

        grid-template-columns: 1fr;

    }


    .why-list {

        grid-template-columns: 1fr;

    }


    .why-contact-box {

        padding: 25px;

    }


    .cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .cta-buttons .btn {

        width: 100%;

    }


    .btn-outline {

        width: 100%;

    }

}
/* =====================================================
   SERVICES PAGE
===================================================== */

.services-intro {

    padding: 75px 0 40px;

    background: #ffffff;

}


.all-services {

    padding: 30px 0 100px;

    background: #ffffff;

}


.service-detail {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    max-width: 1000px;

    margin: 0 auto 25px;

    padding: 45px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;

    scroll-margin-top: 100px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.service-detail:hover {

    transform: translateY(-3px);

    border-color: #b9e3f2;

    box-shadow:
        0 15px 35px rgba(0, 60, 90, .08);

}


.service-detail-number {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf7fc;

    color: var(--blue);

    font-size: 15px;

    font-weight: 800;

}


.service-category {

    display: inline-block;

    margin-bottom: 9px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.service-detail-content h2 {

    margin-bottom: 15px;

    font-size: clamp(25px, 3vw, 34px);

    line-height: 1.2;

}


.service-detail-content p {

    margin-bottom: 13px;

    font-size: 14px;

    line-height: 1.8;

}


.service-detail-content ul {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px 25px;

    margin: 22px 0;

    padding: 0;

    list-style: none;

}


.service-detail-content li {

    position: relative;

    padding-left: 22px;

    font-size: 12px;

    line-height: 1.6;

}


.service-detail-content li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--blue);

    font-weight: 800;

}


.service-enquiry {

    display: inline-flex;

    align-items: center;

    margin-top: 8px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;

}


.service-enquiry:hover {

    text-decoration: underline;

}


/* =====================================================
   SERVICES HERO
===================================================== */

.services-hero {

    background:
        linear-gradient(
            135deg,
            #eaf8fd,
            #ffffff 70%
        );

}


/* =====================================================
   SERVICES FAQ
===================================================== */

.services-faq {

    background: #f7fbfd;

}


/* =====================================================
   SERVICES MOBILE
===================================================== */

@media (max-width: 700px) {

    .services-intro {

        padding: 55px 0 25px;

    }


    .all-services {

        padding: 25px 0 65px;

    }


    .service-detail {

        grid-template-columns: 1fr;

        gap: 18px;

        padding: 28px 20px;

        margin-bottom: 18px;

    }


    .service-detail-number {

        width: 45px;

        height: 45px;

        font-size: 12px;

    }


    .service-detail-content h2 {

        font-size: 25px;

    }


    .service-detail-content p {

        font-size: 13px;

    }


    .service-detail-content ul {

        grid-template-columns: 1fr;

        gap: 7px;

    }


    .service-enquiry {

        font-size: 12px;

    }

}
/* =====================================================
   SERVICES PAGE
===================================================== */

.services-intro {

    padding: 75px 0 40px;

    background: #ffffff;

}


.all-services {

    padding: 30px 0 100px;

    background: #ffffff;

}


.service-detail {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    max-width: 1000px;

    margin: 0 auto 25px;

    padding: 45px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;

    scroll-margin-top: 100px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.service-detail:hover {

    transform: translateY(-3px);

    border-color: #b9e3f2;

    box-shadow:
        0 15px 35px rgba(0, 60, 90, .08);

}


.service-detail-number {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf7fc;

    color: var(--blue);

    font-size: 15px;

    font-weight: 800;

}


.service-category {

    display: inline-block;

    margin-bottom: 9px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.service-detail-content h2 {

    margin-bottom: 15px;

    font-size: clamp(25px, 3vw, 34px);

    line-height: 1.2;

}


.service-detail-content p {

    margin-bottom: 13px;

    font-size: 14px;

    line-height: 1.8;

}


.service-detail-content ul {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px 25px;

    margin: 22px 0;

    padding: 0;

    list-style: none;

}


.service-detail-content li {

    position: relative;

    padding-left: 22px;

    font-size: 12px;

    line-height: 1.6;

}


.service-detail-content li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--blue);

    font-weight: 800;

}


.service-enquiry {

    display: inline-flex;

    align-items: center;

    margin-top: 8px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;

}


.service-enquiry:hover {

    text-decoration: underline;

}


/* =====================================================
   SERVICES HERO
===================================================== */

.services-hero {

    background:
        linear-gradient(
            135deg,
            #eaf8fd,
            #ffffff 70%
        );

}


/* =====================================================
   SERVICES FAQ
===================================================== */

.services-faq {

    background: #f7fbfd;

}


/* =====================================================
   SERVICES MOBILE
===================================================== */

@media (max-width: 700px) {

    .services-intro {

        padding: 55px 0 25px;

    }


    .all-services {

        padding: 25px 0 65px;

    }


    .service-detail {

        grid-template-columns: 1fr;

        gap: 18px;

        padding: 28px 20px;

        margin-bottom: 18px;

    }


    .service-detail-number {

        width: 45px;

        height: 45px;

        font-size: 12px;

    }


    .service-detail-content h2 {

        font-size: 25px;

    }


    .service-detail-content p {

        font-size: 13px;

    }


    .service-detail-content ul {

        grid-template-columns: 1fr;

        gap: 7px;

    }


    .service-enquiry {

        font-size: 12px;

    }

}
/* =====================================================
   GALLERY PAGE
===================================================== */

.gallery-hero {

    background:
        linear-gradient(
            135deg,
            #eaf8fd,
            #ffffff 70%
        );

}


/* =====================================================
   GALLERY INTRO
===================================================== */

.gallery-intro {

    padding: 75px 0 35px;

    background: #ffffff;

}


.gallery-intro .section-heading p {

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

}


/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery-section {

    padding: 30px 0 95px;

    background: #ffffff;

}


/* =====================================================
   FILTER BUTTONS
===================================================== */

.gallery-filters {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;

}


.gallery-filter {

    padding: 10px 20px;

    border: 1px solid var(--border);

    border-radius: 30px;

    background: #ffffff;

    color: var(--dark);

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;

}


.gallery-filter:hover {

    border-color: var(--blue);

    color: var(--blue);

}


.gallery-filter.active {

    border-color: var(--blue);

    background: var(--blue);

    color: #ffffff;

}


/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    min-height: 300px;

    border-radius: 12px;

    background: #eaf7fc;

    cursor: pointer;

}


.gallery-item img {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 300px;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


/* =====================================================
   GALLERY OVERLAY
===================================================== */

.gallery-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 55px 20px 20px;

    color: #ffffff;

    background:
        linear-gradient(
            transparent,
            rgba(0, 25, 45, .9)
        );

    transform: translateY(2px);

}


.gallery-overlay span {

    display: block;

    margin-bottom: 5px;

    color: #bfeeff;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.gallery-overlay h3 {

    font-size: 17px;

    line-height: 1.3;

}


/* =====================================================
   FILTER ANIMATION
===================================================== */

.gallery-item.hide {

    display: none;

}


/* =====================================================
   GALLERY SEO
===================================================== */

.gallery-seo {

    padding: 85px 0;

    background: #f7fbfd;

}


.gallery-seo-grid {

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 70px;

    align-items: start;

}


.gallery-seo h2 {

    margin-top: 12px;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.15;

}


.gallery-seo h2 span {

    color: var(--blue);

}


.gallery-seo p {

    margin-bottom: 15px;

    font-size: 14px;

    line-height: 1.85;

}


/* =====================================================
   GALLERY MOBILE
===================================================== */

@media (max-width: 900px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .gallery-seo-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

}


@media (max-width: 600px) {

    .gallery-intro {

        padding: 55px 0 25px;

    }


    .gallery-section {

        padding: 25px 0 65px;

    }


    .gallery-filters {

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

    }


    .gallery-filter {

        flex-shrink: 0;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .gallery-item {

        min-height: 300px;

    }


    .gallery-item img {

        min-height: 300px;

    }


    .gallery-seo {

        padding: 65px 0;

    }

}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-hero {

    background:
        linear-gradient(
            135deg,
            #eaf8fd,
            #ffffff 70%
        );

}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    padding: 80px 0 100px;

    background: #ffffff;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 70px;

    align-items: start;

}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info h2 {

    margin: 12px 0 18px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.12;

}


.contact-info h2 span {

    display: block;

    color: var(--blue);

}


.contact-info > p {

    max-width: 580px;

    margin-bottom: 28px;

    font-size: 14px;

    line-height: 1.85;

}


.contact-card {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 15px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    transition: .25s ease;

}


.contact-card:hover {

    border-color: #b8e4f2;

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0, 60, 90, .07);

}


.contact-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf7fc;

    color: var(--blue);

    font-size: 20px;

}


.contact-card small {

    display: block;

    margin-bottom: 4px;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.contact-card strong {

    display: block;

    margin-bottom: 3px;

    color: var(--dark);

    font-size: 15px;

}


.contact-card span {

    display: block;

    color: #667782;

    font-size: 11px;

}


.contact-note {

    margin-top: 25px;

    padding: 20px;

    border-left: 3px solid var(--blue);

    background: #f6fbfd;

}


.contact-note strong {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

}


.contact-note p {

    margin: 0;

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-box {

    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(0, 60, 90, .08);

}


.form-heading {

    margin-bottom: 25px;

}


.form-heading h2 {

    margin: 9px 0 8px;

    font-size: 28px;

}


.form-heading p {

    margin: 0;

    color: #687984;

    font-size: 12px;

    line-height: 1.7;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d8e3e8;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: var(--dark);

    font-family: inherit;

    font-size: 12px;

    transition: .2s ease;

}


.form-group textarea {

    min-height: 120px;

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(0, 150, 200, .08);

}


.form-submit {

    width: 100%;

    border: none;

    cursor: pointer;

}


.form-small-text {

    margin: 12px 0 0;

    color: #819099;

    font-size: 9px;

    line-height: 1.6;

    text-align: center;

}


/* =====================================================
   CONTACT BENEFITS
===================================================== */

.contact-benefits {

    padding: 85px 0;

    background: #f7fbfd;

}


.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;

}


.benefit-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

}


.benefit-number {

    margin-bottom: 17px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 900;

}


.benefit-card h3 {

    margin-bottom: 10px;

    font-size: 18px;

}


.benefit-card p {

    margin: 0;

    color: #687984;

    font-size: 12px;

    line-height: 1.75;

}


/* =====================================================
   CONTACT FAQ
===================================================== */

.contact-faq {

    padding: 85px 0;

    background: #ffffff;

}


/* =====================================================
   CONTACT MOBILE
===================================================== */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .contact-section {

        padding: 55px 0 65px;

    }


    .contact-form-box {

        padding: 25px 18px;

        border-radius: 12px;

    }


    .contact-info h2 {

        font-size: 31px;

    }


    .contact-card {

        padding: 15px;

    }


    .contact-icon {

        width: 42px;

        height: 42px;

        font-size: 17px;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .contact-benefits,
    .contact-faq {

        padding: 60px 0;

    }

}

.gallery-lightbox {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-lightbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-lightbox:hover img {
    transform: scale(1.06);
}
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.92);
}

.image-lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #142d3d;

    font-size: 30px;

    cursor: pointer;

    z-index: 2;
}

.lightbox-close:hover {
    background: #008dcc;
    color: #ffffff;
}

.lightbox-title {
    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    padding: 9px 18px;

    background: #ffffff;
    color: #142d3d;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}


@media (max-width: 600px) {

    .lightbox-image {
        max-width: 96vw;
        max-height: 82vh;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;

        width: 40px;
        height: 40px;

        font-size: 25px;
    }

    .lightbox-title {
        bottom: 15px;

        max-width: 90%;

        font-size: 12px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}
.footer-contact-link,
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-address span{
    font-size:12px;
}
.footer-contact-link{
    display:flex !important;
    align-items:center;
    margin-top:10px;
}
.contact-icon {
    width: 30px;
    min-width: 22px;
    height: 30px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-contact-link {
    text-decoration: none;
}

.footer-address {
    line-height: 1.7;
}

.footer-contact-link:hover {
    text-decoration: none;
}

.footer-contact-link:hover .contact-icon {
    transform: translateY(-1px);
}