:root {
    --white: #ffffff;
    --blue: #253b73;
    --green: #148040;
    --overlay-bg: #f4f6fb;
    --muted: #424446;
    --white: #fff;
    --cardBG: #ffffff;
    --radius: 20px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --fs-large: clamp(40px, 6vw, 86px);
    width: 100%;
}

* {
    box-sizing: border-box
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #0b1630
}

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


/* TOP INFO BAR (A: blue with white text) */

.topbar {
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 90%;
    margin: 0 auto;
}

.top-left,
.top-right {
    display: flex;
    gap: 18px;
    align-items: center
}

.top-left a,
.top-right a {
    color: var(--white);
    opacity: 0.95;
    font-weight: 500
}

.top-left .phone {
    font-weight: 700
}

.top-right .lang {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600
}


/* HEADER / NAVBAR */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(37, 59, 115, 0.04);
}

.nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 12px;
}

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

.logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    /* background: linear-gradient(180deg, var(--blue), #1b2f61); */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.brand .title {
    font-weight: 700;
    color: var(--blue);
    font-size: 18px
}

.brand .subtitle {
    font-size: 12px;
    color: var(--muted)
}


/* pill menu button */

.menu-btn {
    background: var(--white);
    color: var(--blue);
    padding: 10px 22px;
    border-radius: 40px;
    border: 2px solid var(--blue);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .35s var(--transition);
}

.menu-btn:hover {
    transform: translateY(-2px)
}


/* fullscreen overlay */

.overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s var(--transition), transform .65s var(--transition);
    z-index: 1500;
}

.overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.overlay-inner {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    padding: 40px 24px
}

.overlay-close {
    position: absolute;
    right: 24px;
    top: 22px;
    background: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    border: 2px solid var(--blue);
    font-weight: 700;
    cursor: pointer;
    z-index: 1600;
}

.overlay-links {
    margin-top: 48px
}

.overlay-links a {
    display: block;
    font-weight: 800;
    font-size: 35px;
    line-height: 1;
    color: var(--blue);
    margin: 18px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: transform .45s var(--transition), opacity .45s var(--transition);
}

.overlay.active .overlay-links a:nth-child(1) {
    transition-delay: .10s
}

.overlay.active .overlay-links a:nth-child(2) {
    transition-delay: .17s
}

.overlay.active .overlay-links a:nth-child(3) {
    transition-delay: .24s
}

.overlay.active .overlay-links a:nth-child(4) {
    transition-delay: .31s
}

.overlay.active .overlay-links a:nth-child(5) {
    transition-delay: .38s
}

.overlay.active .overlay-links a {
    opacity: 1;
    transform: none
}


/* small copyright under links */

.overlay .copyright {
    margin-top: 36px;
    color: var(--muted);
    font-size: 14px
}


/* prevent body scroll when overlay open */

body.no-scroll {
    overflow: hidden;
    height: 100%
}


/* responsiveness */

@media (max-width:980px) {
    .overlay-links a {
        font-size: clamp(28px, 7vw, 48px)
    }
    .logo {
        width: 84px;
        height: 84px
    }
    .brand .title {
        font-size: 16px
    }
}

@media (max-width:640px) {
    .topbar {
        font-size: 13px;
        padding: 3px 0;
    }
    .topbar .container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px 0
    }
    .top-left .address {
        display: none;
    }
    .top-right {
        /* padding: 6px; */
        display: none;
    }
    .nav {
        width: 95%
    }
    .logo {
        width: 60px;
        height: 60px;
    }
}


/* accessibility focus */

.menu-btn:focus,
.overlay-close:focus,
.topbar a:focus {
    outline: 3px solid rgba(20, 128, 64, 0.12);
    outline-offset: 4px
}

.hero-section {
    padding: 48px 0 36px;
    background: transparent;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    /* display: grid; */
    grid-template-columns: 1fr 520px;
    gap: 32px;
    align-items: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: #fafafa;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eee;
    letter-spacing: .7px;
    margin-bottom: 16px;
}

