<style>

/* =========================================
   PREMIUM TRANSPARENT HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    z-index: 9999;

    padding: 0;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


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

.header-container {
    width: 94%;
    max-width: 1500px;

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    white-space: nowrap;

    background: transparent !important;
}


/* =========================================
   LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    margin-right: 45px;

    background: transparent !important;
}

.site-logo img {
    width: 145px;
    height: auto;

    display: block;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    height: 100%;

    flex: 1;

    background: transparent !important;
}

.main-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: #ffffff !important;

    font-size: 17px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.1px;

    white-space: nowrap;
    text-decoration: none;

    transition: all 0.3s ease;
}


/* =========================================
   NAV HOVER
========================================= */

.main-navigation a:not(.header-enquire):hover {
    color: #ffffff !important;
}


/* =========================================
   NAV UNDERLINE
========================================= */

.main-navigation a:not(.header-enquire)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #ffffff;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.main-navigation a:not(.header-enquire):hover::after {
    width: 100%;
}


/* =========================================
   ENQUIRE NOW BUTTON
========================================= */

.header-enquire {
    height: 36px;

    padding: 0 20px;

    display: inline-flex !important;

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

    background: #0878C1 !important;

    color: #ffffff !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    border: none;

    transition: all 0.3s ease;
}

.header-enquire:hover {
    background: #05649F !important;
    color: #ffffff !important;
}


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

.mobile-menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    padding: 0;

    background: transparent !important;

    border: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 22px;
    height: 1.5px;

    background: #ffffff;

    transition: all 0.3s ease;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-navigation {
    display: none;

    position: absolute;

    top: 60px;
    left: 0;

    width: 100%;

    padding: 20px 25px 25px;

    background: rgba(4, 28, 43, 0.96) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    flex-direction: column;

    gap: 0;

    z-index: 9998;
}


/* =========================================
   MOBILE LINKS
========================================= */

.mobile-navigation a {
    display: block;

    padding: 14px 5px;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition: 0.3s ease;
}

.mobile-navigation a:hover {
    color: #C6A15B !important;
}


/* =========================================
   MOBILE ENQUIRE
========================================= */

.mobile-navigation .mobile-enquire {
    margin-top: 15px;

    padding: 13px 20px;

    background: #0878C1 !important;

    color: #ffffff !important;

    text-align: center;

    border: none !important;
}


/* =========================================
   OPEN MOBILE MENU
========================================= */

.mobile-navigation.active {
    display: flex;
}


/* =========================================
   HERO SECTION
   HEADER SITS OVER VIDEO
========================================= */

.hero-section {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
}


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

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    z-index: 0;
}


/* =========================================
   HERO VIDEO OVERLAY
========================================= */

.hero-video-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(4, 28, 43, 0.18);

    pointer-events: none;

    z-index: 1;
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .header-container {
        width: 92%;
    }

    .site-logo img {
        width: 150px;
    }

    .main-navigation {
        gap: 30px;
    }
}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1200px) {

    .header-container {
        width: 92%;
    }

    .site-logo {
        margin-right: 25px;
    }

    .site-logo img {
        width: 125px;
    }

    .main-navigation {
        gap: 17px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-enquire {
        padding: 0 15px;
        font-size: 13px !important;
    }
}


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

@media (max-width: 767px) {

    .site-header {
        height: 60px;
    }

    .header-container {
        width: 90%;
        height: 60px;

        background: transparent !important;
    }


    /* -----------------------------------------
       LOGO
    ----------------------------------------- */

    .site-logo {
        margin-right: 0;
    }

    .site-logo img {
        width: 120px;
    }


    /* -----------------------------------------
       HIDE DESKTOP NAVIGATION
    ----------------------------------------- */

    .main-navigation {
        display: none !important;
    }


    /* -----------------------------------------
       SHOW HAMBURGER
    ----------------------------------------- */

    .mobile-menu-btn {
        display: flex !important;
    }


    /* -----------------------------------------
       MOBILE MENU
    ----------------------------------------- */

    .mobile-navigation {
        top: 60px;
    }


    /* -----------------------------------------
       MOBILE HERO
    ----------------------------------------- */

    .hero-section {
        height: 100svh;

        min-height: 600px;

        position: relative;
    }

    .hero-video {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center center;
    }
}


/* =========================================
   HAMBURGER → X
========================================= */

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* =========================================
   FORCE HERO BEHIND TRANSPARENT HEADER
========================================= */

.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 70px !important;

    background: transparent !important;
    background-color: transparent !important;

    border: none !important;
    box-shadow: none !important;

    z-index: 99999 !important;
}


/* Move hero underneath the header */

.hero-section {
    position: relative !important;

    width: 100% !important;

    margin-top: -70px !important;
    padding-top: 0 !important;

    height: calc(100vh + 70px) !important;
    min-height: 720px !important;

    overflow: hidden !important;
}


/* Video fills the complete hero */

.hero-video {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block !important;

    z-index: 0 !important;
}


/* Overlay */

.hero-video-overlay {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(4, 28, 43, 0.18);

    z-index: 1 !important;

    pointer-events: none;
}


/* =========================================
   MOBILE HERO - GAP FIX
========================================= */

@media (max-width: 767px) {

    .site-header {
        height: 60px !important;
    }

    .hero-section {
        position: relative !important;
        width: 100% !important;
        height: 100svh !important;
        min-height: 600px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .hero-video-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .hero-section + section {
        margin-top: 0 !important;
    }
}


/* =========================================
   SPACE BETWEEN HERO & SPECIFICATIONS
========================================= */

#home {
    margin-bottom: 50px !important;
}


/* =========================================
   SECOND SECTION CONTENT POSITION
========================================= */

#home + section {
    margin-top: 0 !important;
    padding-top: 35px !important;
}


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

@media (max-width: 767px) {

    #home {
        margin-bottom: 20px !important;
    }

    #home + section {
        padding-top: 25px !important;
    }

}
/* =========================================================
   G SQUARE CITY — PROJECT SPECIFICATIONS
========================================================= */

.project-specifications {
    width: 100%;
    background: #03253D;
    color: #ffffff;
    padding: 55px 20px 45px;
    box-sizing: border-box;
    overflow: hidden;
}


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

.specifications-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   TITLE
========================================================= */

.specifications-title {
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
}

.specifications-title h2 {
    margin: 0;
    padding: 0;

    font-family: inherit;
    font-size: 24px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 1px;

    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================================
   MAIN ROW
========================================================= */

.specifications-grid {
    width: 100%;

    display: grid;

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

    align-items: stretch;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SPECIFICATION ITEM
========================================================= */

.spec-item {
    height: 165px;
    min-height: 165px;

    padding: 0 25px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    box-sizing: border-box;

    border-right: 1px solid rgba(255,255,255,0.22);
}


/* =========================================================
   ICON
========================================================= */

.spec-icon {
    width: 45px;
    height: 45px;

    margin: 0 0 7px;

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

    position: relative;

    flex-shrink: 0;

    color: #D5A72A;
}


.spec-icon svg {
    width: 35px;
    height: 35px;

    display: block;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 2px rgba(213,167,42,0.35));
}


/* =========================================================
   GOLD DOT
========================================================= */

.spec-icon::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    top: 1px;
    right: 1px;

    border-radius: 50%;

    background: #E8C66A;

    box-shadow:
        0 0 6px rgba(232,198,106,0.8);
}


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

.spec-content {
    width: 100%;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    flex-shrink: 0;
}


/* =========================================================
   NUMBER
========================================================= */

.spec-content strong {
    display: block;

    margin: 0;

    color: #D9A72B;

    font-size: 29px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.2px;

    white-space: nowrap;

    text-align: center;
}


/* =========================================================
   LABEL
========================================================= */

.spec-content span {
    display: block;

    margin-top: 7px;

    color: rgba(255,255,255,0.92);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.3;

    letter-spacing: 0.7px;

    text-align: center;

    white-space: normal;
}


/* =========================================================
   CENTER LOGO
========================================================= */

.spec-brand {
    height: 165px;
    min-height: 165px;

    padding: 0 25px;

    display: flex;

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

    box-sizing: border-box;

    border-right: 1px solid rgba(255,255,255,0.22);

    text-align: center;
}


/* =========================================================
   REAL LOGO
========================================================= */

