html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================
    2. BUTTONS
    ========================================================== */
.btn-nav,
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-btn);
    background: linear-gradient(180.03deg, #127DD4 0.03%, #1A5585 175.49%);
    color: var(--white) !important;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

.btn-nav span,
.btn-gradient span {
    font-size: var(--fs-nav);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.btn-nav .icon,
.btn-gradient .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.btn-nav .icon svg,
.btn-gradient .icon svg {
    width: 6px;
    height: 11px;
    display: block;
}

.btn-gradient {
    padding: 12px 24px;
    font-size: var(--fs-nav);
    font-weight: 500;
    margin-top: 4%;
    
}

.btn-nav {
    padding: 12px 24px;
    font-weight: 500;
    font-size: var(--fs-nav);
}

.btn-nav:hover,
.btn-gradient:hover {
    transform: scale(1.05);
    background-color: var(--dark-blue);
    background-image: none;
}

.btn-nav:hover .icon,
.btn-gradient:hover .icon {
    transform: translate(4px);
}

.btn-nav::before,
.btn-gradient::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.btn-nav:hover::before,
.btn-gradient:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.btn-nav:focus,
.btn-gradient:focus {
    outline: 2px dashed var(--dark-blue);
    outline-offset: 2px;
}

.btn-nav:active,
.btn-gradient:active {
    background-color: var(--dark-blue);
    background-image: none;
    transform: scale(0.98);
}

@media (max-width: 480px) {

    .btn-gradient,
    .btn-nav {
        padding: 12px 24px;
        font-size: var(--fs-nav);
    }
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #000000;
    background-image: none;
    color: var(--white) !important;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-read-more span {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.btn-read-more .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.btn-read-more .icon svg {
    width: 6px;
    height: 11px;
    display: block;
}

.btn-read-more:hover {
    transform: scale(1.05);
    background-color: #000000;
    background-image: none;
}

.btn-read-more:hover .icon {
    transform: translate(4px);
}

.btn-read-more::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.btn-read-more:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.btn-read-more:focus {
    outline: 2px dashed #000000;
    outline-offset: 2px;
}

.btn-read-more:active {
    background-color: #000000;
    background-image: none;
    transform: scale(0.98);
}

/* ==========================================================
    3. SITE HEADER
    ========================================================== */
.site-header,
.header-default {
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.396);
    backdrop-filter: blur(12px);
}

.site-branding img {
    max-height: 85px;
    object-fit: contain;
}


.site-branding-nav{
    display: flex;
    justify-content: space-between;
    padding-top: 7px;
    padding-bottom: 7px;

}



@media (max-width: 1024px) {

    .site-branding img {
        height: 65px;
    }
}

@media (max-width: 768px) {

    .site-header,
    .header-default {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
    }

    .site-branding img {
        max-width: 150px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .site-branding img {
        height: 48px;
    }
}

/* ==========================================================
    4(a)  MAIN NAVIGATION
    ========================================================== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 35px;
    width: auto;
}

#primary-menu.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

#primary-menu .menu-item {
    list-style: none;
}

#primary-menu .menu-item a {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Helvetica', sans-serif;
    text-transform: uppercase;


}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #043357;
    transition: all 700ms cubic-bezier(.9, 0, .33, 1);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateX(30px);
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

@media (max-width: 950px) {
    .main-navigation {
        display: flex;
        align-items: center;
    }

    .main-navigation #primary-menu,
    .main-navigation .btn-nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
}

/* ==========================================================
    4(b)  DROPDOWN SUBMENU (About Us, etc.)
    ========================================================== */

#primary-menu .menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

#primary-menu .menu-item-has-children>a {
    padding-right: 18px;
}

#primary-menu .menu-item-has-children::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 47%;
    width: 9px;
    height: 9px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    border-radius: 1px;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s ease, top 0.3s ease;
    color: #FFFFFF;
}

#primary-menu .menu-item-has-children:hover::after {
    transform: translateY(-35%) rotate(-135deg);
}

#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

#primary-menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu .sub-menu .menu-item {
    width: 100%;
}

#primary-menu .sub-menu a {
    display: block;
    padding: 8px 20px;
    white-space: nowrap;
    color: black;
    font-size: 15px;
}

#primary-menu .sub-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* ==========================================================
    4(c)  BORDER-BOTTOM HOVER EFFECT (navbar links only)
    ========================================================== */

#primary-menu .menu-item a {
    transition: 0.4s;
    border-bottom: 2px solid transparent;
}

#primary-menu .menu-item a:hover {
    border-bottom: 2px solid #ffffff;
}

.header-default .menu-item a:hover {
    border-bottom: 2px solid #1A5585 !important;
}

.header-default .menu-item-has-children::after {
    border-right: 2.5px solid #1A5585 !important;
    border-bottom: 2.5px solid #1A5585 !important;
}

/* ==========================================================
    5. MOBILE MENU & OVERLAY
    ========================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);   /* hidden state */
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #ffffff;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .35s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.mobile-menu ul,
.mobile-menu li,
.mobile-menu li::marker {
    list-style: none !important;
}

.mobile-menu li {
    margin-bottom: 0;
}

.mobile-menu a {
    display: block;
    color: #1c1c1c;
    font-size: 18px;
    text-decoration: none;
    width: fit-content;
}

.mobile-menu a.active,
.mobile-menu a:hover {
    color: #1A5585;
    font-weight: 700;
}

.close-btn {
    align-self: flex-end;
    font-size: 24px;
    color: #1c1c1c;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-btn {
    margin-top: 20px;
    width: 100%;
    align-self: center;

}