.hero-badge span {
    color: var(--blue);
}

.hero-title {
    font-size: 48px;
    line-height: 1.02;
    margin: 18px 0 12px;
    font-weight: 800;
    color: #0b1730;
    font-family: 'Montserrat', sans-serif;
}

.hero-title .muted {
    color: #999;
    font-weight: 700
}

.hero-title .accent {
    color: var(--blue)
}

.hero-desc {
    max-width: 680px;
    margin: 0 auto 25px;
    color: #3b3b3b;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(20, 128, 64, 0.12)
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(3, 7, 18, 0.06);
    color: var(--blue)
}


/* right image */

.hero-visual {
    margin-top: 80px;
    display: flex;
    justify-content: center
}

.hero-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(11, 20, 40, 0.06);
    background: var(--cardBG)
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 580px;
    min-height: 440px
}


/* ensure right column fits */

.hero-image-wrap {
    width: 100%;
    max-width: 1200px;
    height: 100%;
}


/* rating card */

.rating-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: var(--white);
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(9, 20, 40, 0.12);
    min-width: 200px;
    border: 1px solid rgba(3, 7, 18, 0.04)
}

.rating-card .avatars {
    display: flex;
    /* gap: -118px */
}

.avatar-two,
.avatar-three,
.avatar-four {
    margin-left: -10px;
}

.rating-card img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover
}

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

.rating-text .counts {
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    /* color: #0b2036 */
}

.rating-text .stars {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 700
}

.rating-text .score {
    font-size: 12px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 600
}


/* responsive */

@media (max-width:1100px) {
    .hero-container {
        grid-template-columns: 1fr 420px;
        gap: 22px
    }
    .hero-title {
        font-size: 42px
    }
}

@media (max-width:780px) {
    .hero-section {
        justify-content: center;
        overflow: hidden;
        width: 100%;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 12px;
        overflow: hidden;
        width: 100%;
        max-width: 1200px;
    }
    .hero-title {
        font-size: 34px;
        text-align: center
    }
    .hero-content {
        text-align: center
    }
    .hero-visual {
        order: -1
    }
    .hero-image {
        max-height: 340px
    }
    .rating-card {
        display: none;
        transform: translateX(50%);
        bottom: 14px;
    }
}

@media (max-width:420px) {
    /* .hero-badge {
        display: inline-block;
        background: #fafafa;
        border-radius: 999px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #eee;
        letter-spacing: .7px;
        margin-bottom: 16px;
    } */
    .hero-title {
        font-size: 33px
    }
    .rating-card {
        min-width: 160px;
        padding: 7px 9px
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-image {
        max-height: 260px
    }
}

.trusted-section {
    text-align: center;
    margin: 60px auto;
    width: 90%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.trusted-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 70px;
    animation: scroll 18s linear infinite;
}

.logo-track img {
    height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .85;
    transition: .3s;
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.trusted-section:before,
.trusted-section:after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.trusted-section:before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.trusted-section:after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@media (max-width:700px) {
    .logo-track {
        gap: 40px;
    }
    .logo-track img {
        height: 62px;
    }
    .trusted-title {
        font-size: 17px;
    }
}

.about {
    width: 70%;
    max-width: 1200px;
    margin: 120px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
}

.subheading {
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: -15px;
    letter-spacing: 0.8px;
}

.about-title {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    /* color: #1B2A5E; */
    color: var(--blue);
    /* HGE Blue */
    margin-bottom: 25px;
}

.about-text {
    font-size: 18px;
    color: #505A63;
    margin: 16px 0;
    line-height: 1.6;
    width: 90%;
}

.highlight {
    /* color: #1B2A5E; */
    color: var(--blue);
}

.cta-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-btn {
    background-color: var(--green);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: .3s;
}

.cta-btn:hover {
    background: var(--green);
}

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

.call-icon {
    font-size: 32px;
    color: #E94E1B;
}

.call-label {
    font-size: 15px;
    color: #7F7F7F;
}

.call-number {
    font-size: 20px;
    font-weight: 700;
    color: #1B2A5E;
}

.about-image img {
    width: 400px;
    height: 550px;
    border-radius: 35px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about {
        flex-direction: column;
        text-align: left;
        width: 90%;
        overflow-x: hidden;
    }
    .about-title {
        font-size: 42px;
    }
    .about-content {
        width: 100%;
    }
    .about-text {
        width: 100%;
        text-align: justify;
    }
    .about-image {
        width: 100%;
        height: 500px;
        border-radius: 35px;
        object-fit: cover;
    }
    .about-image img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about {
        width: 90%;
        overflow-x: hidden;
    }
    .about-title {
        font-size: 34px;
    }
    .about-text {
        width: 100%;
        text-align: justify;
    }
    .about-image {
        width: 100%;
        height: 70%;
        border-radius: 35px;
        object-fit: cover;
    }
    .about-image img {
        width: 100%;
        height: 70%;
    }
}


/* ===== WHY CHOOSE US (scoped styles to avoid conflicts) ===== */

#choose-us {
    padding: 80px 0;
    text-align: center;
}

#choose-us .choose-sub {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
}