.spec-brand-logo {
    display: block;

    width: 220px;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   REMOVE LAST BORDER
========================================================= */

.spec-item:last-child {
    border-right: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .project-specifications {
        padding: 50px 20px 40px;
    }

    .specifications-title {
        margin-bottom: 25px;
    }

    .specifications-title h2 {
        font-size: 21px;
    }

    .specifications-grid {
        grid-template-columns:
            1fr
            1fr
            1.15fr
            1fr
            1fr;
    }

    .spec-item,
    .spec-brand {
        height: 145px;
        min-height: 145px;
    }

    .spec-item {
        padding: 0 12px;
    }

    .spec-brand {
        padding: 0 15px;
    }

    .spec-brand-logo {
        width: 175px;
    }

    .spec-icon {
        width: 38px;
        height: 38px;
    }

    .spec-icon svg {
        width: 30px;
        height: 30px;
    }

    .spec-content strong {
        font-size: 24px;
    }

    .spec-content span {
        font-size: 13px;
    }
}


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

@media (max-width: 767px) {

    .project-specifications {
        padding: 50px 18px 45px;
    }

    .specifications-container {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
    }

    .specifications-title {
        margin-bottom: 30px;
    }

    .specifications-title h2 {
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: 0.6px;
    }

    .specifications-grid {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
    }


    /* LOGO FIRST */

    .spec-brand {
        order: -1;

        width: 100%;

        height: auto;
        min-height: auto;

        padding: 5px 0 25px;

        margin-bottom: 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,0.18);
    }

    .spec-brand-logo {
        width: 195px;
        max-width: 75%;

        margin: 0 auto;
    }


    /* ITEMS */

    .spec-item {
        width: 100%;

        height: 105px;
        min-height: 105px;

        padding: 12px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,0.18);

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .spec-item:last-child {
        border-bottom: none;
    }


    /* ICON */

    .spec-icon {
        width: 35px;
        height: 35px;

        margin-bottom: 5px;
    }

    .spec-icon svg {
        width: 28px;
        height: 28px;
    }


    /* NUMBER */

    .spec-content strong {
        font-size: 23px;
    }


    /* LABEL */

    .spec-content span {
        margin-top: 5px;

        font-size: 13px;

        line-height: 1.25;

        letter-spacing: 0.5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .project-specifications {
        padding: 45px 15px;
    }

    .specifications-title h2 {
        font-size: 17px;
    }

    .spec-brand-logo {
        width: 175px;
    }

    .spec-item {
        height: 95px;
        min-height: 95px;
    }

    .spec-content strong {
        font-size: 21px;
    }

    .spec-content span {
        font-size: 12px;
    }
}
/* =========================================
   WHY CHOOSE G SQUARE CITY
========================================= */

.why-choose-section {
    width: 100%;
    background: #ffffff;
    padding: 22px 15px 25px;
    font-family: "Poppins", sans-serif;
}

.why-choose-container {
    width: 100%;
    max-width: 900px; /* reduced from 1140px */
    margin: 0 auto;
}


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

.why-choose-heading {
    text-align: center;
    margin-bottom: 18px;
}

.why-choose-heading h2 {
    margin: 0;

    color: #082b52;

    font-size: 19px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.25px;
}

.why-choose-heading p {
    margin: 4px 0 0;

    color: #777777;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 400;
}


/* =========================================
   CARD GRID
========================================= */

.why-choose-grid {
    display: grid;

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

    gap: 10px;
}


/* =========================================
   CARD
========================================= */

.why-card {
    position: relative;

    min-height: 240px;

    padding: 11px 13px 10px;

    background: #ffffff;

    border: 1px solid #dfe2e5;

    border-radius: 6px;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.055);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.why-card:hover {
    transform: translateY(-3px);

    border-color: #bfc8d2;

    box-shadow: 0 7px 18px rgba(0, 39, 78, 0.10);
}


/* =========================================
   ICON
========================================= */

.why-icon {
    width: 100%;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 7px;
}

.why-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    font-size: 22px;
    color: #082b52;
    display: inline-block;
}


/* =========================================
   CARD TITLE
========================================= */

.why-card h3 {
    margin: 0 0 7px;

    color: #082b52;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0;

    white-space: nowrap;
}

.why-card h3 span {
    margin-right: 3px;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.why-card p {
    margin: 0;

    color: #686868;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================
   EXPLORE
========================================= */

.why-card a {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    width: fit-content;

    color: #082b52;

    font-size: 9px;

    line-height: 1;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: 0.15px;

    padding-top: 8px;
}

.why-card a span {
    display: inline-block;

    font-size: 11px;

    line-height: 8px;

    transition: transform 0.2s ease;
}

.why-card:hover a span {
    transform: translateX(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 35px 20px;
    }

    .why-choose-heading h2 {
        font-size: 22px;
    }

    .why-choose-heading p {
        font-size: 10px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .why-card {
        min-height: 165px;
    }

    .why-icon i {
        font-size: 24px;
    }

}


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

@media (max-width: 600px) {

    .why-choose-section {
        padding: 30px 15px;
    }

    .why-choose-heading {
        margin-bottom: 20px;
    }

    .why-choose-heading h2 {
        font-size: 20px;
    }

    .why-choose-heading p {
        font-size: 9px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        min-height: 155px;

        padding: 15px 13px 12px;
    }

    .why-icon {
        height: 30px;
        margin-bottom: 8px;
    }

    .why-icon i {
        font-size: 23px;
    }

    .why-card h3 {
        font-size: 9px;
    }

    .why-card p {
        font-size: 8px;
        line-height: 1.5;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 240px;
    }

}

/* =========================================
   PREMIUM PLOT INFORMATION
   BACKGROUND KEPT EXACTLY THE SAME
========================================= */

.plot-info-section {
    width: 100%;
    padding: 60px 20px 70px;

    /* SAME BACKGROUND */
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,255,255,0.95),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #edf7ff 0%,
            #dceeff 50%,
            #eef8ff 100%
        );

    position: relative;
    overflow: hidden;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.plot-info-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(74,157,226,0.08);

    border-radius: 50%;

    top: -300px;
    left: -150px;

    filter: blur(20px);

    pointer-events: none;
}


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

.plot-info-container {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   TITLE
========================================= */

.plot-info-title {
    margin: 0 0 38px;

    text-align: center;

    font-family: "Barlow", sans-serif;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.7px;

    color: #0b2949;

    position: relative;
}


/* Small premium line below title */

.plot-info-title::after {
    content: "";

    display: block;

    width: 46px;
    height: 2px;

    margin: 13px auto 0;

    background: #c49a55;

    border-radius: 10px;
}


/* =========================================
   CARD GRID
========================================= */

.plot-info-grid {

    display: grid;

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

    gap: 20px;

    width: 100%;
}


/* =========================================
   PREMIUM CARD
========================================= */

.plot-info-card {

    min-height: 225px;

    padding: 30px 22px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.97),
            rgba(248,252,255,0.88)
        );

    border: 1px solid rgba(77,128,169,0.22);

    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(25,70,110,0.08),
        0 2px 5px rgba(25,70,110,0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Premium top accent */

.plot-info-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 45px;
    height: 2px;

    transform: translateX(-50%);

    background: #c49a55;

    opacity: 0.75;

    transition:
        width 0.35s ease,
        opacity 0.35s ease;
}


/* Soft internal glow */

.plot-info-card::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -75px;
    right: -55px;

    background: rgba(91,164,221,0.08);

    border-radius: 50%;

    filter: blur(3px);

    pointer-events: none;
}


/* =========================================
   HOVER
========================================= */

.plot-info-card:hover {

    transform: translateY(-7px);

    border-color: rgba(40,120,190,0.35);

    box-shadow:
        0 20px 40px rgba(25,70,110,0.13),
        0 4px 10px rgba(25,70,110,0.05),
        inset 0 1px 0 rgba(255,255,255,1);
}


.plot-info-card:hover::before {

    width: 70px;

    opacity: 1;
}


/* =========================================
   ICON
========================================= */

.plot-info-icon {

    width: 68px;
    height: 68px;

    margin-bottom: 19px;

    border-radius: 50%;

    display: flex;

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

    position: relative;

    background:
        linear-gradient(
            145deg,
            #f5faff,
            #e5f2fc
        );

    border: 1px solid rgba(65,140,200,0.18);

    box-shadow:
        0 5px 15px rgba(44,116,174,0.08),
        inset 0 1px 2px rgba(255,255,255,0.95);

    color: #176fb5;

    font-family: "Barlow", sans-serif;

    font-size: 29px;

    font-weight: 600;

    z-index: 2;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.plot-info-card:hover .plot-info-icon {

    transform: scale(1.06);

    box-shadow:
        0 7px 18px rgba(44,116,174,0.13),
        inset 0 1px 2px rgba(255,255,255,1);
}


/* =========================================
   LABEL
========================================= */

.plot-info-label {

    font-family: "Barlow", sans-serif;

    font-size: 12px;

    line-height: 18px;

    font-weight: 600;

    color: #607890;

    letter-spacing: 1px;

    margin-bottom: 8px;

    position: relative;

    z-index: 2;
}


/* =========================================
   VALUE
========================================= */

.plot-info-value {

    font-family: "Barlow", sans-serif;

    font-size: 23px;

    line-height: 28px;

    font-weight: 700;

    color: #0c2d50;

    position: relative;

    z-index: 2;
}


/* =========================================
   PRICE SPECIAL EMPHASIS
========================================= */

.plot-info-card:last-child .plot-info-value {

    color: #0b3156;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .plot-info-grid {

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

        gap: 18px;
    }

    .plot-info-card {

        min-height: 205px;
    }
}


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