@media (max-width: 886px) {

    .mobile-menu .main-navigation,
    .mobile-menu #primary-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu #primary-menu>.menu-item {
        border-bottom: 1px solid #e5e0d8;
        position: relative;
    }

    .mobile-menu #primary-menu>.menu-item::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 40px;
        height: 2px;
        background: #1A5585;
        opacity: 0;
        transition: opacity 0.3s ease, width 0.3s ease;
    }

    .mobile-menu #primary-menu>.menu-item:hover::after,
    .mobile-menu #primary-menu>.menu-item.submenu-open::after {
        opacity: 1;
        width: 70px;
    }

    .mobile-menu #primary-menu>.menu-item>a {
        display: block;
        padding: 20px 0;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: #2b2118;
    }

    .mobile-menu .menu-item-has-children {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }

    .mobile-menu .menu-item-has-children>a {
        padding-right: 36px;
    }

    .mobile-menu .submenu-toggle {
        position: absolute;
        top: 10px;
        right: 0;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu .submenu-toggle::before {
        content: '';
        width: 11px;
        height: 11px;
        border-right: 2px solid #2b2118;
        border-bottom: 2px solid #2b2118;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .mobile-menu .menu-item-has-children.submenu-open>.submenu-toggle::before {
        transform: rotate(-135deg);
        border-color: #1A5585;
    }

    .mobile-menu .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0 0 0 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .mobile-menu .menu-item-has-children.submenu-open>.sub-menu {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 10px;
    }

    .mobile-menu .sub-menu a {
        display: block;
        padding: 10px 0;
        color: #444;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: normal;
        text-transform: none;
        border-left: 2px solid #e5e0d8;
        padding-left: 12px;
        margin-left: -12px;
        transition: border-color 0.2s ease, color 0.2s ease;
    }

    .mobile-menu .sub-menu a:hover {
        color: #1A5585;
        border-left-color: #1A5585;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
}

.header-default {
    background: rgba(252, 249, 249, 0.396) !important;
}

.header-default a {
    color: #1A5585 !important;
}

.header-default .btn-nav {
    color: white !important;
}

.header-default .menu-toggle span {
    background: #1A5585;
}

/* ==========================================================
    6. HERO SECTION
    ========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: #0b0c10;
    color: var(--white);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .8;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.content {
    max-width: 580px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.content h1 {
    font-weight: 500;
    line-height: 1.1;
    padding-top: 15px;
}

.content p {
    line-height: 1.6;
    color: var(--white);
    font-family: 'ID Grotesk', sans-serif;
    width: 80%;
}

/* ==========================================================
    HERO TEXT ANIMATION 
    ========================================================== */

.content h1 .line {
    display: inline-block;
    overflow: hidden;
}

.content h1 .line-inner {
    display: inline-block;
}

.content h1 .line:nth-child(1) .line-inner {
    animation-delay: 0.2s;
}

.content h1 .line:nth-child(3) .line-inner {
    animation-delay: 0.4s;
}

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

.btn-gradient {
    transition: transform 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
}

.btn-gradient .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-gradient:hover .icon {
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .content h1 .line-inner {
           animation: none;
           opacity: 1;
           transform: none;
    }
}

@media (max-width: 1024px) {
    .content {
        max-width: 520px;
    }
.content h1 {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 40px;
        display: flex;
        align-items: center;
    }

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

    .content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content h1,
    .content p {
        text-align: center;
    }

    .content h1 {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .content h1 {
        font-size: 36px;
    }
}

/* ==========================================================
    7. Service Section(Feature Gallery)
    ========================================================== */
.feature-gallery {
    width: 100%;
    background: #0b0c10;
}

.gallery-wrapper {
    position: relative;
}

.gallery-container {
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #F5F9FF;
    gap: 10px;
    border-bottom: 1px solid #F5F9FF;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-container {
    cursor: grab;
    scroll-snap-type: none; 
}

.gallery-container.dragging {
    cursor: grabbing;
    user-select: none;
}

.gallery-slide {
    flex: 0 0 25%;
    max-width: 25%;
    scroll-snap-stop: normal;
    display: block;
}

.gallery-column {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.column-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: var(--transition);
}

.column-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.column-content h3 {
    font-size: var( --fs-x);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    transition: transform 0.4s ease;
    position: relative;
    font-family: var(--font-body);
}

.hover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        transform 0.45s ease,
        visibility 0.35s ease;
}

.hover-content p {
    font-size: var(fs-base);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    max-width: 280px;
    margin: 0;
    padding-top: 40px;
}

.arrow-btn {
    width: 35px;
    height: 35px;
    background: var(--white);
    color: #0b0c10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-content h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.gallery-column:hover .column-content h3::after {
    width: 100%;
}

.gallery-column:hover .column-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-column:hover .hover-content {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 5px 0;
    background: #1A5585;
}

@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gallery-container {
        aspect-ratio: auto;
    }

    .gallery-column {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        flex: 0 0 88%;
        max-width: 88%;
    }

    .gallery-column {
        padding: 28px 18px;
        min-height: 380px;
    }

    .column-content h3 {
        font-size: 18px;
    }

    .hover-content p {
        font-size: 16px;
    }

    .gallery-controls {
        gap: 16px;
    }

}

/* ==========================================================
    8. EXPLORE SKYWALK SECTION (Swiper slider — GSAP pinned scroll-snap)
    ========================================================== */
.explore-outer-wrapper {
    width: 100%;
    height: 100vh;
    background-color: #F5F9FF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: var(--header-height, 90px);
}

.explore-outer-wrapper .container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.skywalkSwiper {
    width: 100%;
    height: 600px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.skywalkSwiper.is-scrolling {
    cursor: grabbing;
}

.skywalkSwiper .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.skywalkSwiper .swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    list-style: none;
    will-change: transform;
}

.skywalkSwiper .swiper-slide:nth-child(1) {
    z-index: 4;
    transform: translateY(0%);
}

.skywalkSwiper .swiper-slide:nth-child(2) {
    z-index: 3;
    transform: translateY(0%);
}

.skywalkSwiper .swiper-slide:nth-child(3) {
    z-index: 2;
    transform: translateY(0%);
}

.skywalkSwiper .swiper-slide:nth-child(4) {
    z-index: 1;
    transform: translateY(0%);
}

.explore-inner-card {
    width: 100%;
    height: 100%;
    background-color: #032b53;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-sizing: border-box;
}

.explore-inner-card--alt {
    background-color: #0561a3;
}

.explore-card-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    height: 100%;
}

.skywalk-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.skywalk-frame {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.skywalk-main-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.space-stairs-logo {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 320px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.space-stairs-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.skywalk-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skywalk-info-content h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.skywalk-history-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skywalk-history-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: -5px;
}

.skywalk-history-block p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-align: justify;
}

.skywalk-history-block p strong {
    font-weight: 600;
    color: #ffffff;
}

.space-hexagon-logo {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    pointer-events: none;
    z-index: 1;
}

.space-hexagon-logo img {
    width: 100%;
    height: auto;
}

.space-tower-logo {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 60px;
    pointer-events: none;
    z-index: 1;
}

.space-tower-logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .explore-outer-wrapper .container {
        padding: 0 24px;
        box-sizing: border-box;
    }
 
    .skywalkSwiper {
        height: 520px;
    }
 
    .explore-inner-card {
        padding: 38px 36px;
    }
 
    .explore-card-container {
        gap: 34px;
    }
 
    .skywalk-info-content h2 {
        font-size: clamp(26px, 3.6vw, 36px);
        margin-bottom: 16px;
    }
 
    .space-hexagon-logo {
        width: 120px;
        top: -28px;
        right: -28px;
    }
 
    .space-stairs-logo {
        width: 220px;
        bottom: -56px;
        left: -34px;
    }
}
 
/* Mobile — JS disables the pinned Observer below 769px, so this
   becomes a normal stacked scroll; layout below matches that. */
@media (max-width: 768px) {
    .explore-outer-wrapper {
        height: auto;
        overflow: visible;
        padding-top: calc(var(--header-height, 90px) + 30px);
        padding-bottom: 30px;
    }
 
    .explore-outer-wrapper .container {
        margin-top: 0;
        padding: 0 20px;
        box-sizing: border-box;
    }
 
    .skywalkSwiper {
        height: auto;
        overflow: visible;
        cursor: default;
    }
 
    .skywalkSwiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }
 
    .skywalkSwiper .swiper-slide {
        position: relative;
        transform: none !important;
        height: auto;
        z-index: 1 !important;
    }
 
    .explore-inner-card {
        padding: 32px 26px 28px;
        border-radius: 14px;
        box-shadow: 0 16px 32px -18px rgba(3, 43, 83, 0.4);
    }
 
    .explore-card-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }
 
    .skywalk-image-wrapper {
        aspect-ratio: 16 / 10;
        height: auto;
    }
 
    .skywalk-frame {
        height: 100%;
    }
 
    .space-stairs-logo {
        width: 150px;
        bottom: -20px;
        left: -16px;
    }
 
    .space-hexagon-logo {
        width: 100px;
        top: -20px;
        right: -20px;
    }
 
    .space-tower-logo {
        width: 42px;
        right: 5%;
    }
 
    .skywalk-info-content h2 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 14px;
    }
 
    .skywalk-history-block p {
        font-size: 14px;
        text-align: left;
    }
}
 
/* Small phones */
@media (max-width: 480px) {
    .explore-inner-card {
        padding: 26px 20px 24px;
    }
 
    .badge-text {
        font-size: 11px;
    }
 
    .skywalk-info-content h2 {
        font-size: clamp(22px, 6.5vw, 27px);
    }
 
    .space-stairs-logo {
        width: 118px;
        bottom: -14px;
        left: -10px;
    }
 
    .space-hexagon-logo {
        width: 82px;
        top: -16px;
        right: -16px;
    }
 
    .space-tower-logo {
        width: 34px;
    }
}

/* ==========================================================
    9. ABOUT SKYWALK NEPAL SECTION
    ========================================================== */
.about-skywalk {
    width: 100%;
    background-color: #F5F9FF;
}

.about-skywalk-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-display h2 {
    font-size: 70px;
    font-weight: 400;
    color: #111625;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-display h2 span {
    color: var(--primary-blue);
}

.about-display p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    max-width: 540px;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 400;
    color: #111625;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-unit {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin-left: -4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888888;
}

.stat-divider {
    width: 1px;
    height: 55px;
    background-color: #E2E8F0;
}

.btn-discover {
    font-size: var(--fs-x);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: bold;
}