/* #choose-us .choose-subheading {
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
} */

#choose-us .choose-subtext {
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

#choose-us .choose-heading {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

#choose-us .row-first,
#choose-us .row-second {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

#choose-us .card {
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    background: #fff;
}

#choose-us .box-1,
#choose-us .box-2 {
    margin-bottom: 22px;
}

#choose-us .box-1,
#choose-us .box-4 {
    width: 390px;
    min-height: 420px;
    padding: 28px;
    text-align: left;
    border: 1px solid #d7d7d7;
}

#choose-us .box-2,
#choose-us .box-3 {
    width: 640px;
    height: 430px;
    padding: 0;
}

#choose-us .box-2 img,
#choose-us .box-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

#choose-us .icon {
    padding-top: 12px;
    font-size: 30px;
    margin-bottom: 12px;
    width: 20%;
}

#choose-us h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}

#choose-us p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

#choose-us .stats {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 28px;
    font-weight: 600;
    border-top: 1px solid #d7d7d7;
}

#choose-us .stats small {
    font-size: 12px;
    display: block;
    opacity: 0.7;
    font-weight: 500;
}

#choose-us .count {
    color: #1B1B1E;
}

@media(min-width:769px)and (max-width: 1000px) {
    #choose-us {
        padding: 48px 0;
    }
    #choose-us .choose-heading {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
    #choose-us .row-first,
    #choose-us .row-second {
        align-items: center;
        flex-direction: column;
    }
    #choose-us .card {
        width: 90% !important;
        min-height: auto;
        padding: 20px !important;
        border-radius: 22px;
    }
    #choose-us .box-2,
    #choose-us .box-3 {
        width: 94% !important;
        height: auto;
        padding: 0 !important;
    }
    #choose-us .box-2 img,
    #choose-us .box-3 img {
        width: 100%;
        height: auto;
        border-radius: 22px;
    }
    #choose-us .box-1,
    #choose-us .box-4 {
        width: 94% !important;
    }
    #choose-us h3 {
        font-size: 24px;
    }
    #choose-us p {
        font-size: 20px;
        text-align: justify;
    }
    #choose-us .stats {
        font-size: 22px;
    }
    #choose-us .stats small {
        font-size: 11.5px;
    }
    /* .choose-subheading {
        justify-self: center;
    } */
    #choose-us .icon {
        padding-top: 12px;
        font-size: 30px;
        margin-bottom: 12px;
        width: 10%;
    }
}