@media (max-width: 767px) {

    .plot-info-section {

        padding: 40px 15px 45px;
    }


    .plot-info-title {

        font-size: 23px;

        line-height: 29px;

        margin-bottom: 28px;
    }


    .plot-info-title::after {

        margin-top: 10px;

        width: 38px;
    }


    .plot-info-grid {

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

        gap: 12px;
    }


    .plot-info-card {

        min-height: 180px;

        padding: 20px 10px;

        border-radius: 11px;
    }


    .plot-info-icon {

        width: 55px;
        height: 55px;

        font-size: 24px;

        margin-bottom: 13px;
    }


    .plot-info-label {

        font-size: 9px;

        line-height: 14px;

        letter-spacing: 0.7px;

        margin-bottom: 6px;
    }


    .plot-info-value {

        font-size: 17px;

        line-height: 22px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .plot-info-title {

        font-size: 20px;

        line-height: 26px;
    }


    .plot-info-grid {

        gap: 10px;
    }


    .plot-info-card {

        min-height: 165px;

        padding: 16px 8px;
    }


    .plot-info-icon {

        width: 48px;
        height: 48px;

        font-size: 21px;

        margin-bottom: 10px;
    }


    .plot-info-label {

        font-size: 8.5px;

        line-height: 13px;
    }


    .plot-info-value {

        font-size: 15px;

        line-height: 19px;
    }

}
/* =========================================
   EXPERIENCE SECTION
========================================= */

.experience-section {
    width: 100%;
    background: linear-gradient(
        180deg,
        #eef7ff 0%,
        #e7f2fc 100%
    );

    padding: 58px 0 70px;

    overflow: hidden;

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


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

.experience-container {
    width: 94%;
    max-width: 1550px;

    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.experience-title {
    margin: 0;

    text-align: center;

    color: #102f55;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.2px;
}


/* =========================================
   TABS
========================================= */

.experience-tabs {
    display: flex;

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

    gap: 0;

    margin-top: 25px;
    margin-bottom: 32px;
}


/* TAB */

.experience-tab {
    border: none;
    outline: none;

    background: transparent;

    color: #102f55;

    min-width: 190px;

    padding: 13px 30px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


/* ACTIVE TAB */

.experience-tab.active {
    background: #102f55;

    color: #ffffff;
}


/* HOVER */

.experience-tab:not(.active):hover {
    background: rgba(16, 47, 85, 0.08);
}


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

.experience-content {
    display: none;
}

.experience-content.active {
    display: block;
}


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

.gallery-grid {

    width: 100%;

    display: grid;

    /*
       4 columns

       Left      Center       Right      Right
       1fr       1.45fr       1fr        1fr
    */

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

    grid-template-rows:
        1fr
        1fr;

    gap: 7px;

    /*
       Gives the wide spacious
       appearance from the design
    */

    aspect-ratio: 3.8 / 1;
}


/* =========================================
   GALLERY ITEMS
========================================= */

.gallery-item {

    position: relative;

    overflow: hidden;

    background: #d7e6f1;

    border-radius: 5px;

    min-height: 0;
}


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

.gallery-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


/* =========================================
   HOVER EFFECT
========================================= */

.gallery-item:hover img {
    transform: scale(1.04);
}


/* =========================================
   GRID POSITIONS
========================================= */


/* LEFT TOP */

.item-1 {
    grid-column: 1;
    grid-row: 1;
}


/* CENTER LARGE */

.item-2 {
    grid-column: 2;
    grid-row: 1 / 3;
}


/* RIGHT TOP LEFT */

.item-3 {
    grid-column: 3;
    grid-row: 1;
}


/* RIGHT TOP RIGHT */

.item-4 {
    grid-column: 4;
    grid-row: 1;
}


/* LEFT BOTTOM */

.item-5 {
    grid-column: 1;
    grid-row: 2;
}


/* RIGHT BOTTOM LEFT */

.item-6 {
    grid-column: 3;
    grid-row: 2;
}


/* RIGHT BOTTOM RIGHT */

.item-7 {
    grid-column: 4;
    grid-row: 2;
}


/* =========================================
   VIDEOS
========================================= */

.video-grid {

    display: grid;

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

    gap: 15px;
}


.video-item {

    background: #d7e6f1;

    overflow: hidden;

    border-radius: 6px;
}


.video-item video {

    width: 100%;

    display: block;
}


/* =========================================
   MASTERPLAN
========================================= */

.masterplan-image {

    width: 100%;

    overflow: hidden;

    border-radius: 6px;
}


.masterplan-image img {

    width: 100%;

    display: block;
}


/* =========================================
   AMENITIES HORIZONTAL SCROLL
========================================= */

.amenities-scroll {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
}


/* =========================================
   AMENITIES HORIZONTAL SCROLL
========================================= */

.amenities-scroll {
    width: 100%;
    max-width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* Mouse cursor */
    cursor: grab;

    /* Prevent accidental vertical movement */
    overscroll-behavior-x: contain;
}


/* =========================================
   HIDE SCROLLBAR - CHROME / SAFARI / EDGE
========================================= */

.amenities-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


/* =========================================
   ACTIVE DRAG CURSOR
========================================= */

.amenities-scroll:active {
    cursor: grabbing;
}


/* =========================================
   HORIZONTAL TRACK
========================================= */

.amenities-track {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;

    align-items: stretch;

    gap: 12px;

    width: max-content;
    min-width: max-content;

    padding: 0;
    margin: 0;
}


/* =========================================
   AMENITY CARD
========================================= */

.amenity-item {
    flex: 0 0 360px;

    width: 360px;
    height: 230px;

    position: relative;

    overflow: hidden;

    border-radius: 7px;

    background: #d7e6f1;

    box-sizing: border-box;

    user-select: none;
}


/* =========================================
   AMENITY IMAGE
========================================= */

.amenity-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    pointer-events: none;
    user-select: none;

    transition: transform 0.45s ease;
}


/* =========================================
   IMAGE HOVER EFFECT
========================================= */

.amenity-item:hover img {
    transform: scale(1.05);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .amenity-item {
        flex: 0 0 320px;

        width: 320px;
        height: 210px;
    }

    .amenities-track {
        gap: 10px;
    }
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 768px) {

    .amenities-scroll {
        width: 100%;

        /* Allow touch scrolling */
        touch-action: pan-x;
    }

    .amenity-item {
        flex: 0 0 300px;

        width: 300px;
        height: 200px;

        border-radius: 7px;
    }

    .amenities-track {
        gap: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .amenities-scroll {
        width: 100%;
    }

    .amenities-track {
        gap: 8px;
    }

    .amenity-item {
        flex: 0 0 270px;

        width: 270px;
        height: 180px;

        border-radius: 6px;
    }
}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .amenity-item {
        flex: 0 0 250px;

        width: 250px;
        height: 165px;
    }

    .amenities-track {
        gap: 8px;
    }
}

/* =========================================
   YOUTUBE VIDEO CARDS
========================================= */

.youtube-link {
    display: block;
    width: 100%;
    text-decoration: none;
}


.youtube-card {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #d7e6f1;

    border-radius: 6px;

    cursor: pointer;
}


/* YOUTUBE THUMBNAIL */

.youtube-thumbnail {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* =========================================
   PLAY BUTTON
========================================= */

.youtube-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 68px;
    height: 48px;

    border-radius: 12px;

    background: #ff0000;

    color: #ffffff;

    display: flex;

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

    font-size: 24px;

    padding-left: 3px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.youtube-card:hover .youtube-thumbnail {
    transform: scale(1.05);
}

.youtube-card:hover .youtube-play {
    transform:
        translate(-50%, -50%)
        scale(1.08);

    background: #e60000;
}


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

@media (max-width: 768px) {

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

    .youtube-play {
        width: 58px;
        height: 42px;

        font-size: 21px;

        border-radius: 10px;
    }

}

/* =========================================================
   G SQUARE CITY 3.0
   CONNECTED TO WHAT MATTERS
   PREMIUM VICINITY MAP
   CLEAN / SINGLE CSS VERSION
========================================================= */

.gsq30-location-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 100vh;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(201,164,92,0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #031b2b 0%,
            #062a42 50%,
            #031b2b 100%
        );

    color: #ffffff;

    font-family:
        "Poppins",
        "Montserrat",
        Arial,
        sans-serif;
}


/* =========================================================
   MAP BACKGROUND
========================================================= */

.gsq30-map-bg {
    position: absolute;
    inset: 0;
    z-index: 1;

    overflow: hidden;
    pointer-events: none;
}


.gsq30-map-bg::before {
    content: "";

    position: absolute;
    inset: -20%;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    transform:
        perspective(800px)
        rotateX(55deg)
        rotateZ(-8deg)
        scale(1.5);

    opacity: 0.55;
}


/* =========================================================
   ROADS
========================================================= */

.gsq30-road {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.16),
            transparent
        );

    opacity: 0.55;
}


.gsq30-road-1 {
    width: 140%;
    left: -20%;
    top: 25%;

    transform: rotate(13deg);
}


.gsq30-road-2 {
    width: 130%;
    left: -15%;
    top: 45%;

    transform: rotate(-8deg);
}


.gsq30-road-3 {
    width: 145%;
    left: -20%;
    top: 68%;

    transform: rotate(7deg);
}


.gsq30-road-4 {
    width: 125%;
    left: -10%;
    top: 82%;

    transform: rotate(-14deg);
}


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

.gsq30-heading {
    position: absolute;

    top: 35px;
    left: 50%;

    width: 90%;
    max-width: 850px;

    text-align: center;

    z-index: 50;

    opacity: 0;

    transform:
        translateX(-50%)
        translateY(-15px);
}


.gsq30-heading h2 {
    margin: 0;

    font-size:
        clamp(26px, 3vw, 46px);

    font-weight: 600;
    line-height: 1.15;

    color: #ffffff;
}


.gsq30-heading h2 span {
    color: #c9a45c;
}


.gsq30-heading p {
    margin: 8px 0 0;

    font-size: 13px;

    color:
        rgba(255,255,255,0.68);
}


/* =========================================================
   HEADING ANIMATION
========================================================= */

.gsq30-location-section.gsq30-heading-show
.gsq30-heading {

    animation:
        gsq30-heading-in
        0.8s
        cubic-bezier(.16,1,.3,1)
        forwards;
}


@keyframes gsq30-heading-in {

    from {
        opacity: 0;

        transform:
            translateX(-50%)
            translateY(-15px);
    }

    to {
        opacity: 1;

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


/* =========================================================
   AREA LABELS
========================================================= */

.gsq30-area {
    position: absolute;

    top: 48%;

    z-index: 4;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.18em;

    color:
        rgba(255,255,255,0.28);

    white-space: nowrap;

    opacity: 0;
}


.gsq30-area-left {
    left: 4%;
}


.gsq30-area-center {
    left: 50%;

    transform:
        translateX(-50%);

    color:
        rgba(201,164,92,0.35);
}


.gsq30-area-right {
    right: 4%;
}


/* =========================================================
   AREA ANIMATION
========================================================= */

.gsq30-location-section.gsq30-animation-complete
.gsq30-area {

    animation:
        gsq30-area-in
        0.6s
        ease
        forwards;
}


@keyframes gsq30-area-in {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* =========================================================
   CENTRE LOGO
   PROTECTED AREA
========================================================= */

.gsq30-center {

    position: absolute;

    left: 50%;
    top: 53%;

    width: 210px;
    height: 210px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

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

    text-align: center;

    z-index: 40;

    background:
        radial-gradient(
            circle,
            rgba(201,164,92,0.20) 0%,
            rgba(6,42,66,0.98) 65%,
            rgba(3,27,43,1) 100%
        );

    border:
        1px solid
        rgba(201,164,92,0.85);

    box-shadow:

        0 0 0 10px
        rgba(201,164,92,0.04),

        0 0 0 20px
        rgba(201,164,92,0.025),

        0 0 55px
        rgba(201,164,92,0.28);

    animation:
        gsq30-center-pulse
        4s
        ease-in-out
        infinite;
}


/* =========================================================
   CENTRE RING
========================================================= */

.gsq30-center-ring {

    position: absolute;

    inset: 12px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.16);

    pointer-events: none;
}


/* =========================================================
   CENTRE CONTENT
========================================================= */

.gsq30-center-content {

    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   REAL G SQUARE CITY LOGO
========================================================= */

.gsq30-center-logo {

    display: block;

    width: 155px;
    max-width: 78%;

    height: auto;

    object-fit: contain;

    margin: 0 auto;

    filter:
        drop-shadow(
            0 5px 15px
            rgba(0,0,0,0.25)
        );
}


/* =========================================================
   CENTRE PULSE
========================================================= */

@keyframes gsq30-center-pulse {

    0%,
    100% {

        transform:
            translate(-50%, -50%)
            scale(1);

        box-shadow:

            0 0 0 10px
            rgba(201,164,92,0.04),

            0 0 0 20px
            rgba(201,164,92,0.025),

            0 0 55px
            rgba(201,164,92,0.20);
    }

    50% {

        transform:
            translate(-50%, -50%)
            scale(1.035);

        box-shadow:

            0 0 0 15px
            rgba(201,164,92,0.06),

            0 0 0 27px
            rgba(201,164,92,0.03),

            0 0 70px
            rgba(201,164,92,0.30);
    }
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.gsq30-lines {

    position: absolute;

    inset: 0;

    z-index: 8;

    pointer-events: none;
}


.gsq30-line {

    position: absolute;

    left: 50%;
    top: 53%;

    height: 1px;

    transform-origin:
        left center;

    background:
        linear-gradient(
            90deg,
            rgba(201,164,92,0.04),
            rgba(201,164,92,0.50),
            rgba(201,164,92,0)
        );

    opacity: 0;

    clip-path:
        inset(0 100% 0 0);
}


/* =========================================================
   DESKTOP LINE LENGTH
========================================================= */

.gsq30-line-1 {
    width: 125px;
    transform: rotate(-90deg);
}


.gsq30-line-2 {
    width: 165px;
    transform: rotate(-32deg);
}


.gsq30-line-3 {
    width: 195px;
    transform: rotate(0deg);
}


.gsq30-line-4 {
    width: 165px;
    transform: rotate(32deg);
}


.gsq30-line-5 {
    width: 125px;
    transform: rotate(90deg);
}


.gsq30-line-6 {
    width: 165px;
    transform: rotate(148deg);
}


.gsq30-line-7 {
    width: 195px;
    transform: rotate(180deg);
}


.gsq30-line-8 {
    width: 165px;
    transform: rotate(212deg);
}


/* =========================================================
   LINE ANIMATION
========================================================= */

.gsq30-location-section.gsq30-lines-show
.gsq30-line {

    animation:
        gsq30-line-draw
        0.65s
        ease
        forwards;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-1 {
    animation-delay: 0s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-2 {
    animation-delay: 0.08s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-3 {
    animation-delay: 0.16s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-4 {
    animation-delay: 0.24s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-5 {
    animation-delay: 0.32s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-6 {
    animation-delay: 0.40s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-7 {
    animation-delay: 0.48s;
}


.gsq30-location-section.gsq30-lines-show
.gsq30-line-8 {
    animation-delay: 0.56s;
}


@keyframes gsq30-line-draw {

    from {
        opacity: 0;

        clip-path:
            inset(0 100% 0 0);
    }

    to {
        opacity: 0.55;

        clip-path:
            inset(0 0 0 0);
    }
}


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

.gsq30-vicinity-container {

    position: absolute;

    inset: 0;

    z-index: 20;

    pointer-events: none;
}


/* =========================================================
   VICINITY CARD
========================================================= */

.gsq30-vicinity {

    position: absolute;

    width: 125px;

    padding: 4px;

    text-align: center;

    pointer-events: auto;

    cursor: pointer;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.2);

    box-sizing: border-box;
}


/* =========================================================
   DESKTOP POSITIONS
   SAFE DISTANCE FROM CENTRE
========================================================= */


/* ---------------- TOP ---------------- */

.gsq30-vicinity-container
.gsq30-vicinity:nth-child(1) {

    left: 50%;
    top: 27%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(2) {

    left: 65%;
    top: 30%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(3) {

    left: 74%;
    top: 39%;
}


/* ---------------- RIGHT ---------------- */

.gsq30-vicinity-container
.gsq30-vicinity:nth-child(4) {

    left: 76%;
    top: 51%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(5) {

    left: 70%;
    top: 63%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(6) {

    left: 61%;
    top: 70%;
}


/* ---------------- BOTTOM ---------------- */

.gsq30-vicinity-container
.gsq30-vicinity:nth-child(7) {

    left: 39%;
    top: 70%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(8) {

    left: 30%;
    top: 63%;
}


/* ---------------- LEFT ---------------- */

.gsq30-vicinity-container
.gsq30-vicinity:nth-child(9) {

    left: 24%;
    top: 51%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(10) {

    left: 26%;
    top: 39%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(11) {

    left: 35%;
    top: 30%;
}


/* =========================================================
   INNER VICINITIES
   KEPT OUTSIDE LOGO PROTECTION ZONE
========================================================= */

.gsq30-vicinity-container
.gsq30-vicinity:nth-child(12) {

    left: 40%;
    top: 36%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(13) {

    left: 60%;
    top: 36%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(14) {

    left: 65%;
    top: 46%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(15) {

    left: 62%;
    top: 59%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(16) {

    left: 50%;
    top: 67%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(17) {

    left: 38%;
    top: 59%;
}


.gsq30-vicinity-container
.gsq30-vicinity:nth-child(18) {

    left: 35%;
    top: 46%;
}


/* =========================================================
   VICINITY POP ANIMATION
========================================================= */

.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity {

    animation:
        gsq30-vicinity-pop
        0.65s
        cubic-bezier(.16,1,.3,1)
        forwards;
}


/* =========================================================
   VICINITY DELAYS
========================================================= */

.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(1) {
    animation-delay: 0s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(2) {
    animation-delay: 0.12s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(3) {
    animation-delay: 0.24s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(4) {
    animation-delay: 0.36s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(5) {
    animation-delay: 0.48s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(6) {
    animation-delay: 0.60s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(7) {
    animation-delay: 0.72s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(8) {
    animation-delay: 0.84s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(9) {
    animation-delay: 0.96s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(10) {
    animation-delay: 1.08s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(11) {
    animation-delay: 1.20s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(12) {
    animation-delay: 1.32s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(13) {
    animation-delay: 1.44s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(14) {
    animation-delay: 1.56s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(15) {
    animation-delay: 1.68s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(16) {
    animation-delay: 1.80s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(17) {
    animation-delay: 1.92s;
}


.gsq30-location-section.gsq30-vicinity-show
.gsq30-vicinity:nth-child(18) {
    animation-delay: 2.04s;
}


/* =========================================================
   VICINITY POP KEYFRAME
========================================================= */

@keyframes gsq30-vicinity-pop {

    0% {

        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(0.2);
    }

    65% {

        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.10);
    }

    100% {

        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }
}


/* =========================================================
   DOT
========================================================= */

.gsq30-dot {

    width: 13px;
    height: 13px;

    margin:
        0 auto 5px;

    border-radius: 50%;

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

    font-size: 7px;

    color: #062a42;

    background: #c9a45c;

    border:
        1.5px solid
        rgba(255,255,255,0.9);

    box-shadow:

        0 0 0 4px
        rgba(201,164,92,0.08),

        0 0 15px
        rgba(201,164,92,0.55);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   CARD
========================================================= */

.gsq30-card {

    padding:
        7px 8px;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius: 6px;

    background:
        rgba(3,27,43,0.82);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;

    box-sizing: border-box;
}


/* =========================================================
   CATEGORY
========================================================= */

.gsq30-category {

    display: block;

    margin-bottom: 2px;

    font-size: 6.5px;

    font-weight: 600;

    letter-spacing: 0.14em;

    color: #c9a45c;
}


/* =========================================================
   LOCATION NAME
========================================================= */

.gsq30-card strong {

    display: block;

    font-size: 10px;

    font-weight: 500;

    line-height: 1.25;

    color: #ffffff;
}


/* =========================================================
   DISTANCE
========================================================= */

.gsq30-card small {

    display: block;

    margin-top: 2px;

    font-size: 7px;

    font-weight: 500;

    color:
        rgba(255,255,255,0.55);
}


/* =========================================================
   HOVER
========================================================= */

.gsq30-vicinity:hover
.gsq30-dot {

    transform:
        scale(1.25);

    box-shadow:

        0 0 0 6px
        rgba(201,164,92,0.12),

        0 0 22px
        rgba(201,164,92,0.75);
}


.gsq30-vicinity:hover
.gsq30-card {

    border-color:
        rgba(201,164,92,0.7);

    background:
        rgba(6,42,66,0.96);

    transform:
        translateY(-3px);
}


/* =========================================================
   HIDDEN FILTER ITEM
========================================================= */

.gsq30-vicinity.gsq30-hidden {

    opacity: 0 !important;

    pointer-events: none !important;

    transform:
        translate(-50%, -50%)
        scale(0.7) !important;
}


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

.gsq30-filter {

    position: absolute;

    left: 50%;
    bottom: 32px;

    transform:
        translate(-50%, 20px);

    z-index: 60;

    display: flex;

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

    gap: 5px;

    max-width: 94%;

    padding: 6px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius: 50px;

    background:
        rgba(3,27,43,0.9);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    opacity: 0;
}


/* =========================================================
   FILTER BUTTON
========================================================= */

.gsq30-filter-btn {

    appearance: none;

    border: none;
    outline: none;

    padding:
        8px 13px;

    border-radius: 30px;

    background: transparent;

    color:
        rgba(255,255,255,0.65);

    font-family: inherit;

    font-size: 9px;

    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.gsq30-filter-btn:hover {

    color: #ffffff;

    background:
        rgba(255,255,255,0.07);
}


.gsq30-filter-btn.active {

    color: #031b2b;

    background: #c9a45c;

    font-weight: 600;
}


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

.gsq30-location-section.gsq30-animation-complete
.gsq30-filter {

    animation:
        gsq30-filter-in
        0.7s
        ease
        forwards;
}


@keyframes gsq30-filter-in {

    from {

        opacity: 0;

        transform:
            translate(-50%, 20px);
    }

    to {

        opacity: 1;

        transform:
            translate(-50%, 0);
    }
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.gsq30-note {

    position: absolute;

    left: 50%;
    bottom: 7px;

    transform:
        translateX(-50%);

    z-index: 55;

    width: 95%;

    text-align: center;

    font-size: 8px;

    color:
        rgba(255,255,255,0.38);

    opacity: 0;
}


/* =========================================================
   NOTE ANIMATION
========================================================= */

.gsq30-location-section.gsq30-animation-complete
.gsq30-note {

    animation:
        gsq30-note-in
        0.5s
        ease
        forwards;
}


@keyframes gsq30-note-in {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gsq30-location-section {

        height: 100svh;

        min-height: 600px;
    }


    .gsq30-heading {

        top: 28px;
    }


    .gsq30-center {

        width: 170px;
        height: 170px;
    }


    .gsq30-center-logo {

        width: 125px;
    }


    .gsq30-vicinity {

        width: 105px;
    }


    .gsq30-card strong {

        font-size: 9px;
    }


    .gsq30-filter {

        bottom: 25px;
    }
}


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

@media (max-width: 600px) {

    .gsq30-location-section {

        height: 100svh;

        min-height: 570px;
    }


    /* ---------------- HEADING ---------------- */

    .gsq30-heading {

        top: 20px;

        width: 94%;
    }


    .gsq30-heading h2 {

        font-size: 22px;
    }


    .gsq30-heading p {

        margin-top: 5px;

        font-size: 9px;
    }


    /* ---------------- CENTRE ---------------- */

    .gsq30-center {

        top: 48%;

        width: 135px;
        height: 135px;
    }


    .gsq30-center-ring {

        inset: 8px;
    }


    .gsq30-center-logo {

        width: 105px;
        max-width: 78%;
    }


    /* ---------------- VICINITY ---------------- */

    .gsq30-vicinity {

        width: 82px;
    }


    .gsq30-dot {

        width: 10px;
        height: 10px;

        font-size: 5px;

        margin-bottom: 3px;
    }


    .gsq30-card {

        padding:
            5px 4px;

        border-radius: 5px;
    }


    .gsq30-category {

        font-size: 4.5px;
    }


    .gsq30-card strong {

        font-size: 6.5px;

        line-height: 1.2;
    }


    .gsq30-card small {

        font-size: 5.5px;
    }


    /* =====================================================
       MOBILE POSITIONS
       PROTECTED AREA AROUND LOGO
    ===================================================== */


    /* TOP */

    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(1) {

        left: 50%;
        top: 27%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(2) {

        left: 68%;
        top: 31%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(3) {

        left: 77%;
        top: 40%;
    }


    /* RIGHT */

    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(4) {

        left: 79%;
        top: 51%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(5) {

        left: 72%;
        top: 62%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(6) {

        left: 62%;
        top: 69%;
    }


    /* BOTTOM */

    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(7) {

        left: 38%;
        top: 69%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(8) {

        left: 28%;
        top: 62%;
    }


    /* LEFT */

    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(9) {

        left: 21%;
        top: 51%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(10) {

        left: 23%;
        top: 40%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(11) {

        left: 32%;
        top: 31%;
    }


    /* =====================================================
       INNER MOBILE VICINITIES
    ===================================================== */

    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(12) {

        left: 40%;
        top: 37%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(13) {

        left: 60%;
        top: 37%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(14) {

        left: 66%;
        top: 46%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(15) {

        left: 62%;
        top: 58%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(16) {

        left: 50%;
        top: 64%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(17) {

        left: 38%;
        top: 58%;
    }


    .gsq30-vicinity-container
    .gsq30-vicinity:nth-child(18) {

        left: 34%;
        top: 46%;
    }


    /* =====================================================
       MOBILE LINES
    ===================================================== */

    .gsq30-line-1 {
        width: 80px;
    }


    .gsq30-line-2 {
        width: 110px;
    }


    .gsq30-line-3 {
        width: 125px;
    }


    .gsq30-line-4 {
        width: 110px;
    }


    .gsq30-line-5 {
        width: 80px;
    }


    .gsq30-line-6 {
        width: 110px;
    }


    .gsq30-line-7 {
        width: 125px;
    }


    .gsq30-line-8 {
        width: 110px;
    }


    /* =====================================================
       MOBILE FILTER
    ===================================================== */

    .gsq30-filter {

        bottom: 17px;

        width: 94%;
        max-width: 94%;

        justify-content: flex-start;

        overflow-x: auto;

        border-radius: 10px;

        scrollbar-width: none;
    }


    .gsq30-filter::-webkit-scrollbar {

        display: none;
    }


    .gsq30-filter-btn {

        flex-shrink: 0;

        padding:
            7px 9px;

        font-size: 7px;
    }


    .gsq30-note {

        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .gsq30-location-section {

        min-height: 530px;
    }


    .gsq30-heading h2 {

        font-size: 19px;
    }


    .gsq30-center {

        width: 115px;
        height: 115px;
    }


    .gsq30-center-logo {

        width: 88px;
    }


    .gsq30-vicinity {

        width: 72px;
    }


    .gsq30-card strong {

        font-size: 6px;
    }


    .gsq30-card small {

        font-size: 5px;
    }


    .gsq30-filter-btn {

        padding:
            6px 8px;

        font-size: 6.5px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .gsq30-location-section *,
    .gsq30-location-section *::before,
    .gsq30-location-section *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    background: #062A42;
    padding: 55px 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    top: -250px;
    right: -200px;
}

.testimonial-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* HEADER */

.testimonial-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.testimonial-tag {
    color: #d7b56d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-header h2 {
    font-family: "Gill Sans", "Gill Roy", serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 10px;
}

.testimonial-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


/* CARDS GRID */

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


/* INDIVIDUAL CARD */

.testimonial-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 250px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(215, 181, 109, 0.6);
}


/* TOP AREA */

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.testimonial-top img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(215, 181, 109, 0.8);
}


/* STAR RATING */

.rating {
    display: flex;
    gap: 4px;
}

.rating span {
    color: #d7b56d;
    font-size: 18px;
}


/* TESTIMONIAL TEXT */

.testimonial-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    padding-right: 10px;
}


/* GOLD LINE */

.testimonial-line {
    width: 40px;
    height: 2px;
    background: #d7b56d;
    margin: 20px 0 12px;
}


/* CUSTOMER INFO */

.customer-info h3 {
    color: #d7b56d;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 5px;
}

.customer-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin: 0;
}


/* QUOTE ICON */

.quote-icon {
    position: absolute;
    right: 20px;
    bottom: -35px;
    font-family: Georgia, serif;
    font-size: 130px;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}


/* SLIDER DOTS */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: 0.3s ease;
}

.testimonial-dots .active {
    width: 25px;
    border-radius: 20px;
    background: #d7b56d;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

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

    .testimonial-header h2 {
        font-size: 42px;
    }

}


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

@media (max-width: 768px) {

    .testimonial-section {
        padding: 50px 18px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-header {
        margin-bottom: 30px;
    }

    .testimonial-header h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .testimonial-header p {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 22px;
        min-height: auto;
    }

    .testimonial-top {
        margin-bottom: 18px;
    }

    .testimonial-top img {
        width: 70px;
        height: 70px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonial-line {
        margin: 17px 0 10px;
    }

}

/* =========================================================
   EVERYTHING YOU NEED TO KNOW
   FAQ + BLOGS + IN THE NEWS
========================================================= */

.gsq-info-section {
  width: 100%;
  padding: 75px 20px 80px;

  background:
    radial-gradient(
      circle at 18% 45%,
      rgba(255,255,255,0.95),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #edf7ff 0%,
      #dceeff 50%,
      #eef8ff 100%
    );

  position: relative;
  overflow: hidden;
}

.gsq-info-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -280px;
  right: -120px;
  border-radius: 50%;
  background: rgba(74,157,226,0.07);
  filter: blur(25px);
  pointer-events: none;
}


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

.gsq-info-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


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

.gsq-info-heading {
  text-align: center;
  margin-bottom: 42px;
}

.gsq-info-heading h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #0c2c4d;
}

.gsq-info-heading > span {
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px auto 13px;
  background: #c49a55;
  border-radius: 10px;
}

.gsq-info-heading p {
  margin: 0 auto;
  max-width: 650px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #607991;
}


/* =========================================================
   TOP CARDS
========================================================= */

.gsq-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gsq-info-card {
  width: 100%;
  min-height: 285px;
  padding: 32px;

  display: flex;
  flex-direction: column;
  text-align: left;

  border-radius: 14px;
  border: 1px solid rgba(77,128,169,0.22);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.97),
      rgba(248,252,255,0.88)
    );

  box-shadow:
    0 12px 30px rgba(25,70,110,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);

  cursor: pointer;
  font-family: inherit;

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

  position: relative;
  overflow: hidden;
}

.gsq-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 42px;
  height: 2px;
  background: #c49a55;
  transition: width 0.35s ease;
}

.gsq-info-card:hover,
.gsq-info-card.active {
  transform: translateY(-5px);

  border-color: rgba(40,120,190,0.35);

  box-shadow:
    0 18px 38px rgba(25,70,110,0.13),
    inset 0 1px 0 rgba(255,255,255,1);
}

.gsq-info-card:hover::before,
.gsq-info-card.active::before {
  width: 70px;
}


/* =========================================================
   ICON
========================================================= */

.gsq-info-icon {
  width: 58px;
  height: 58px;

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

  margin-bottom: 22px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #f5faff,
      #e4f2fc
    );

  border: 1px solid rgba(65,140,200,0.18);

  box-shadow:
    0 5px 15px rgba(44,116,174,0.08);

  color: #176fb5;
  font-size: 25px;
  font-weight: 600;
}

.gsq-info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gsq-info-label {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #6a8298;
}

.gsq-info-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #0d3154;
}

.gsq-info-content p {
  margin: 0;
  max-width: 350px;
  font-size: 13px;
  line-height: 20px;
  color: #627b92;
}

.gsq-info-link {
  margin-top: auto;
  padding-top: 22px;

  display: flex;
  align-items: center;
  gap: 9px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #176fb5;

  transition: gap 0.25s ease;
}

.gsq-info-card:hover .gsq-info-link {
  gap: 13px;
}

.gsq-info-link span {
  font-size: 17px;
}


/* =========================================================
   EXPAND AREA
========================================================= */

.gsq-expand-area {
  margin-top: 25px;
  position: relative;
}

.gsq-expand-panel {
  display: none;

  padding: 32px;

  background: rgba(255,255,255,0.94);

  border: 1px solid rgba(77,128,169,0.20);
  border-radius: 14px;

  box-shadow:
    0 12px 30px rgba(25,70,110,0.08);

  animation: gsqPanelOpen 0.35s ease;
}

.gsq-expand-panel.active {
  display: block;
}

@keyframes gsqPanelOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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


/* =========================================================
   PANEL HEADING
========================================================= */

.gsq-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
  padding-bottom: 18px;

  border-bottom: 1px solid rgba(60,110,150,0.12);
}

.gsq-panel-label {
  display: block;
  margin-bottom: 5px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: #c49a55;
}

.gsq-panel-heading h3 {
  margin: 0;

  font-family: "Barlow", sans-serif;
  font-size: 23px;
  color: #0c2c4d;
}

.gsq-close-panel {
  width: 34px;
  height: 34px;

  border: none;
  border-radius: 50%;

  background: #edf6fd;
  color: #176fb5;

  font-size: 22px;
  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gsq-close-panel:hover {
  background: #dceeff;
  transform: rotate(90deg);
}


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

.gsq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.gsq-faq-item {
  border: 1px solid rgba(77,128,169,0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #fbfdff;
}

.gsq-faq-question {
  width: 100%;
  padding: 17px 20px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-align: left;
  cursor: pointer;

  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #173b5d;
}

.gsq-faq-question b {
  font-size: 21px;
  font-weight: 400;
  color: #287dcc;

  transition: transform 0.25s ease;
}

.gsq-faq-item.open .gsq-faq-question b {
  transform: rotate(45deg);
}

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

.gsq-faq-answer p {
  margin: 0;
  padding: 0 20px 18px;

  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 21px;
  color: #647c91;
}


/* =========================================================
   BLOGS
========================================================= */

.gsq-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 20px;
  justify-content: center;
}


/* =========================================================
   BLOG CARD
========================================================= */

.gsq-blog-card {
  width: 330px;
  overflow: hidden;

  border: 1px solid rgba(77,128,169,0.14);
  border-radius: 12px;

  background: #ffffff;

  box-shadow:
    0 5px 18px rgba(25,70,110,0.06);

  transition: all 0.3s ease;
}

.gsq-blog-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 10px 28px rgba(25,70,110,0.11);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.gsq-blog-image {
  width: 330px;
  height: 130px;

  overflow: hidden;
  position: relative;

  background:
    linear-gradient(
      135deg,
      #dceeff,
      #eef8ff
    );
}

.gsq-blog-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.gsq-blog-card:hover .gsq-blog-image img {
  transform: scale(1.04);
}


/* =========================================================
   BLOG BODY
========================================================= */

.gsq-blog-body {
  padding: 17px 18px 18px;
}

.gsq-blog-body small {
  display: block;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;

  color: #c49a55;

  margin-bottom: 7px;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.gsq-blog-body h4 {
  margin: 0 0 8px;

  font-size: 16px;
  line-height: 21px;

  font-weight: 600;

  color: #123554;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* =========================================================
   BLOG DESCRIPTION
========================================================= */

.gsq-blog-body p {
  margin: 0 0 14px;

  font-size: 12px;
  line-height: 18px;

  color: #6a8195;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* =========================================================
   READ MORE
========================================================= */

.gsq-blog-body a {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;

  text-decoration: none;

  color: #176fb5;

  transition: all 0.25s ease;
}

.gsq-blog-body a:hover {
  color: #0d4f82;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .gsq-blog-grid {
    grid-template-columns: repeat(2, 330px);
  }

}


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

@media (max-width: 767px) {

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

    justify-items: center;
  }

  .gsq-blog-card {
    width: 100%;
    max-width: 330px;
  }

  .gsq-blog-image {
    width: 100%;
    height: 130px;
  }

}

/* =========================================================
   NEWS / PR
========================================================= */

.gsq-news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gsq-news-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 25px;

  padding: 18px 20px;

  border: 1px solid rgba(77,128,169,0.16);
  border-radius: 9px;

  background: #fbfdff;
}

.gsq-news-date {
  text-align: center;

  padding-right: 20px;

  border-right: 1px solid rgba(60,110,150,0.12);
}

.gsq-news-date strong {
  display: block;
  font-size: 20px;
  color: #0c3154;
}

.gsq-news-date span {
  font-size: 9px;
  letter-spacing: 1px;
  color: #c49a55;
}

.gsq-news-details small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #71889c;
}

.gsq-news-details h4 {
  margin: 5px 0;

  font-size: 16px;
  color: #153957;
}

.gsq-news-details p {
  margin: 0;

  font-size: 12px;
  line-height: 18px;
  color: #6a8195;
}

.gsq-news-item > a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;

  color: #176fb5;
  text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .gsq-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gsq-info-card {
    padding: 25px 20px;
    min-height: 260px;
  }

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

}


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

@media (max-width: 767px) {

  .gsq-info-section {
    padding: 45px 15px 50px;
  }

  .gsq-info-heading {
    margin-bottom: 28px;
  }

  .gsq-info-heading h2 {
    font-size: 23px;
    line-height: 29px;
  }

  .gsq-info-heading p {
    font-size: 12px;
    line-height: 19px;
  }

  .gsq-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gsq-info-card {
    min-height: 0;
    padding: 22px;

    flex-direction: row;
    gap: 17px;

    align-items: flex-start;
    text-align: left;
  }

  .gsq-info-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    flex-shrink: 0;
  }

  .gsq-info-content h3 {
    font-size: 17px;
    line-height: 21px;
  }

  .gsq-info-content p {
    font-size: 12px;
    line-height: 18px;
  }

  .gsq-info-link {
    padding-top: 12px;
  }

  .gsq-expand-area {
    margin-top: 15px;
  }

  .gsq-expand-panel {
    padding: 20px;
    border-radius: 11px;
  }

  .gsq-panel-heading h3 {
    font-size: 19px;
  }

  .gsq-blog-grid {
    grid-template-columns: 1fr;
  }

  .gsq-news-item {
    grid-template-columns: 65px 1fr;
    gap: 15px;
  }

  .gsq-news-date {
    padding-right: 12px;
  }

  .gsq-news-item > a {
    display: none;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .gsq-info-card {
    padding: 18px;
    gap: 13px;
  }

  .gsq-info-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .gsq-info-content h3 {
    font-size: 15px;
    line-height: 19px;
  }

  .gsq-info-content p {
    font-size: 11px;
    line-height: 17px;
  }

  .gsq-expand-panel {
    padding: 15px;
  }

}

.investment-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.investment-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .investment-banner {
        height: 120px;
    }

    .investment-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* =========================================================
   STICKY ENQUIRY BAR
========================================================= */

.gsq-sticky-enquiry {
    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;

    background: #062A42;

    padding: 9px 24px;

    box-sizing: border-box;

    z-index: 999999;

    box-shadow:
        0 -5px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.gsq-enquiry-form {
    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1.3fr
        1fr
        180px;

    gap: 14px;

    align-items: center;
}


/* =========================================================
   FIELD
========================================================= */

.gsq-field {
    width: 100%;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   INPUT
========================================================= */

.gsq-field input {
    width: 100%;

    height: 48px;

    padding: 0 18px;

    box-sizing: border-box;

    border: none;
    outline: none;

    border-radius: 10px;

    background: #ffffff;

    color: #1d2b3a;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 16px;
}

.gsq-field input::placeholder {
    color: #8c99a8;
}


/* =========================================================
   PHONE FIELD
========================================================= */

.gsq-phone-wrapper {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border-radius: 10px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   INDIA CODE
========================================================= */

.gsq-country-code {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 15px;

    background: #ffffff;

    border-right: 1px solid #e1e1e1;

    white-space: nowrap;

    color: #263746;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;
}

.gsq-india-flag {
    font-size: 19px;

    line-height: 1;
}


/* =========================================================
   PHONE INPUT
========================================================= */

.gsq-phone-wrapper input {
    flex: 1;

    width: 100%;
    height: 100%;

    border: none !important;
    outline: none !important;

    box-shadow: none !important;

    padding: 0 16px;

    background: transparent;

    color: #1d2b3a;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 16px;
}

.gsq-phone-wrapper input::placeholder {
    color: #8c99a8;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.gsq-enquiry-submit {
    width: 100%;
    height: 48px;

    border: none;

    border-radius: 10px;

    background: #ffffff;

    color: #062A42;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}

.gsq-enquiry-submit:hover {
    background: #d8b36a;

    color: #ffffff;

    transform: translateY(-1px);
}

.gsq-submit-arrow {
    font-size: 19px;

    transition: transform 0.3s ease;
}

.gsq-enquiry-submit:hover .gsq-submit-arrow {
    transform: translateX(4px);
}


/* =========================================================
   ERROR
========================================================= */

.gsq-field input.gsq-error,
.gsq-phone-wrapper.gsq-error {
    border: 2px solid #e53935 !important;
}


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

.gsq-enquiry-header {
    display: none;
}


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

@media (max-width: 768px) {

    .gsq-sticky-enquiry {
        padding: 12px;
    }

    .gsq-enquiry-header {
        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-bottom: 10px;

        color: #ffffff;
    }

    .gsq-enquiry-title {
        display: flex;

        align-items: center;

        gap: 7px;

        font-family: "Gilroy", Arial, sans-serif;

        font-size: 16px;

        font-weight: 600;
    }

    .gsq-enquiry-icon {
        color: #d8b36a;
    }

    .gsq-enquiry-toggle {
        border: none;

        background: transparent;

        color: #ffffff;

        font-size: 25px;

        line-height: 1;

        cursor: pointer;

        padding: 0;
    }


    /* Mobile form */

    .gsq-enquiry-form {
        display: flex;

        flex-direction: column;

        gap: 10px;
    }


    .gsq-field input,
    .gsq-phone-wrapper,
    .gsq-enquiry-submit {
        height: 50px;
    }


    /* Minimized */

    .gsq-sticky-enquiry.gsq-minimized
    .gsq-enquiry-form {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .gsq-field input {
        font-size: 14px;

        padding: 0 13px;
    }

    .gsq-phone-wrapper input {
        font-size: 14px;

        padding: 0 12px;
    }

    .gsq-country-code {
        padding: 0 10px;

        font-size: 14px;
    }

    .gsq-india-flag {
        font-size: 17px;
    }

}

/* =========================================================
   STICKY ENQUIRY VISIBILITY
========================================================= */

.gsq-sticky-enquiry {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(100%);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}


.gsq-sticky-enquiry.gsq-sticky-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}
/* =========================================================
   G SQUARE CITY 3.0
   GLASS ENQUIRY
========================================================= */

.gsq3-glass-enquiry {

    position: relative;

    width: 100%;

    min-height: 370px;

    padding: 0;

    overflow: hidden;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 12px;

    background: #031d34;

    font-family: "Gilroy", Arial, sans-serif;

}


/* =========================================================
   BACKGROUND
========================================================= */

.gsq3-glass-bg {

    position: absolute;

    inset: 0;

    z-index: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(1,25,47,0.94),
            rgba(2,38,67,0.68),
            rgba(3,31,54,0.55)
        ),
        url("YOUR-G-SQUARE-CITY-3-BACKGROUND-IMAGE.jpg");

    background-size: cover;

    background-position: center;

}


/* =========================================================
   BACKGROUND OVERLAY
========================================================= */

.gsq3-glass-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(75,137,181,0.18),
            transparent 38%
        );

    pointer-events: none;

}


/* =========================================================
   MAIN INNER
========================================================= */

.gsq3-glass-inner {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    min-height: 370px;

    margin: 0 auto;

    padding: 26px 25px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 360px;

    column-gap: 15px;

    align-items: center;
}


/* =========================================================
   LEFT
========================================================= */

.gsq3-glass-left {

    min-width: 0;

}


/* =========================================================
   EYEBROW
========================================================= */

.gsq3-glass-eyebrow {

    margin-bottom: 10px;

    color: #d9a62e;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.3px;

    text-transform: uppercase;

}


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

.gsq3-glass-heading {

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: -0.5px;

}


.gsq3-glass-heading span {

    display: block;

    color: #e4a92c;

    font-size: 31px;

    margin-top: 2px;

}


/* =========================================================
   HEADING LINE
========================================================= */

.gsq3-glass-heading-line {

    display: flex;

    align-items: center;

    gap: 4px;

    margin-top: 11px;

    margin-bottom: 10px;

}


.gsq3-glass-heading-line span:nth-child(1) {

    width: 25px;

    height: 2px;

    background: #d9a62e;

}


.gsq3-glass-heading-line span:nth-child(2) {

    width: 5px;

    height: 2px;

    background: #d9a62e;

}


.gsq3-glass-heading-line span:nth-child(3) {

    width: 5px;

    height: 2px;

    background: #d9a62e;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.gsq3-glass-description {

    max-width: 360px;

    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 11px;

    line-height: 1.65;

}


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

.gsq3-glass-benefits {

    display: grid;

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

    max-width: 470px;

    margin-top: 17px;

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

    padding-top: 10px;

}


/* =========================================================
   BENEFIT
========================================================= */

.gsq3-glass-benefit {

    text-align: center;

    position: relative;

    padding: 0 5px;

}


.gsq3-glass-benefit:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 4px;

    right: 0;

    width: 1px;

    height: 72px;

    background: rgba(255,255,255,0.12);

}


/* =========================================================
   BENEFIT ICON
========================================================= */

.gsq3-glass-icon {

    width: 40px;

    height: 40px;

    margin: 0 auto 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(216,179,106,0.55);

    background:
        radial-gradient(
            circle,
            rgba(216,179,106,0.13),
            rgba(0,0,0,0.05)
        );

    box-shadow:
        0 0 12px rgba(216,179,106,0.08);

    color: #e5aa2c;

    font-size: 19px;

}


.gsq3-glass-benefit h4 {

    margin: 0;

    color: #ffffff;

    font-size: 9px;

    font-weight: 500;

    line-height: 1.35;

}


.gsq3-glass-benefit p {

    margin: 4px 0 0;

    color: rgba(255,255,255,0.53);

    font-size: 7px;

    line-height: 1.45;

}


/* =========================================================
   FORM CARD
========================================================= */

.gsq3-glass-form-card {

    width: 100%;

    padding: 18px;

    box-sizing: border-box;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(49,91,133,0.70),
            rgba(17,49,82,0.60)
        );

    border: 1px solid rgba(133,179,220,0.35);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.30),
        inset 0 1px 1px rgba(255,255,255,0.13);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

}


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

.gsq3-glass-form {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 11px;

}


/* =========================================================
   INPUT BOX
========================================================= */

.gsq3-glass-input {

    width: 100%;

    height: 40px;

    display: flex;

    align-items: center;

    box-sizing: border-box;

    overflow: hidden;

    border-radius: 7px;

    border: 1px solid rgba(129,177,220,0.35);

    background:
        linear-gradient(
            90deg,
            rgba(14,53,89,0.85),
            rgba(36,73,110,0.63)
        );

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.05);

}


/* =========================================================
   INPUT ICON
========================================================= */

.gsq3-glass-input-icon {

    width: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e6ab2e;

    font-size: 17px;

    border-right: 1px solid rgba(255,255,255,0.08);

}


/* =========================================================
   INPUT
========================================================= */

.gsq3-glass-input input {

    flex: 1;

    width: 100%;

    height: 100%;

    padding: 0 13px;

    border: none !important;

    outline: none !important;

    background: transparent !important;

    box-shadow: none !important;

    color: #ffffff;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 11px;

}


.gsq3-glass-input input::placeholder {

    color: rgba(255,255,255,0.52);

}


/* =========================================================
   PHONE COUNTRY
========================================================= */

.gsq3-glass-country {

    height: 100%;

    padding: 0 9px;

    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;

    color: #ffffff;

    font-size: 11px;

    border-right: 1px solid rgba(255,255,255,0.14);

}


.gsq3-glass-country b {

    color: rgba(255,255,255,0.65);

    font-size: 12px;

    font-weight: 400;

}


/* =========================================================
   PHONE INPUT
========================================================= */

.gsq3-glass-phone input {

    min-width: 0;

    padding-left: 12px;

}


/* =========================================================
   SUBMIT
========================================================= */

.gsq3-glass-submit {

    width: 100%;

    height: 41px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    margin-top: 1px;

    border: none;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #e6ad2d,
            #d79819
        );

    color: #071d32;

    font-family: "Gilroy", Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2px;

    cursor: pointer;

    transition: all 0.3s ease;

}


.gsq3-glass-submit:hover {

    background:
        linear-gradient(
            135deg,
            #f0c45b,
            #e2a72a
        );

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(218,163,38,0.22);

}


.gsq3-glass-submit-arrow {

    font-size: 18px;

    font-weight: 400;

    transition: transform 0.3s ease;

}


.gsq3-glass-submit:hover
.gsq3-glass-submit-arrow {

    transform: translateX(4px);

}


/* =========================================================
   SECURITY
========================================================= */

.gsq3-glass-security {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 0;

}


.gsq3-glass-lock {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(216,179,106,0.40);

    color: #dca62b;

    font-size: 12px;

}


.gsq3-glass-security p {

    margin: 0;

    color: rgba(255,255,255,0.53);

    font-size: 7px;

    line-height: 1.45;

}


/* =========================================================
   ERROR
========================================================= */

.gsq3-glass-input.gsq3-glass-error {

    border-color: #e45757 !important;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gsq3-glass-inner {

       grid-template-columns: 1fr 360px;
      column-gap: 10px;

        padding-left: 25px;
        padding-right: 25px;

    }

    .gsq3-glass-heading {

        font-size: 29px;

    }

    .gsq3-glass-heading span {

        font-size: 27px;

    }

}


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

@media (max-width: 700px) {

    .gsq3-glass-enquiry {

        min-height: auto;

    }


    .gsq3-glass-inner {

        display: flex;

        flex-direction: column;

        gap: 25px;

        padding: 30px 18px;

    }


    .gsq3-glass-left {

        width: 100%;

        text-align: center;

    }


    .gsq3-glass-eyebrow {

        font-size: 9px;

    }


    .gsq3-glass-heading {

        font-size: 32px;

    }


    .gsq3-glass-heading span {

        font-size: 28px;

    }


    .gsq3-glass-heading-line {

        justify-content: center;

    }


    .gsq3-glass-description {

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

        font-size: 11px;

    }


    .gsq3-glass-benefits {

        max-width: 100%;

    }


    .gsq3-glass-form-card {

        max-width: 390px;

        margin: 0 auto;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gsq3-glass-inner {

        padding: 25px 13px;

    }


    .gsq3-glass-heading {

        font-size: 28px;

    }


    .gsq3-glass-heading span {

        font-size: 25px;

    }


    .gsq3-glass-benefit h4 {

        font-size: 8px;

    }


    .gsq3-glass-benefit p {

        font-size: 6.5px;

    }


    .gsq3-glass-icon {

        width: 35px;
        height: 35px;

    }


    .gsq3-glass-form-card {

        padding: 14px;

    }

}


</style>