.about-right-col {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: flex;
    gap: 24px;
    padding-bottom: 8px;
    margin-bottom: 36px;
    border-bottom: 1px solid #EAEAEA;
    transition: transform 0.25s ease, border-color 0.25s ease;
    border-radius: 4px;
    cursor: pointer;
}

.feature-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #444444;
}

.icon-text-fallback {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
}

.feature-text-box span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111625;
    margin-bottom: 12px;
}

.feature-text-box p {
    font-size: 14px;
    line-height: 1.65;
    color: #666666;
    text-align: justify;
}

.feature-row .feature-text-box p a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

.feature-row:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--primary-blue);
}

.feature-row:hover .feature-text-box span {
    color: var(--primary-blue);
    transition: color 0.25s ease;
}

.feature-row:hover .feature-icon-box {
    border-color: var(--primary-blue);
    transition: border-color 0.25s ease;
}

@media (max-width: 1024px) {
    .about-skywalk-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-display p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .about-left-col {
        align-items: center;
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }

    .stat-box {
        align-items: center;
    }

    .feature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .stats-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }
}

/* ==========================================================
    10. TESTIMONIALS SECTION
    ========================================================== */

.testimonials {
    --testimonial-card-w: 340px;
    --testimonial-pad-x: 40px;
    --testimonial-pad-y: 55px;
    --testimonial-radius: 0px;

    width: 100%;
    background-color: #F5F9FF;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 60px);
    position: relative;
    z-index: 5;
}

.small-title-top {
    font-size: 15px;
    font-weight: 600;
    color: #127DD4;
    letter-spacing: 0.5px;
}

.testimonials-header h2 {
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 500;
    color: #111625;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 45px);
    z-index: 5;
}

.testimonialsSwiper {
    width: 100%;
    padding: 20px 0;
}

.testimonialsSwiper .swiper-slide.testimonial-card {
    width: var(--testimonial-card-w);
    flex-shrink: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: var(--testimonial-radius);
    box-shadow: none;
    border-right: 1px solid #eef0f3;
    padding: var(--testimonial-pad-y) var(--testimonial-pad-x) 45px var(--testimonial-pad-x);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    height: auto;
    transition: var(--transition);
}


@media (hover: hover) and (pointer: fine) {
    .testimonialsSwiper .swiper-slide.testimonial-card:hover {
        background-color: #E1F1FD;
    }
}

.quote-icon {
    width: clamp(40px, 4vw, 56px);
    height: clamp(40px, 4vw, 56px);
    margin-top: -20px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2b354e;
    font-weight: 400;
    margin-bottom: 40px;
    transition: var(--transition);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    min-width: 0; 
}

.author-info p {
    font-size: 16px;
    font-weight: 600;
    color: #111625;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-title {
    font-size: 13px;
    color: #7e879c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.testimonials-controls {
    display: block;
}

.swiper-pagination.testimonials-pagination {
    position: static;
    display: none;
    align-items: center;
    gap: 8px;
    width: auto;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7d3e6;
    opacity: 1;
    margin: 0 !important;
    transition: var(--transition);
    cursor: pointer;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: var(--primary-blue);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px; 
    min-height: 40px;

    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    cursor: pointer;
}

.slider-arrow svg path:nth-child(1) {
    stroke: #1A5585;
    fill: transparent;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.slider-arrow svg path:nth-child(2) {
    stroke: #043357;
    transition: stroke 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .slider-arrow:hover svg path:nth-child(1),
    .slider-arrow:hover svg path:nth-child(2) {
        stroke: var(--primary-blue);
    }
}

.slider-arrow:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 50%;
}

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

.arrow-right svg {
    transform: rotate(-180deg);
}