@media (max-width: 768px) {
    #choose-us {
        padding: 48px 0;
        text-align: center;
    }
    #choose-us .choose-heading {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
    #choose-us .row-first,
    #choose-us .row-second {
        align-items: center;
        flex-direction: column;
    }
    #choose-us .card {
        width: 90% !important;
        min-height: auto;
        padding: 20px !important;
        border-radius: 22px;
    }
    #choose-us .box-2,
    #choose-us .box-3 {
        width: 94% !important;
        height: auto;
        padding: 0 !important;
    }
    #choose-us .box-2 img,
    #choose-us .box-3 img {
        width: 100%;
        height: auto;
        border-radius: 22px;
    }
    #choose-us .box-1,
    #choose-us .box-4 {
        width: 94% !important;
    }
    #choose-us h3 {
        font-size: 24px;
    }
    #choose-us p {
        font-size: 18px;
        text-align: justify;
    }
    #choose-us .stats {
        font-size: 26px;
    }
    #choose-us .stats small {
        font-size: 18px;
    }
    /* .choose-subheading {
        text-align: center;
        align-self: center;
        padding-left: 20px;
    } */
    #choose-us .icon {
        width: 10%;
    }
}

.services-section {
    width: 100%;
    padding: 80px 0%;
    background: #fff;
    justify-items: center;
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.services-title {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

.services-grid {
    justify-content: center;
    /* justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    /* background-color: #148040; */
    width: 70%;
}

.service-card {
    width: 240px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 360px;
}

.service-card * {
    pointer-events: none;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.service-overlay {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.4) 60%, transparent 95%);
    z-index: 2;
}

.service-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 3;
}

.service-info,
.service-info * {
    pointer-events: auto;
}

.service-info h3 {
    font-size: 17px;
    font-weight: 600;
}

.arrow {
    font-size: 20px;
    font-weight: bold;
}

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


/* From Uiverse.io by cssbuttons-io */


/* ✅ Mobile */


/* @media(min-width:769px)and(max-width: 1000px) {
    .services-section {
        width: 100%;
        padding: 80px 0%;
        background: #fff;
    }
    .services-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        display: grid;
     
        gap: 28px;
        width: 90%;
        padding: 0%;
    }
    .service-card {
        height: 450px;
        border-radius: 18px;
        width: 100%;
       
        grid-template-columns: repeat(1, 1fr);
    }
    .service-info {
        bottom: 22px;
        left: 22px;
        right: 22px;
    }
    .service-info h3 {
        font-size: 22px;
        line-height: 1.35;
        font-weight: 600;
    }
    .arrow svg {
        width: 28px;
        height: 28px;
    }
    .services-mobile-image {
        position: sticky;
        top: 90px;
        margin-bottom: 24px;
        height: 380px;
        overflow: hidden;
        border-radius: 18px;
    }
    .services-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .services-mobile-image {
        position: sticky;
        top: 100px;
        margin-bottom: 20px;
        height: 350px;
        overflow: hidden;
        border-radius: 20px;
    }
    .services-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */

@media (min-width: 769px) and (max-width: 1000px) {
    .services-section {
        width: 100%;
        padding: 80px 0;
        background: #fff;
    }
    .services-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
    .services-grid {
        display: grid;
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .service-card {
        height: 450px;
        border-radius: 18px;
        width: 100%;
    }
    .service-info {
        bottom: 22px;
        left: 22px;
        right: 22px;
    }
    .service-info h3 {
        font-size: 22px;
        line-height: 1.35;
        font-weight: 600;
    }
    .arrow svg {
        width: 28px;
        height: 28px;
    }
    .services-mobile-image {
        position: sticky;
        top: 100px;
        margin-bottom: 20px;
        height: 350px;
        overflow: hidden;
        border-radius: 20px;
    }
    .services-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media(max-width: 768px) {
    .services-section {
        width: 100%;
        padding: 80px 0%;
        background: #fff;
    }
    .services-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        padding: 0%;
    }
    .service-card {
        height: 450px;
        border-radius: 18px;
        width: 90%;
        justify-self: center;
    }
    .service-info {
        bottom: 22px;
        left: 22px;
        right: 22px;
    }
    .service-info h3 {
        font-size: 22px;
        line-height: 1.35;
        font-weight: 600;
    }
    .arrow svg {
        width: 28px;
        height: 28px;
    }
    .services-mobile-image {
        position: sticky;
        top: 90px;
        margin-bottom: 24px;
        height: 380px;
        overflow: hidden;
        border-radius: 18px;
    }
    .services-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .services-mobile-image {
        position: sticky;
        top: 100px;
        margin-bottom: 20px;
        height: 350px;
        overflow: hidden;
        border-radius: 20px;
    }
    .services-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.why-mosaic {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    justify-content: center;
}

.why-eyebrow {
    /* text-align: center;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px; */
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.why-title {
    /* text-align: center;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 34px; */
    text-align: center;
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}


/* GRID */

.mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 150px;
    padding-bottom: 25px;
    gap: 20px;
    /* width: 90%; */
    /* background-color: #7F7F7F; */
}


/* Base tile */

.tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(40px);
}

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


/* Labels */

.chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: var(--overlay-bg);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}