.slider-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonials-bg-hexagon {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 320px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.testimonials-bg-hexagon img {
    width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    .testimonialsSwiper .swiper-slide.testimonial-card,
    .quote-icon,
    .testimonial-text,
    .slider-arrow,
    .slider-arrow svg path,
    .testimonials-pagination .swiper-pagination-bullet {
        transition: none !important;
    }
}

@media (max-width: 1023px) {

    .testimonials {
        --testimonial-card-w: 320px;
        --testimonial-pad-x: 30px;
        --testimonial-pad-y: 45px;
    }

    .testimonialsSwiper .swiper-slide.testimonial-card {
        min-height: 440px;
    }

    .testimonials-controls {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 28px;
        gap: 22px;
    }

    .swiper-pagination.testimonials-pagination {
        display: flex;
    }

    .slider-arrow {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    @media (hover: hover) and (pointer: fine) {
        .slider-arrow:hover {
            border-color: var(--primary-blue);
            background: #E1F1FD;
        }
    }

    .arrow-right svg {
        transform: rotate(-180deg);
    }

    .testimonials-bg-hexagon {
        width: 250px;
    }
}

@media (max-width: 767px) {

    .testimonials {
        --testimonial-card-w: 100%;
        --testimonial-pad-x: 28px;
        --testimonial-pad-y: 38px;
    }

    .testimonialsSwiper {
        overflow: visible;
        padding: 15px 0;
    }

    .testimonialsSwiper .swiper-wrapper {
        display: flex;
        flex-direction: row;
    }

    .testimonialsSwiper .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
        height: auto;
        flex-shrink: 0;
    }

    .testimonial-card {
        min-height: 360px;
        text-align: center;
        border-right: none !important;
        border: 1px solid #eef0f3;
        box-shadow: 0 10px 30px rgba(17, 22, 37, 0.06);
    }

    .testimonial-text p {
        margin-bottom: 28px;
    }

    .testimonial-author {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .author-info {
        align-items: center;
    }

    .author-info p,
    .author-title {
        white-space: normal;
        text-overflow: clip;
    }

    .testimonials-controls {
        margin-top: 24px;
        gap: 18px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 479px) {

    .testimonials-header {
        margin-bottom: 28px;
        padding: 0 16px;
    }

    .testimonials {
        --testimonial-pad-x: 20px;
        --testimonial-pad-y: 28px;
    }

    .testimonials-wrapper {
        padding: 0 18px;
    }

    .testimonialsSwiper {
        padding: 8px 0;
    }

    .testimonial-card {
        min-height: 300px;
    }

    .quote-icon {
        margin-bottom: 12px;
    }

    .testimonial-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .testimonial-author img {
        width: 38px;
        height: 38px;
    }

    .author-info p {
        font-size: 15px;
    }

    .author-title {
        font-size: 12px;
    }

    .testimonials-controls {
        margin-top: 18px;
        gap: 14px;
    }

    .testimonials-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .testimonials-pagination .swiper-pagination-bullet-active {
        width: 18px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .testimonials-bg-hexagon {
        width: 160px;
        top: -30px;
        right: -20px;
    }
}

/* ==========================================================
    11. MOSAIC IMAGE GALLERY
    ========================================================== */
.mosaic-gallery {
    background-color: #F5F9FF;
    position: relative;
    overflow: hidden;
}

.mosaic-content {
    width: 100%;
    height: 750px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mosaic-center-content {
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.mosaic-center-content h2 {
    font-size: 42px;
    color: #0b0c10;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.mosaic-cards {
    position: absolute;
    inset: 0;
}

.mosaic-card {
    position: absolute;
    width: 245px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    background-color: #f7f9fa;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: mosaicSwing 4s ease-in-out infinite;
}

.mosaic-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.mosaic-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108%;
    height: 108%;
    object-fit: cover;
    filter: grayscale(100%) brightness(106%) opacity(0.35);
    transform: translate(-50%, -50%);
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
    animation: mosaicShake 4s ease-in-out infinite;
    animation-fill-mode: backwards;
}

.mosaic-card:hover {
    z-index: 12;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.mosaic-card:hover img {
    animation: none;
    filter: none;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .mosaic-card {
        animation: none;
    }

    .mosaic-card img {
        animation: none;
        transform: translate(-50%, -50%);
    }
}

.mosaic-card:nth-child(1) { top: 7%; left: 9%; --swing: 14deg; }
.mosaic-card:nth-child(2) { top: 10%; left: 31%; --swing: -6deg; }
.mosaic-card:nth-child(3) { top: 10%; right: 31%; --swing: 6deg; }
.mosaic-card:nth-child(4) { top: 7%; right: 9%; --swing: -14deg; }
.mosaic-card:nth-child(5) { top: 48%; left: 9%; --swing: -10deg; }
.mosaic-card:nth-child(6) { bottom: 6%; left: 30%; --swing: 8deg; }
.mosaic-card:nth-child(7) { bottom: 6%; right: 30%; --swing: -6deg; }
.mosaic-card:nth-child(8) { top: 44%; right: 9%; --swing: -12deg; }

@keyframes mosaicSwing {
    0%, 100% { transform: rotate(var(--swing)); }
    50% { transform: rotate(0deg); }
}

.mosaic-card:nth-child(1) img { animation-delay: 0s; }
.mosaic-card:nth-child(2) img { animation-delay: 0.4s; }
.mosaic-card:nth-child(3) img { animation-delay: 0.8s; }
.mosaic-card:nth-child(4) img { animation-delay: 1.2s; }
.mosaic-card:nth-child(5) img { animation-delay: 1.6s; }
.mosaic-card:nth-child(6) img { animation-delay: 2s; }
.mosaic-card:nth-child(7) img { animation-delay: 2.4s; }
.mosaic-card:nth-child(8) img { animation-delay: 2.8s; }

@keyframes mosaicShake {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(1deg); }
}

@media (max-width: 1024px) {
    .mosaic-gallery {
        padding: 80px 0;
    }

    .mosaic-content {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .mosaic-center-content {
        margin-bottom: 20px;
        pointer-events: auto;
    }

    .mosaic-cards {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
    }

    .mosaic-center-content h2 {
        font-size: clamp(28px, 4vw, 38px);
    }

    .mosaic-card {
        position: static;
        width: 100%;
        max-width: none;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .mosaic-gallery {
        padding: 60px 0;
    }

    .mosaic-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mosaic-card {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .mosaic-gallery {
        padding: 40px 0;
    }

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

    .mosaic-card {
        max-width: none;
        width: 100%;
    }
}

/* ==========================================================
    12. FAQ SECTION
    ========================================================== */
.faq-layout {
    background-color: #F5F9FF;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.faq-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1921px;
    height: 707px;
    object-fit: cover;
    opacity: 100%;
    z-index: 1;
    pointer-events: none;
}

.faq-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    width: 60%;
}

.faq-content h2 {
    font-size: 35px;
    font-weight: 400;
    color: #0b0c10;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid #e0e6ed;
    width: 100%;
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #e0e6ed;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b0c10;
    margin: 0;
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: #0b0c10;
    user-select: none;
    line-height: 1;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #555c66;
    margin-top: 14px;
    max-width: 80%;
}

/* ==========================================================
    12. FAQ SECTION - RESPONSIVE
   ========================================================== */

/* ---------- 1024px and below (tablets/small laptops) ---------- */
@media (max-width: 1024px) {
    .faq-bg-img {
        width: 1400px;
        height: 520px;
    }

    .faq-content {
        width: 100%;
    }

    .faq-content h2 {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .faq-header h3 {
        font-size: 15px;
    }

    .faq-body p {
        max-width: 90%;
    }
}

/* ---------- 768px and below (tablets/large phones) ---------- */
@media (max-width: 768px) {
    .faq-layout {
        min-height: auto;
    }

    .faq-bg-img {
        width: 1024px;
        height: 400px;
        top: 0;
    }

    .faq-content {
        width: 100%;
    }

    .faq-content h2 {
        font-size: 26px;
        margin-bottom: 40px;
        letter-spacing: normal;
    }

    .faq-item {
        padding: 20px 0;
    }

    .faq-header {
        gap: 14px;
    }

    .faq-header h3 {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-body p {
        font-size: 13px;
        max-width: 100%;
    }
}

/* ---------- 480px and below (mobile phones) ---------- */
@media (max-width: 480px) {
    .faq-bg-img {
        width: 700px;
        height: 260px;
    }

    .faq-content {
        width: 100%;
    }

    .faq-content h2 {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .faq-item {
        padding: 16px 0;
    }

    .faq-header {
        gap: 10px;
        align-items: flex-start;
    }

    .faq-header h3 {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .faq-body p {
        font-size: 13px;
        margin-top: 10px;
        max-width: 100%;
    }
}

/* ==========================================================
    13. WALK THE SKY CTA SECTION
    ========================================================== */
.walk-sky-cta {
    position: relative;
    width: 100%;
    background-color: #121D39;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.CTA-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 16, 0.2);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    width: 53%;
}

.cta-content h2 {
    font-size: 140px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    font-family: var( --font-semibold);

}

.cta-content span {
    color: #a2d2ff;
    display: inline-block;
}

.cta-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cta-content a {
    --color: #043357;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: var(--color) !important;
    text-decoration: none;
    font-size: var(--fs-nav);
    border: 2px solid var(--color);
    border-radius: var(--radius-btn);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: var(--font-helvetica-bold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.cta-content a span {
    font-size: var(--fs-nav);
    line-height: 1;
    position: relative;
    z-index: 1;
    display: inline-flex;
    color: inherit;
    transition: transform 0.3s ease-in-out;
}

.cta-content a:hover span {
    transform: translateX(4px);
}

.cta-content a:hover {
    transform: scale(1.05);
    background-color: var(--dark-blue, var(--color));
    border-color: var(--dark-blue, var(--color));
    color: #ffffff !important;
}

.cta-content a:hover .icon {
    transform: translate(4px);
}

.cta-content a::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.cta-content a:hover::before {
    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% { left: -100px; }
    60% { left: 100%; }
    to { left: 100%; }
}

@media (max-width: 1482px) {
    .cta-content {
        width: 100%;
    }
 
    .cta-content h2 {
        font-size: 100px;
    }
}
 
@media (max-width: 1024px) {
    .cta-content {
        width: 100%;
    }
 
    .cta-content h2 {
        font-size: 90px;
    }
 
    .cta-content p {
        font-size: 13px;
    }
}
 
@media (max-width: 768px) {
    .cta-content {
        width: 100%;
    }
 
    .cta-content h2 {
        font-size: 52px;
        letter-spacing: 1px;
    }
}
 
@media (max-width: 480px) {
    .cta-content {
        width: 100%;
    }
 
    .cta-content h2 {
        font-size: 34px;
    }
 
    .cta-content p {
        font-size: 12px;
    }
 
}


/* ==========================================================
   14. FOOTER
   ========================================================== */
.site-footer {
    background-color: #043357;
    position: relative;
    overflow: hidden;
    font-family: 'Helvetica', sans-serif;
    box-sizing: border-box;
}

.site-footer * {
    box-sizing: border-box;
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 20px;
    gap: 20px;
}

.footer-brand {
    flex: 0 0 254px;
    max-width: 254px;
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-text p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin-bottom: 15px;
}

.brand-tagline p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #A7D9FF;
    text-transform: uppercase;
}

.footer-divider {
    flex: 0 0 1px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 10px;
}

.footer-links-grid {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 75px;
    padding-left: 100px;
}

.footer-col {
    min-width: 0;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #A7D9FF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-col ul li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    text-decoration: none;
    line-height: 1.6;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: #A7D9FF;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-col ul li a:hover::before {
    transform: translateY(-50%) scale(1);
}

.contact-info p,
.contact-info a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 5px;
    width: 67%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 14px;
    color: #ffffff;
}

.social-icons a:hover {
    background-color: #ffffff;
}

.social-icons a:hover i {
    color: #0a2540; 
}

.footer-watermark-text {
    overflow: hidden;
}

.footer-watermark-text p {
    border-top: 1px solid rgba(255, 255, 255, 20%);
    display: block;
    width: 100%;
    text-align: center;
    font-size: 87px;
    line-height: 1.15;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgb(167 217 255 / 20%);
    margin: 40px auto 25px auto;
    overflow-wrap: break-word;
    animation: watermarkGlow 6s ease-in-out infinite,
        watermarkDrift 18s ease-in-out infinite;
}

@keyframes watermarkGlow {

    0%,
    100% {
        -webkit-text-stroke-color: rgb(167 217 255 / 20%);
    }

    50% {
        -webkit-text-stroke-color: rgb(167 217 255 / 45%);
    }
}

@keyframes watermarkDrift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-2%);
    }
}

.footer-watermark-text p span {
    font-size: 0.7em;
    vertical-align: middle;
    margin: 0 10px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 20%);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    gap: 10px;
}

.footer-bottom-bar p {
    margin: 0;
}

.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ----------------------------------------------------------
   TABLET (769px – 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-brand {
        flex: 0 0 200px;
        max-width: 200px;
    }

    .footer-links-grid {
        padding-left: 40px;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }

    .footer-watermark-text p {
        font-size: clamp(22px, 5.2vw, 58px);
    }
}

/* ----------------------------------------------------------
   MOBILE (≤768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 50px;
    }

    .footer-top-grid {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 10px;
    }

    .footer-brand {
        flex: none;
        width: 100%;
        max-width: 340px;
    }

    .footer-divider {
        display: none;
    }

    .footer-links-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        gap: 28px 20px;
        text-align: start;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
    }

    .footer-col:nth-child(3) {
        width: 100%;
        max-width: 320px;
    }

    .footer-watermark-text p {
        margin: 30px auto 15px auto;
        font-size: clamp(18px, 6.5vw, 38px);
        letter-spacing: 0.5px;
        white-space: normal;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ----------------------------------------------------------
   SMALL MOBILE (≤480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-watermark-text p {
        font-size: clamp(15px, 6vw, 26px);
        letter-spacing: 0.3px;
        margin: 24px auto 12px auto;
    }

    .footer-watermark-text p span {
        margin: 0 6px;
    }
}

/* ==========================================================
   15. DECORATIVE POLYGONS
   ========================================================== */
.left_polygon {
    position: absolute;
    top: -8px;
    left: -90px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    animation: polygonFloat 8s ease-in-out infinite;
}

.right_polygon {
    position: absolute;
    top: -18px;
    right: -90px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    animation: polygonFloat 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes polygonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 1024px) {
    .left_polygon {
        opacity: 2.35;
    }

    .left_polygon {
        width: 258px;
        top: -6px;
        left: -60px;
    }

    .right_polygon {
        width: 315px;
        top: 75px;
        right: -56px;
    }
}

@media (max-width: 768px) {
    .left_polygon {
        opacity: 2.35;
    }

    .left_polygon {
        top: 397px;
        left: -77px;
    }

    .right_polygon {
        top: 502px;
        right: -68px;
    }
}

@media (max-width: 480px) {
    .left_polygon {
        opacity: 2.35;
    }

    .left_polygon {
        left: -94px;
        top: 634px;
    }

    .right_polygon {
        right: -116px;
        top: 700px;
    }
}

/* ==========================================================
    16. COMMON PAGE BANNER (About, Blog, Contact, etc.)
  ============================================= */

.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #0b0c10;
    color: var(--white);
    height: 600px;
}

.page-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-banner-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.page-banner-content {
    max-width: 620px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-banner-content h1 {
    font-size: 80.93px;
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-banner-content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'ID Grotesk', sans-serif;
}

.page-banner-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
}

/* ----------------------------------------------------------
   1. PAGE BANNER 
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .page-banner {
        min-height: 30vh;
        padding-top: 90px;
        padding-bottom: 40px;
    }
 
    .page-banner .container {
        justify-content: center;
    }
 
    .page-banner-content {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
 
    .page-banner-content h1 {
        font-size: 56px;
    }
}
 
@media (max-width: 768px) {
    .page-banner {
        min-height: 24vh;
        padding-top: 80px;
        padding-bottom: 28px;
    }
 
    .page-banner-content h1 {
        font-size: 42px;
    }
 
    .page-banner-content {
        max-width: 100%;
    }
}
 
@media (max-width: 480px) {
    .page-banner {
        min-height: 20vh;
        padding-top: 70px;
        padding-bottom: 20px;
    }
 
    .page-banner-content h1 {
        font-size: 30px;
    }
 
    .page-banner-content p {
        font-size: 14px;
        margin: 0 auto;
    }
 
    .page-banner-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
    }
}
 
/* ==========================================================
    17. SKYLINE INTRO SECTION(About Us)
    ========================================================== */
.skyline {
    background-color: #F5F9FF;
    position: relative;
}

.skyline-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.skyline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.skyline-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyline-img {
    position: relative;
    width: 100%;
    max-width: 569px;
    border-radius: 4.6px;
    overflow: hidden;
    z-index: 2;
    height: 523px;
}

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

.polygon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.polygon-left {
    top: -2%;
    left: -126%;
    transform: translateY(-28%);
}

.polygon-right {
    top: 102%;
    right: -24%;
    transform: translateY(-50%);
}

.skyline-img--mobile {
    display: none;
}

/* Responsive of About Us*/

@media (max-width: 1024px) {
    .skyline-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
 
    .skyline-content {
        align-items: center;
    }
 
    .skyline-media--desktop {
        display: none !important;
    }
 
    .skyline-img--mobile {
        display: block;
        margin: 24px auto;
        width: 100%;
    }
 
    .about-display h2 {
        margin-bottom: 20px;
    }
 
    .about-display p {
        max-width: 100%;
    }
 
    .stats-row {
        justify-content: center;
        margin-top: 8px;
    }
}
 
@media (max-width: 768px) {
    .about-display h2 {
        font-size: 34px;
    }
 
    .skyline-img--mobile {
        margin: 20px auto;
    }
 
    .stats-row {
        gap: 15px;
        flex-wrap: wrap;
        row-gap: 20px;
    }
 
    .stat-divider {
        display: none;
    }
}
 
@media (max-width: 480px) {
    .skyline {
        padding: 40px 0;
    }
 
    .about-display h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
 
    .about-display p {
        font-size: 14px;
    }
 
    .skyline-img--mobile img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 4.6px;
        display: block;
    }
 
    .stats-row {
        gap: 24px 20px;
        justify-content: center;
    }
 
    .stat-number {
        font-size: 36px;
    }
}

/* ==========================================================
    18. MISSION & VISION CARDS
    ========================================================== */
.mission-vision {
    background-color: #F5F9FF;
}

.mv-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 88%;
    padding: 30px;
    border-radius: 13px;
    margin: 0 auto;
    background: #043357;
    overflow: hidden;
}

.mv-hexagon {
    position: absolute;
    top: -9px;
    left: -23px;
    z-index: 1;
    pointer-events: none;
}


.mv-card {
    position: relative;
    z-index: 2;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px 26px;
    cursor: pointer;
}

.mv-card.is-active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 51, 87, 0.22);
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #1A5585;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.mv-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #000000CC;
    font-family: 'Helvetica', sans-serif;
    font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
    .mv-card {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .mv-card:hover,
    .mv-card.is-active {
        transform: none !important;
    }
}

@media (max-width: 1024px) {
    .mv-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 85%;
    }

    .mv-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mv-wrapper {
        grid-template-columns: 1fr;
        width: 92%;
        gap: 16px;
        padding: 24px 20px;
    }
 
    .mv-card:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
 
    .mv-card {
        padding: 24px 20px;
    }
 
    .mv-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
 
    .mv-hexagon {
        width: 40px;
        height: 40px;
        top: -6px;
        left: -14px;
    }
}
 
@media (max-width: 480px) {
    .mv-wrapper {
        width: 100%;
        padding: 18px 16px;
        border-radius: 10px;
    }
 
    .mv-card {
        padding: 20px 16px;
    }
 
    .mv-card p {
        font-size: 13px;
        line-height: 1.6;
    }
 
    .mv-hexagon {
        display: none;
    }
}

/* ==========================================================
    19. FLOOR SHOWCASE SECTION (image / content / image)
    ========================================================== */
.floor-showcase {
    width: 100%;
    background-color: #F5F9FF;
    position: relative;
}

.floor-showcase+.floor-showcase {
    margin-top: -1px;
}

.floor-showcase-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 600px;
    position: relative;
}

.floor-media {
    position: relative !important;
    flex: 1 1 0;
    overflow: hidden;
    height: 600px;
}

/* ----------------------------------------------------------
    Multi-image stack
   ---------------------------------------------------------- */
.floor-media__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 0;
}

.floor-media__img.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.floor-media:hover .floor-media__img.is-active {
    transform: scale(1.04);
}

/* ----------------------------------------------------------
    Carousel nav arrows (overlaid on the image)
   ---------------------------------------------------------- */
.floor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 51px;
    height: 51px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floor-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.floor-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

.floor-arrow--prev {
    left: 24px;
}

.floor-arrow--next {
    right: 24px;
}

.floor-content {
    flex: 0 0 550px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #F5F9FF;
    text-align: center;
}

.floor-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 405px;
    position: relative;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.floor-content-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .floor-content-inner {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .floor-media__img {
        transition: none !important;
    }
}

.floor-header-text h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b0c10;
    line-height: 1.4;
    padding-top: 70px;
    padding-bottom: 30px;
    font-family: var(--font-semibold);
}

.floor-header-text p {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    font-weight: 300;
    font-family: 'Helvetica', sans-serif;
    padding-bottom: 5px;
}

.floor-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.floor-icon img {
    width: 70%;
    height: 100%;
    display: block;
    padding-top: 10px;
}

.floor-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333333;
    font-family: 'Helvetica', sans-serif;
}

.floor-connector {
    width: 65px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.floor-connector img {
    width: 100%;
    height: auto;
    display: block;
}

.floor-showcase:last-of-type .floor-connector {
    margin-bottom: 0;
}

.floor-line {
    width: 100%;
    height: 1px;
    background-color: #8A8F99;
    margin-top: 0;
}

/* ==========================================================
    RESPONSIVE — 1024px
   ========================================================== */
@media (max-width: 1024px) {
    .floor-media {
        height: 500px;
    }

    .floor-header-text h2 {
        padding: 15px;
    }

    .floor-showcase-grid {
        min-height: 500px;
    }

    .floor-content {
        flex: 0 0 380px;
        padding: 40px 24px;
    }

    .floor-content-inner {
        max-width: 100%;
    }

    .floor-arrow {
        width: 42px;
        height: 42px;
    }

    .floor-arrow--prev {
        left: 16px;
    }

    .floor-arrow--next {
        right: 16px;
    }
}

/* ==========================================================
    RESPONSIVE — 768px
   ========================================================== */
@media (max-width: 768px) {
    .floor-showcase-grid {
        flex-direction: column;
        min-height: auto;
    }

    .floor-media {
        flex: none;
        height: 320px;
    }

    /* Instead of hiding the whole right block (which also hid
       the "next" arrow living inside it), keep it as a
       transparent overlay positioned on top of the left image
       so only its arrow button remains visible/clickable. */
    .floor-media--right {
        display: block;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        background: transparent;
        overflow: visible;
        pointer-events: none;
        z-index: 3;
    }

    .floor-media--right .floor-media__img {
        display: none;
    }

    .floor-media--right .floor-arrow--next {
        pointer-events: auto;
    }

    .floor-content {
        flex: none;
        width: 100%;
        padding: 48px 16px;
    }

    .h2-break {
        display: none;
    }

    .floor-connector {
        margin-bottom: 0 !important;
    }

    .floor-arrow {
        width: 40px;
        height: 40px;
    }

    .floor-arrow--prev {
        left: 14px;
    }

    .floor-arrow--next {
        right: 14px;
        top: 159px;
    }
}

/* ==========================================================
    RESPONSIVE — 480px
   ========================================================== */
@media (max-width: 480px) {
    .floor-media {
        flex: none;
        height: 240px;
    }

    .floor-media--right {
        height: 240px;
    }

    .floor-content {
        padding: 36px 20px;
    }

    .floor-header-text h2 {
        font-size: 17px;
        padding: 15px;
    }

    .floor-header-text p {
        font-size: 13px;
    }

    .floor-connector {
        width: 50px;
    }

    .floor-arrow {
        width: 36px;
        height: 36px;
    }

    .floor-arrow--prev {
        left: 12px;
    }

    .floor-arrow--next {
        right: 12px;
        top: 121px;
    }
}

/* ==========================================================
    20. MEDIA COVERAGE GRID
    ========================================================== */
.media-coverage {
    background-color: #F5F9FF;
    position: relative;
    overflow: hidden;
}

.media-hexagon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.media-hexagon--left {
    top: -75px;
    left: -40px;
}

.media-hexagon--right {
    bottom: 1019px;
    right: -17px;
}

.media-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-grid-blog {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


#media-card-blog{
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-bottom: 5px solid #1A5585;
}

#media-card-news {
   background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(11, 12, 16, 0.05);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 12, 16, 0.1);
}