/* EXACT GRID SPANS */

.spain {
    grid-column: span 3;
    grid-row: span 2;
}

.london {
    grid-column: span 3;
}

.croatia {
    grid-column: span 3;
    grid-row: span 2;
}

.bratislava {
    grid-column: span 3;
}

.lisbon {
    grid-column: span 3;
}

.copenhagen {
    grid-column: span 3;
}


/* Mobile */

@media(max-width:900px) {
    .mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 140px;
    }
    .spain {
        grid-column: span 6;
    }
    .bratislava {
        grid-column: span 6;
        grid-row: span 2;
    }
    .london,
    .croatia,
    .lisbon,
    .copenhagen {
        grid-column: span 3;
        grid-row: span 2;
    }
    .why-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
}

@media(max-width:600px) {
    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }
    .why-eyebrow {
        /* text-align: center;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px; */
        text-align: center;
        font-size: 17px;
        font-weight: 700;
        color: #7F7F7F;
        margin-bottom: 15px;
        letter-spacing: 0.8px;
    }
    .spain,
    .bratislava {
        grid-column: span 2;
        grid-row: span 2;
    }
    .london,
    .croatia,
    .lisbon,
    .copenhagen {
        grid-column: span 2;
        grid-row: span 1;
    }
    .why-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
}

.faq-section {
    width: 100%;
    max-width: 1200px;
    padding: 80px 24px;
    margin: 0 auto;
    text-align: center;
}

.faq-eyebrow {
    /* font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px; */
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.faq-title {
    /* font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px; */
    text-align: center;
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

.faq-sub {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}


/* GRID */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 30px;
        line-height: 1.35;
        padding: 0 8px;
    }
}


/* FAQ Item */

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 0 1px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 26px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    background: var(--white);
    border: none;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    font-size: 20px;
    font-weight: 700;
    transition: .3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 26px;
}

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

.faq-answer p {
    text-align: left;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}


/* FOOTER */

.footer {
    background: #0b0f1a;
    padding: 80px 28px 50px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}


/* Brand */

.footer-logo img {
    width: 100px;
}

.italic-accent {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--green);
}

.footer-desc {
    color: #9da3b7;
    line-height: 1.6;
    margin: 14px 0 20px;
}


/* Social icons */

.footer-socials a {
    display: inline-block;
    margin-right: 16px;
    font-size: 18px;
    color: var(--green);
    transition: 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);
}


/* Columns */

.footer-col h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #c9cfdd;
    position: relative;
    padding-left: 14px;
}

.footer-col ul li a {
    color: #c9cfdd;
    text-decoration: none;
}


/* .footer-col ul li {
            position: relative;
            padding-left: 14px;
        }
         */

.footer-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 18px;
    line-height: 1;
}

.footer-contact {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9cfdd;
}

.footer-contact i {
    color: var(--green);
}


/* Line */

.footer hr {
    border: none;
    border-bottom: 1px solid #2a3142;
    margin: 40px 0 24px;
}


/* Copyright */

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #c9cfdd;
}

a {
    text-decoration: none;
    color: #c9cfdd;
}


/* Responsive */

@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-logo img {
        width: 80px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer {
        padding: 70px 20px;
    }
    .footer-logo img {
        width: 80px;
    }
}