.media-card:hover .media-card-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.media-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.media-source-badge {
    position: absolute;
    bottom: 10px;
    right: 0px;
    background-color: #1A5585;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 10px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-family: 'ID Grotesk', sans-serif;
    width: 144px;
}

.media-card-body {
    padding: 20px 22px 24px;
}

.media-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #0b0c10;
    margin-bottom: 10px;
    font-family: 'Helvetica', sans-serif;
}

.media-card-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
    font-family: 'ID Grotesk', sans-serif;
}

.media-card-link {
    font-size: 16px;
    font-weight: 400;
    color: #043357;
    text-decoration: none;
    transition: color 0.25s ease;
    font-family: 'ID Grotesk', sans-serif;
}

.media-card-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .media-grid-blog {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

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

    .media-hexagon {
        display: none;
    }
}

@media(max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .media-grid-blog {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .media-hexagon {
        display: none;
    }
}

/* ==========================================================
    21. BLOG SINGLE POST
    ========================================================== */

.blog-single {
    background-color: #F5F9FF;
    position: relative;
    overflow-x: clip;
}

.blog-single-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 846px 1fr;
    gap: 24px;
    align-items: flex-start;
    margin-top: 40px;
}

.blog-main h1 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    color: #0b0c10;
    line-height: 1.3;
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e0e6ed;
}

.blog-meta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info p {
    font-size: 14px;
    font-weight: 600;
    color: #0b0c10;
    font-family: 'Helvetica', sans-serif;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #0b0c10;
    font-family: 'Helvetica', sans-serif;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666666;
    font-family: 'Helvetica', sans-serif;
}

.blog-date .icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.blog-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    color: #0b0c10;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.blog-share:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.blog-share:active {
    transform: scale(0.92);
}

.blog-share.copied::after {
    content: "Link copied";
    position: absolute;
    top: 110%;
    right: 0;
    background: #0b0c10;
    color: #ffffff;
    font-size: 11px;
    font-family: 'Helvetica', sans-serif;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    animation: blogShareFadeUp 1.8s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
}

@keyframes blogShareFadeUp {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.blog-content img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 32px;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-content img:hover {
    transform: scale(1.015);
    box-shadow: 0 12px 30px rgba(26, 85, 133, 0.15);
}

.blog-content {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;

}

.blog-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0b0c10;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 36px;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #555c66;
    font-weight: 300;
    margin-bottom: 18px;
}

.blog-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-blue);
    z-index: 999;
    transition: width 0.1s linear;
}

/* ---------- Sidebar ---------- */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b0c10;
    margin-bottom: 24px;
}

.related-blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.related-blog-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e6ed;
    border-radius: 8px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-blog-card:hover {
    transform: translateX(4px);
}

.related-blog-card:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.related-blog-thumb {
    flex: 0 0 90px;
    width: 90px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
}

.related-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-blog-card:hover .related-blog-thumb img {
    transform: scale(1.08);
}

.related-blog-info {
    flex: 1;
}

.related-blog-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #0b0c10;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.related-blog-card:hover .related-blog-info h4 {
    color: var(--primary-blue);
}

.related-blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #8a8f99;
    font-family: 'Helvetica', sans-serif;
}

.related-blog-date .icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.blog-polygon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.blog-polygon--left {
    top: 3%;
    left: 0px;
}

.blog-polygon--right {
    bottom: 86%;
    right: 0px;
}

@media (prefers-reduced-motion: reduce) {

    .blog-reveal,
    .blog-content img,
    .related-blog-card,
    .related-blog-thumb img,
    .blog-share {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

@media (max-width: 1024px) {
    .blog-single-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 56px;

    }

    .blog-sidebar {
        position: static;
    }

    .related-blog-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .related-blog-card {
        flex: 1 1 calc(50% - 10px);
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-main h1 {
        font-size: 26px;
    }

    .blog-content h2 {
        font-size: 19px;
    }

    .related-blog-card {
        flex: 1 1 100%;
    }

    .blog-polygon {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-meta-left {
        gap: 16px;
    }
}

/* ==========================================================
    22. CONTACT SECTION
    ========================================================== */
.contact-content {
    width: 100%;
    background-color: #F5F9FF;
    padding: 0 0;
}

.contact-card {
    position: relative;
    background-color: #1A5585;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    padding: 50px 60px;
    color: var(--white);
    margin: 60px 0;
}

.tower-bg {
    position: absolute;
    top: 0;
    left: 10px;
    width: 36%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 8%;
    pointer-events: none;
}

.contact-info {
    flex: 1;
}

.contact-info-content {
    padding-top: 80px;
    padding-left: 30px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
    font-family: var(--font-bold);
}

.dashed-line {
    display: block;
    width: 120px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 40px 0;
    padding: 0;
    width: 90%;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
}

.info-list li:last-child {
    border-bottom: none;
}

.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
}

.info-list a,
.info-list span {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-family: var(--font-helvetica-bold);
}

.info-list a:hover {
    text-decoration: underline;
}

.follow-us {
    margin-top: auto;
}

.contact-info .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.contact-info .social-icons a:hover {
    background-color: var(--white);
    color: #1A5686;
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 35px;
    max-width: 54%;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    align-self: center; 
}

.contact-form-container > p {
    color: #1a4d8f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-helvetica-bold);
}

.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.wpcf7-form p {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    margin-bottom: 18px;
}

.wpcf7-form p:nth-of-type(5) {
    flex: 1 1 100%;
}

.wpcf7-form p {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d9de;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: inherit;
}

.wpcf7-form textarea {
    width: 100%;
    min-height: 110px;
    padding: 10px 12px;
    border: 1px solid #d5d9de;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #a9adb3;
    font-size: 13px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #1a4d8f;
    box-shadow: 0 0 0 2px rgba(26, 77, 143, 0.15);
}

.wpcf7-form input[type="submit"] {
    background-color: #1a4d8f;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #143d70;
}

.wpcf7-form .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 576px) {
    .wpcf7-form p {
        flex: 1 1 100%;
    }
}

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

.contact-form .form-row {
    display: flex;
    gap: 16px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form .form-group.full-width {
    width: 100%;
}

.contact-form .form-group label {
    font-size: 11px;
    font-weight: 600;
    color: #555555;
    font-family: 'Helvetica', sans-serif;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Helvetica', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #C0C0C0;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #1A5686;
}

.contact-form .form-group textarea {
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    background-color: #1A5686;
    color: var(--white);
    border: none;
    padding: 10px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    margin-top: 5px;
    font-family: 'Helvetica', sans-serif;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #134268;
}

.find-us-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.find-us-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d8f;
    margin-bottom: 25px;
}

.find-us-map {
    position: relative;
    width: 100%;
    height: 584px;          
    border-radius: 10px;
    overflow: hidden;      
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.find-us-map iframe,
.find-us-map > div {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .find-us-map {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .find-us-map {
        height: 180px;
    }
}

/* Responsive of ContactUs */

@media (max-width: 1024px) {

    .contact-info-content {
        padding-top: 50px;
        padding-left: 20px;
    }

    .info-list {
        width: 100%;
    }

    .contact-form-container {
        max-width: 62%;
        padding: 26px 30px;
    }

    .find-us-map {
        height: 420px;
    }
}

@media (max-width: 768px) {

    .contact-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .tower-bg {
        width: 100%;
        height: 546px;
        left: -3px;
    }

    .contact-info-content {
        padding-top: 0;
        padding-left: 0;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .dashed-line {
        margin-bottom: 20px;
    }

    .info-list {
        width: 100%;
        gap: 14px;
        margin-bottom: 30px;
    }

    .info-list a,
    .info-list span {
        font-size: 13px;
    }

    .icon-box {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .follow-us {
        margin-top: 10px;
    }

    .contact-info .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .contact-form-container {
        max-width: 100%;
        width: 100%;
        padding: 24px 22px;
        align-self: stretch; 
    }

    .contact-form-container > p {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .wpcf7-form p {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .find-us-map {
        height: 300px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {

    .tower-bg {
        width: 127%;
        height: 580px;
        left: -68px;
    }

    .contact-content {
        padding: 24px 0;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .dashed-line {
        width: 90px;
        margin-bottom: 16px;
    }

    .info-list {
        gap: 12px;
        margin-bottom: 24px;
    }

    .info-list li {
        gap: 10px;
        padding-bottom: 10px;
    }

    .info-list a,
    .info-list span {
        font-size: 12px;
    }

    .icon-box {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .contact-info .social-icons {
        gap: 10px;
    }

    .contact-form-container {
        padding: 18px 16px;
        border-radius: 8px;
    }

    .contact-form-container > p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .wpcf7-form p {
        margin-bottom: 12px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 9px 10px;
        font-size: 13px;
    }

    .wpcf7-form input[type="submit"] {
        width: 100%;
        padding: 11px 20px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 13px;
        padding: 9px 10px;
    }

    .submit-btn {
        padding: 10px 24px;
        font-size: 12px;
    }

    .find-us-map {
        height: 200px;
    }
}

/* ==========================================================
    22. FLOOR DETAIL SECTION (Single Service)
    ========================================================== */
.floor-detail {
    width: 100%;
    background-color: #F5F9FF;
}

.floor-detail-header {
    max-width: 620px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.floor-detail-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A5585;
    font-family: 'Helvetica', sans-serif;
}

.floor-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.floor-detail-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.floor-detail-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e6ed;
    margin-bottom: 24px;
}

.floor-detail-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b0c10;
    margin: 0 0 16px;
    font-family: 'Helvetica', sans-serif;
}

.floor-detail-text {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    font-weight: 300;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.floor-detail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.floor-detail-images figure {
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
}

.floor-detail-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
}

.floor-detail-images figure:hover img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .floor-detail-images img {
        transition: none !important;
    }
}
/* ============================
   1024px and below
   ============================ */
@media (max-width: 1024px) {
    .floor-detail {
        padding: 16px 20px;
    }

    .floor-detail-header {
        max-width: 560px;
        margin: 0 auto 32px;
    }

    .floor-detail-images {
        max-width: 900px;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .floor-detail-images .floor-detail-image img {
        height: 260px;
    }
}

/* ============================
   768px and below
   ============================ */
@media (max-width: 768px) {
    .floor-detail {
        padding: 16px 16px 10px;
    }

    .floor-detail-header {
        max-width: 100%;
        margin: 0 auto 28px;
    }

    .floor-detail-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .floor-detail-icon img {
        width: 18px;
        height: 18px;
    }

    .floor-detail-divider {
        margin-bottom: 20px;
    }

    .floor-detail-title {
        font-size: 16px;
        margin: 0 0 12px;
    }

    .floor-detail-text {
        font-size: 13px;
        line-height: 1.65;
    }

    .floor-detail-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .floor-detail-images .floor-detail-image {
        border-radius: 10px;
        overflow: hidden;
    }

    .floor-detail-images .floor-detail-image img {
        max-height: 300px;
    }
}

/* ============================
   480px and below
   ============================ */
@media (max-width: 480px) {
    .floor-detail {
        padding: 12px 8px;
    }

    .floor-detail-header {
        margin: 0 auto 24px;
    }

    .floor-detail-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .floor-detail-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .floor-detail-icon img {
        width: 16px;
        height: 16px;
    }

    .floor-detail-divider {
        margin-bottom: 16px;
    }

    .floor-detail-title {
        font-size: 15px;
        margin: 0 0 10px;
    }

    .floor-detail-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .floor-detail-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .floor-detail-images .floor-detail-image img {
        max-height: 260px;
    }
}

/* ==========================================================
   23. OFFER INTRO (welcome text + promo photo)
   ========================================================== */
.fee-offer-section {
    width: 100%;
    background-color: #F5F9FF;
    padding: 70px 0 40px;
}

.fee-offer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.fee-offer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 524px;
}

.fee-offer-left h2 {
    font-size: 70px;
    font-weight: 400;
    color: #111625;
    line-height: 1.15;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.fee-offer-left h2 .highlight-blue {
    color: #111625;
}

.fee-offer-left p {
    font-size: 16px;
    line-height: 24px;
    color: #2E353C;
    padding: 12px 0;
    line-spacing: -1%;
    font-weight: 400;
}

.fee-offer-left span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1A5585;
    font-family: var(--font-helvetica-bold);
}

.fee-offer-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.fee-offer-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================
    ENTRY FEE CARD
   ========================================================== */
.entry-fee-section {
    width: 100%;
    background-color: #F5F9FF;
    padding: 20px 0 80px;
}

.entry-fee-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 45px 50px;
    box-shadow: 0 4px 20px rgba(4, 51, 87, 0.08);
}

.entry-fee-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 14px 0 14px;
}

.entry-fee-content ul {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry-fee-content ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.entry-fee-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000000;
}

.entry-fee-content ul li strong {
    font-weight: 700;
    color: #0b0c10;
}

.entry-fee-content ul li span {
    text-decoration: line-through;
    color: #999999;
    font-weight: 400;
}

.entry-fee-content p {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
}

@media (max-width: 1024px) {
    .fee-offer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .fee-offer-left {
        display: contents;
    }

    .fee-offer-left .badge {
        order: 1;
    }

    .fee-offer-left h2 {
        order: 2;
        width: 100%;
        font-size: 34px;
    }

    .fee-offer-media {
        order: 3;
        max-width: 460px;
        width: 100%;
    }

    .fee-offer-left > *:not(.badge):not(h2) {
        order: 4;
    }

    .fee-offer-left p,
    .fee-offer-left span {
        max-width: 100%;
    }

    .entry-fee-section {
        padding: 20px 0 60px;
    }

    .entry-fee-card {
        padding: 40px 45px;
    }

    .entry-fee-content h3 {
        font-size: 15px;
        margin: 12px 0 12px;
    }

    .entry-fee-content ul li {
        font-size: 13.5px;
    }

    .entry-fee-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .fee-offer-section {
        padding: 40px 0 24px;
    }

    .fee-offer-grid {
        gap: 0px;
    }

    .fee-offer-left h2 {
        font-size: 28px;
    }

    .fee-offer-left p {
        font-size: 14px;
    }

    .fee-offer-left span {
        font-size: 12px;
    }

    .entry-fee-section {
        padding: 16px 0 48px;
    }

    .entry-fee-card {
        padding: 32px 24px;
        border-radius: 8px;
    }

    .entry-fee-content h3 {
        font-size: 14px;
        margin: 10px 0 10px;
    }

    .entry-fee-content ul {
        gap: 8px;
        margin: 0 0 4px;
    }

    .entry-fee-content ul li {
        font-size: 13px;
        line-height: 1.55;
        padding-left: 16px;
    }

    .entry-fee-content ul li::before {
        width: 4px;
        height: 4px;
        top: 7px;
    }

    .entry-fee-content p {
        font-size: 13.5px;
        margin-top: 16px;
    }
}


@media (max-width: 480px) {
    .fee-offer-section {
        padding: 30px 0 16px;
    }

    .fee-offer-grid {
        gap: 16px;
    }

    .fee-offer-left h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .fee-offer-media {
        max-width: 100%;
    }

    .entry-fee-section {
        padding: 12px 0 32px;
    }

    .entry-fee-card {
        padding: 24px 18px;
        border-radius: 8px;
    }

    .entry-fee-content h3 {
        font-size: 13px;
        margin: 8px 0 8px;
    }

    .entry-fee-content ul {
        gap: 6px;
    }

    .entry-fee-content ul li {
        font-size: 12.5px;
        line-height: 1.5;
        padding-left: 14px;
    }

    .entry-fee-content p {
        font-size: 13px;
        margin-top: 12px;
    }
}


/* ==========================================================
    24. 404 ERROR PAGE
    ========================================================== */

.error-404.not-found {
    width: 100%;
    background-color: #F5F9FF;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.error-404 .page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.error-404 .page-header::before {
    content: "404";
    display: block;
    font-size: clamp(90px, 14vw, 220px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 85, 133, 0.15);
    margin-bottom: -10px;
    font-family: 'Helvetica', sans-serif;
}

.error-404 .page-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: #0b0c10;
    line-height: 1.3;
    max-width: 640px;
    margin: 0 auto;
}

.error-404 .page-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-404 .page-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    font-family: 'ID Grotesk', sans-serif;
    margin-bottom: 36px;
}

/* ----------------------------------------------------------
    Search form
   ---------------------------------------------------------- */
.error-404 .search-form {
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: var(--radius-btn, 6px);
    box-shadow: 0 4px 20px rgba(4, 51, 87, 0.08);
    overflow: hidden;
}

.error-404 .search-form label {
    flex: 1;
    margin: 0;
}

.error-404 .search-form .search-field {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Helvetica', sans-serif;
    color: #333333;
    background: transparent;
}

.error-404 .search-form .search-field::placeholder {
    color: #a9adb3;
}

.error-404 .search-form .search-submit {
    border: none;
    background-color: #1A5585;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 26px;
    cursor: pointer;
    font-family: 'Helvetica', sans-serif;
    transition: var(--transition, all 0.3s ease-in-out);
}

.error-404 .search-form .search-submit:hover {
    background-color: #043357;
}

/* ----------------------------------------------------------
    Widgets (recent posts / categories / archives / tag cloud)
   ---------------------------------------------------------- */
.error-404 .widget {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(4, 51, 87, 0.06);
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.error-404 .widget-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1A5585;
    margin-bottom: 20px;
    font-family: 'Helvetica', sans-serif;
}

.error-404 .widget_recent_entries ul,
.error-404 .widget_categories ul,
.error-404 .widget_archive ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.error-404 .widget_recent_entries li,
.error-404 .widget_categories li,
.error-404 .widget_archive li {
    border-bottom: 1px solid #e0e6ed;
    padding: 12px 0;
}

.error-404 .widget_recent_entries li:last-child,
.error-404 .widget_categories li:last-child,
.error-404 .widget_archive li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.error-404 .widget_recent_entries li a,
.error-404 .widget_categories li a,
.error-404 .widget_archive li a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
    transition: color 0.25s ease;
}

.error-404 .widget_recent_entries li a:hover,
.error-404 .widget_categories li a:hover,
.error-404 .widget_archive li a:hover {
    color: #1A5585;
}

.error-404 .widget_categories .post-date,
.error-404 .widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    color: #8a8f99;
    margin-top: 4px;
}

.error-404 .widget_archive select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d9de;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    font-family: 'Helvetica', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.error-404 .widget_archive select:focus {
    border-color: #1A5585;
}

.error-404 .widget_archive p {
    font-size: 13px;
    color: #666666;
    margin-top: 12px;
    font-family: 'ID Grotesk', sans-serif;
}

.error-404 .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.error-404 .tagcloud a {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px !important;
    background-color: #F5F9FF;
    border: 1px solid #dbe6f2;
    border-radius: 20px;
    color: #1A5585 !important;
    text-decoration: none;
    font-size: 13px !important;
    font-family: 'Helvetica', sans-serif;
    transition: all 0.25s ease;
}

.error-404 .tagcloud a:hover {
    background-color: #1A5585;
    border-color: #1A5585;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .error-404.not-found {
        padding: 130px 0 60px;
    }

    .error-404 .page-header::before {
        font-size: clamp(70px, 22vw, 140px);
    }

    .error-404 .widget {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .error-404 .search-form {
        flex-direction: column;
        border-radius: 10px;
    }

    .error-404 .search-form .search-submit {
        width: 100%;
    }

    .error-404 .page-header::before {
        font-size: clamp(56px, 26vw, 100px);
    }
}