/* =========================================
   GS HOME HERO SECTION STYLES
========================================= */

#gshome_hero.gshome_hero {
    width: 100%;
    height: calc(100vh - 84px);
    min-height: calc(100vh - 84px);
    display: flex;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

/* =========================================
   LEFT CONTENT AREA
========================================= */

.gshome_hero_content {
    width: 60%;
    min-height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 12%;
    padding-right: 60px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.gshome_hero_inner {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* =========================================
   LETTER-BY-LETTER & LINE-AFTER-LINE ANIMATION
========================================= */

@keyframes letterFadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-25px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-title-line {
    display: block;
    line-height: 1.08;
}

.hero-desc-line {
    display: block;
    line-height: 1.65;
}

.hero-char {
    display: inline-block;
    opacity: 0;
    animation: letterFadeInTop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity, filter;
}

.char-space {
    display: inline-block;
    width: 0.28em;
}

@keyframes slowSlideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SUBTITLE */

.gshome_hero_subtitle {
    margin: 0 0 20px 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: var(--primary-blue);
}

/* MAIN HEADING */

.gshome_hero_title {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4.4vw, 74px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: var(--dark-navy);
}

/* DESCRIPTION */

.gshome_hero_description {
    margin: 24px 0 0 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 300;
    color: #666666;
    max-width: 480px;
}

/* SEARCH BUTTON */

@keyframes drawLineLeftToRight {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.gshome_hero_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 45px;
    padding-bottom: 6px;
    position: relative;
    text-decoration: none;
    color: var(--dark-navy);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.gshome_hero_button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5b326;
    transform: scaleX(0);
    transform-origin: left center;
    transition: background-color 0.3s ease;
}

.gshome_hero_button.line-active::after {
    animation: drawLineLeftToRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gshome_hero_button:hover {
    color: var(--primary-blue);
}

.gshome_hero_button:hover::after {
    background-color: var(--primary-blue);
}

.gshome_hero_arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.gshome_hero_button:hover .gshome_hero_arrow {
    transform: translateX(4px);
}

/* =========================================
   SOCIAL MEDIA (FAR LEFT VERTICAL CIRCLES)
========================================= */

.gshome_hero_social {
    position: absolute;
    left: 4.5%;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    animation: slowSlideFromTop 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* =========================================
   RIGHT IMAGE WRAPPER (FIXED BACKGROUND ON SCROLL)
========================================= */

.gshome_hero_image_wrap {
    width: 40%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.gshome_hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}



/* =========================================
   RESPONSIVE HERO DESIGN FOR MOBILE & TABLET
========================================= */

@media (max-width: 992px) {
    #gshome_hero.gshome_hero {
        flex-direction: column-reverse;
        min-height: auto;
        max-height: none;
        height: auto;
    }

    .gshome_hero_image_wrap {
        width: 100%;
        height: 55vh;
        min-height: 380px;
        max-height: 480px;
        position: relative;
        background: none;
    }

    .gshome_hero_image {
        opacity: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .gshome_hero_content {
        width: 100%;
        padding: 40px 24px 35px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .gshome_hero_inner {
        max-width: 100%;
    }

    .gshome_hero_subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .gshome_hero_title {
        font-size: clamp(32px, 7vw, 48px);
        line-height: 1.12;
    }

    .gshome_hero_description {
        font-size: 15px;
        margin-top: 16px;
        max-width: 100%;
    }

    .gshome_hero_description br.gshome_hero_desktop {
        display: none;
    }

    .gshome_hero_button {
        margin-top: 28px;
    }

    .gshome_hero_social {
        position: relative;
        left: auto;
        bottom: auto;
        flex-direction: row;
        gap: 12px;
        margin-top: 25px;
        z-index: 5;
    }
}

@media (max-width: 576px) {
    .gshome_hero_content {
        padding: 30px 20px 24px 20px;
    }

    .gshome_hero_title {
        font-size: 32px;
    }

    .gshome_hero_image_wrap {
        height: 50vh;
        min-height: 340px;
    }
}

/* =========================================
   GS HOME INTRO SECTION STYLES
========================================= */

.gshome_intro {
    width: 100%;
    background-color: #ffffff;
    padding: 30px;
    box-sizing: border-box;
}

.gshome_intro_container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

.gshome_intro_left {
    width: 48%;
    padding-left: 12%;
    padding-right: 30px;
    box-sizing: border-box;
}

.gshome_intro_stripes {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.gshome_intro_stripes span {
    width: 2.5px;
    height: 16px;
    background-color: var(--cyan-blue);
    transform: skewX(-25deg);
    display: inline-block;
    border-radius: 1px;
}

.gshome_intro_title {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: -0.5px;
}

.gshome_intro_right {
    width: 52%;
    padding-left: 10px;
    padding-right: 10%;
    padding-top: 6px;
    box-sizing: border-box;
}

.gshome_intro_description {
    margin: 0 0 28px 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 300;
    color: #666666;
    max-width: 460px;
}

.gshome_intro_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e5b326;
    text-decoration: none;
    color: var(--dark-navy);
    font-family: var(--font-primary);
    font-size: 14.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.gshome_intro_button:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.gshome_intro_arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.gshome_intro_button:hover .gshome_intro_arrow {
    transform: translateX(4px);
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
    .gshome_intro_left {
        padding-left: 9%;
        padding-right: 40px;
    }

    .gshome_intro_right {
        padding-right: 9%;
    }
}

@media (max-width: 992px) {
    .gshome_intro {
        padding: 60px 0;
    }

    .gshome_intro_container {
        flex-direction: column;
        gap: 35px;
    }

    .gshome_intro_left {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .gshome_intro_right {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 576px) {
    .gshome_intro_left,
    .gshome_intro_right {
        padding-left: 24px;
        padding-right: 24px;
    }

    .gshome_intro_title {
        font-size: 28px;
    }

    .gshome_intro_description {
        font-size: 15px;
    }
}

/* =========================================
   GS CATEGORIES SECTION (LAND TO LIVING)
========================================= */

.gs_categories {
    width: 100%;
    background-color: #ffffff;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.gs_categories_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.gs_categories_header {
    text-align: center;
    margin-bottom: 45px;
}

.gs_categories_subtitle {
    margin: 0 0 10px 0;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #888888;
    text-transform: uppercase;
}

.gs_categories_title {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .gs_categories_title {
        white-space: nowrap;
    }
}

.gs_categories_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gs_category_card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.gs_category_card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gs_category_img_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: 460px;
    overflow: hidden;
}

.gs_category_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gs_category_card:hover .gs_category_img_wrap img {
    transform: scale(1.06);
}

.gs_category_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 20, 45, 0.8) 0%, rgba(0, 20, 45, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gs_category_card:hover .gs_category_overlay {
    background: linear-gradient(to top, rgba(0, 46, 110, 0.88) 0%, rgba(0, 46, 110, 0.3) 50%, rgba(0, 0, 0, 0) 75%);
}

.gs_category_caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
    padding: 0 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.gs_category_caption h3 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
    transition: transform 0.4s ease, color 0.3s ease;
}

.gs_category_card:hover .gs_category_caption h3 {
    transform: translateY(-4px);
    color: #ffffff;
}

/* RESPONSIVE CATEGORIES */
@media (max-width: 992px) {
    .gs_categories_grid {
        gap: 20px;
    }

    .gs_category_img_wrap {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .gs_categories_grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 24px;
    }

    .gs_category_img_wrap {
        height: 480px;
    }

    .gs_categories_container {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .gs_categories {
        padding: 50px 0;
    }

    .gs_categories_container {
        padding: 0 20px;
    }

    .gs_category_img_wrap {
        height: 420px;
    }
}

/* =========================================
   GS ABOUT COMPANY SECTION (EDITORIAL 6-GRID REDESIGN)
========================================= */

.gs_about_company {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
}

.gs_about_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.gs_about_flex_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT COLUMN */

.gs_about_left_col {
    flex: 0 0 40%;
    max-width: 440px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    
    position: sticky;          /* Sticky left column when scrolling */
    top: 120px;                /* Offset from top of viewport */
    align-self: flex-start;    /* Prevent stretching so sticky works */
}

.gs_about_left_col.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gs_about_stripes_accent {
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
}

.gs_about_stripes_accent span {
    width: 2.5px;
    height: 18px;
    background-color: var(--cyan-blue);
    transform: skewX(-25deg);
    display: inline-block;
    border-radius: 1px;
}

.gs_about_main_title {
    margin: 0 0 24px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.15;
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: -0.8px;
}

.gs_about_main_desc {
    margin: 0 0 32px 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    color: #666666;
}

.gs_about_main_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    position: relative;
    text-decoration: none;
    color: var(--dark-navy);
    font-family: var(--font-primary);
    font-size: 14.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.gs_about_main_button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5b326;
    transition: background-color 0.3s ease;
}

.gs_about_main_button:hover {
    color: var(--primary-blue);
}

.gs_about_main_button:hover::after {
    background-color: var(--primary-blue);
}

.gs_about_arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.gs_about_main_button:hover .gs_about_arrow {
    transform: translateX(4px);
}

/* RIGHT COLUMN (2-COL GRID OF 6 ITEMS) */

.gs_about_right_grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}

.gs_about_grid_item {
    border-bottom: 1px solid #eaeeef;
    padding-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs_about_grid_item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gs_about_grid_item .item_title {
    margin: 0 0 8px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;          /* Adjusted font size to fit on one line */
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: -0.2px;
    white-space: nowrap;      /* Force single-line headings */
}

.gs_about_grid_item .item_desc {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 300;
    color: #777777;
}

/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .gs_about_company {
        padding: 60px 0;
    }

    .gs_about_flex_wrap {
        flex-direction: column;
        gap: 50px;
    }

    .gs_about_left_col {
        max-width: 100%;
        position: static;      /* Turn off sticky layout on tablet/mobile views */
    }

    .gs_about_right_grid {
        gap: 30px 35px;
    }

    .gs_about_grid_item .item_title {
        white-space: normal;  /* Let title wrap on smaller mobile/tablet screens */
    }
}

@media (max-width: 600px) {
    .gs_about_right_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gs_about_container {
        padding: 0 24px;
    }
}

/* =========================================
   GS STATS SECTION
========================================= */

.gs_stats {
    width: 100%;
    background-color: var(--dark-navy);
    padding: 100px 0;
    box-sizing: border-box;
    color: #ffffff;
    overflow: hidden;
}

.gs_stats_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.gs_stats_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}

.gs_stat_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    padding: 15px 30px;
    box-sizing: border-box;
    border-left: 1px solid rgba(0, 174, 239, 0.3);
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.gs_stat_item:last-child {
    border-right: 1px solid rgba(0, 174, 239, 0.3);
}

.gs_stat_label {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.gs_stat_value {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.5vw, 68px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

.gs_stat_sign {
    font-family: var(--font-primary, "Bai Jamjuree", sans-serif);
    font-size: 0.52em;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-left: 3px;
}

/* RESPONSIVE STATS */
@media (max-width: 1100px) {
    .gs_stat_item {
        min-height: 180px;
        padding: 15px 20px;
    }
    
    .gs_stat_label {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .gs_stats_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 0;
    }

    .gs_stat_item {
        min-height: 160px;
        border-right: none;
    }

    .gs_stat_item:nth-child(3) {
        border-right: 1px solid rgba(0, 174, 239, 0.3);
    }

    .gs_stat_item:nth-child(4) {
        border-left: 1px solid rgba(0, 174, 239, 0.3);
    }

    .gs_stat_item:nth-child(5) {
        border-right: 1px solid rgba(0, 174, 239, 0.3);
    }
}

@media (max-width: 600px) {
    .gs_stats {
        padding: 60px 0;
    }

    .gs_stats_container {
        padding: 0 20px;
    }

    .gs_stats_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gs_stat_item {
        min-height: auto;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 174, 239, 0.25);
        gap: 12px;
    }

    .gs_stat_item:last-child {
        border-bottom: none;
    }
}

/* =========================================
   GS TEAM SECTION (CLEAN BRAND INTEGRATED DESIGN)
========================================= */

.gs_team {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
}

.gs_team_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.gs_team_header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gs_team_stripes {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.gs_team_stripes span {
    width: 2.5px;
    height: 16px;
    background-color: var(--cyan-blue);
    transform: skewX(-25deg);
    display: inline-block;
    border-radius: 1px;
}

.gs_team_subtitle {
    margin: 0 0 10px 0;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gs_team_title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: -0.5px;
}

/* 4-COLUMN CARD GRID */

.gs_team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.gs_team_card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #edf1f6;
    box-shadow: 0 10px 30px rgba(0, 46, 110, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(35px);
}

.gs_team_card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gs_team_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 46, 110, 0.1);
    border-color: rgba(0, 108, 183, 0.2);
}

.gs_team_img_box {
    width: 100%;
    height: 310px;
    overflow: hidden;
    position: relative;
    background-color: #f4f7fa;
}

.gs_team_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.gs_team_card:hover .gs_team_img {
    transform: scale(1.05);
}

.gs_team_info_box {
    padding: 22px 20px 24px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.gs_team_info_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: #e5b326;
    transition: width 0.3s ease;
}

.gs_team_card:hover .gs_team_info_box::before {
    width: 60px;
}

.gs_team_info_box .member_name {
    margin: 4px 0 6px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-navy);
    letter-spacing: -0.2px;
}

.gs_team_info_box .member_role {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* SLIDING HOVER LAYER (RIGHT TO LEFT ANIMATION - TRANSLUCENT OVERLAY) */

.gs_team_hover_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10;
    padding: 24px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs_team_card:hover .gs_team_hover_layer {
    transform: translateX(0);
}

.hover_name {
    margin: 0 0 4px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: -0.2px;
}

.hover_role {
    margin: 0 0 14px 0;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hover_bio {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
    color: #1c1c1c;
    padding: 0 4px;
}

/* RESPONSIVE STYLES */

@media (max-width: 1100px) {
    .gs_team_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gs_team_img_box {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .gs_team_title {
        font-size: clamp(20px, 5.2vw, 26px);
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .gs_team {
        padding: 55px 0;
    }

    .gs_team_container {
        padding: 0 16px;
    }

    .gs_team_title {
        font-size: clamp(18px, 5vw, 22px);
        white-space: nowrap;
    }

    .gs_team_grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .gs_team_img_box {
        height: 360px;
    }
}

/* =========================================
   GS TESTIMONIALS SECTION
========================================= */

.gs_testimonials {
    width: 100%;
    position: relative;
    background-image: url('../images/location_bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.gs_testimonials_container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
}

.gs_testimonials_header {
    margin-bottom: 55px;
}

.gs_testimonials_subtitle {
    margin: 0 0 10px 0;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.gs_testimonials_title {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.15;
    font-weight: 400;
    color: #3b2e2b;
    letter-spacing: -0.5px;
    text-align: center;
}

/* SLIDER TRACK & SLIDES */

.gs_testimonials_slider_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gs_testimonials_track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.gs_testimonials_slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0.3;
    transition: opacity 0.35s ease;
}

.gs_testimonials_slide.active {
    opacity: 1;
}

.gs_testimonials_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    align-items: start;
}

.gs_testimonial_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    box-shadow: none;
}

.gs_testimonial_stars {
    font-size: 13.5px;
    color: #3b2e2b;
    letter-spacing: 5px;
    margin-bottom: 24px;
    line-height: 1;
}

.gs_testimonial_quote {
    margin: 0 0 28px 0;
    font-family: var(--font-primary);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 400;
    color: #3b2e2b;
    max-width: 350px;
}

.gs_testimonial_author {
    margin: 0;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    font-weight: 400;
    color: #4a3e3b;
    letter-spacing: 0.5px;
}

/* CONTROLS: DOTS ONLY */

.gs_testimonials_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.gs_slider_dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gs_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 46, 110, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gs_dot.active {
    width: 28px;
    border-radius: 6px;
    background: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 108, 183, 0.4);
}

/* RESPONSIVE TESTIMONIALS (1-BY-1 ON MOBILE - IMPOSSIBLE TO OVERLAP) */
@media (max-width: 992px) {
    .gs_testimonials_track {
        transform: none !important;
        display: block !important;
        width: 100%;
    }

    .gs_testimonials_slide {
        display: contents !important;
        opacity: 1 !important;
    }

    .gs_testimonials_grid {
        display: contents !important;
    }

    .gs_testimonial_item {
        display: none !important;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .gs_testimonial_item.mobile_active {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        opacity: 1 !important;
    }

    .gs_testimonials {
        padding: 75px 0 85px 0;
    }

    .gs_testimonials_header {
        margin-bottom: 40px;
    }

    .gs_testimonial_quote {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .gs_testimonials {
        padding: 60px 0 70px 0;
    }

    .gs_testimonials_container {
        padding: 0 20px;
    }

    .gs_testimonial_quote {
        font-size: 14.5px;
    }
}

/* =========================================
   GS BANNER - FULL WIDTH
========================================= */

#gsbanner {
    width: 100%;
    margin: 0;
    padding: 0 0 0px 0;      /* Reduced from 80px to align image bottom perfectly */
    background: #ffffff;
    box-sizing: border-box;
}

#gsbanner *,
#gsbanner *::before,
#gsbanner *::after {
    box-sizing: border-box;
}


/* =========================================
   MAIN BANNER BOX
========================================= */

.gsbanner__box {
    width: 100%;
    height: 300px;

    margin: 0;

    position: relative;

    background: #d9d9d9;

    display: flex;
    align-items: center;
}


/* =========================================
   LEFT DARK AREA
========================================= */

.gsbanner__content {
    width: 60%;
    height: 100%;

    position: relative;
    z-index: 2;

    padding: 40px 8% 40px 7%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;

    background: #ffffff;

    overflow: hidden;
    
    animation: revealDown 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gsbanner__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    animation: canvasFade 2.5s ease-out both 0.8s;
}

.gsbanner__watermark {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: watermarkFade 1.5s ease-out both 0.5s, gsbannerWatermarkFloat 8s ease-in-out infinite 2s;
}

@keyframes gsbannerWatermarkFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-12px) rotate(2deg);
    }
}


/* =========================================
   BACKGROUND GRID
========================================= */

.gsbanner__content::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            transparent 49%,
            rgba(0,46,110,0.04) 50%,
            transparent 51%
        ),
        linear-gradient(
            0deg,
            transparent 49%,
            rgba(0,46,110,0.04) 50%,
            transparent 51%
        );

    background-size: 75px 75px;

    opacity: 0.5;

    pointer-events: none;
}


/* =========================================
   BREADCRUMB
========================================= */

.gsbanner__breadcrumb {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    margin-bottom: 8px;

    color: #006CB7;

    font-family: var(--font-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.gsbanner__breadcrumb a {
    color: #006CB7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gsbanner__breadcrumb a:hover {
    color: #002E6E;
}

.gsbanner__breadcrumb span {
    color: #006CB7;
}


/* =========================================
   TITLE
========================================= */

.gsbanner__title {
    position: relative;
    z-index: 3;

    display: flex;
    flex-wrap: wrap;

    margin: 0 0 8px 0;

    color: #002E6E;

    font-family: var(--font-primary);

    font-size: clamp(32px, 4.5vw, 48px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.gsbanner__title-highlight {
    color: #00AEEF;
}

.letter {
    display: inline-block;
    opacity: 0;
    animation: letterDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gsbanner__title span {
    font-weight: 300;
}


/* =========================================
   DESCRIPTION
========================================= */

.gsbanner__description {
    position: relative;
    z-index: 3;

    margin: 0;

    color: #000000;

    font-family: var(--font-primary);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   BUTTON
========================================= */

.gsbanner__button {
    position: relative;
    z-index: 3;

    width: fit-content;

    min-width: 115px;
    height: 38px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #dfa72c;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.gsbanner__button:hover {
    background: #ffffff;
    color: #202b35;
}


/* =========================================
   SLIDER NAVIGATION
========================================= */

.gsbanner__navigation {
    position: absolute;

    z-index: 20;

    left: 25px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;
}

.gsbanner__nav {
    width: 35px;
    height: 35px;

    padding: 0;
    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 20px;

    font-weight: 300;

    cursor: pointer;
}

.gsbanner__nav--next {
    background: #dfa72c;

    border-color: #dfa72c;
}

.gsbanner__nav:hover {
    background: #dfa72c;

    border-color: #dfa72c;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.gsbanner__image {
    position: absolute;

    z-index: 5;

    top: 0px;

    right: 0;

    width: 40%;

    height: calc(100% + 40px);

    overflow: hidden;

    background: #d9d9d9;
    
    animation: revealDown 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.gsbanner__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
    
    animation: imageScale 1.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.gsbanner__image:hover img {
    transform: scale(1.02);
}


/* =========================================
   ANIMATIONS & KEYFRAMES
========================================= */

@keyframes revealDown {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes imageScale {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes watermarkFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.15;
    }
}

@keyframes letterDown {
    0% {
        opacity: 0;
        transform: translateY(-25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes canvasFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* =========================================
   GSBANNER RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    .gsbanner__box {
        height: auto !important;
        min-height: auto !important;
        background: #ffffff !important;
    }

    .gsbanner__content {
        width: 100% !important;
        height: auto !important;
        padding: 40px 24px 30px 24px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .gsbanner__title {
        font-size: 34px !important;
        margin-bottom: 8px !important;
    }

    .gsbanner__breadcrumb {
        margin-bottom: 12px !important;
    }

    .gsbanner__description {
        font-size: 15px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
    }

    .gsbanner__watermark {
        display: block !important;
        width: 140px !important;
        left: 85% !important;
        opacity: 0.10 !important;
    }

    /* Hide banner image on mobile/tablet */
    .gsbanner__image {
        display: none !important;
    }

    .gsabout {
        padding: 40px 0 20px 0 !important;
    }
}

@media (max-width: 576px) {
    .gsbanner__content {
        padding: 30px 20px 25px 20px !important;
    }

    .gsbanner__title {
        font-size: 28px !important;
    }

    .gsbanner__watermark {
        width: 110px !important;
        left: 80% !important;
        opacity: 0.08 !important;
    }
}


/* =========================================
   GSABOUT SECTION
========================================= */

.gsabout {
    width: 100%;
    padding: 80px 0 30px 0;   /* Increased top padding to clear the banner image */
    background: #ffffff;
    overflow: hidden;
}

.gsabout__container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gsabout__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gsabout__image-wrapper {
    flex: 0 0 40%;
    position: relative;
    z-index: 1;
    min-height: 320px;
    align-self: stretch;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.gsabout__image {
    position: absolute;
    top: -12.5%;
    left: 0;
    width: 100%;
    height: 125%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.gsabout__content-wrapper {
    flex: 0 0 60%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.gsabout__header {
    margin-bottom: 15px;
    padding-left: 45px;
}

.gsabout__subtitle {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    color: #006CB7;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.gsabout__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #002E6E;
    line-height: 1.2;
    margin: 0;
}

.gsabout__frame-box {
    border: 4px solid #006CB7;
    padding: 30px 30px 30px 135px;
    margin-left: -95px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
}

.gsabout__text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #333333;
    line-height: 1.65;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .gsabout {
        padding: 45px 0 25px 0;
    }

    .gsabout__wrapper {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .gsabout__content-wrapper {
        display: contents;
    }

    .gsabout__header {
        order: 1;
        padding-left: 0;
        margin-bottom: 0;
    }

    .gsabout__title {
        font-size: 26px;
    }

    .gsabout__image-wrapper {
        order: 2;
        width: 100%;
        height: 260px;
        min-height: 260px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .gsabout__image {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gsabout__frame-box {
        order: 3;
        margin-left: 0;
        padding: 24px 20px;
        border-width: 3px;
    }
}

/* =========================================================
   GSVMV
   OVERLAPPING ARCHITECTURE SECTION
========================================================= */

#gsvmv {
    width: 100%;
    margin: 0;
    padding: 30px;

    background: #ffffff;

    box-sizing: border-box;
}

#gsvmv *,
#gsvmv *::before,
#gsvmv *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN LAYOUT

   Reference proportions:
   - Left small image
   - Center white/brown boxes
   - Right large image
========================================================= */

.gsvmv__layout {
    width: 100%;
    max-width: 1250px;

    height: 540px;

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   RIGHT LARGE IMAGE

   Starts from TOP
========================================================= */

.gsvmv__right-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 33.333%;

    height: 88%;

    z-index: 1;

    overflow: hidden;

    background: #dddddd;
}

.gsvmv__right-image img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;

    display: block;

    object-fit: cover;
    object-position: center;

    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.gsvmv__right-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   WHITE CENTER BOX

   This is the main upper content area.
========================================================= */

.gsvmv__white-box {
    position: absolute;

    top: 0;
    left: 8%;                 /* Shifted left to align with standard site margin */

    width: 58.666%;           /* Spans to 66.666% where right image starts */

    height: 50%;              /* Ends at 50% where navy box starts */

    z-index: 3;

    background: transparent;

    padding: 30px 0 0 0;      /* Align content to top/left */

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* =========================================================
   LABEL
========================================================= */

.gsvmv__label {
    display: block;

    margin-bottom: 12px;

    color: #006CB7;            /* Brand Blue */

    font-family: var(--font-primary);

    font-size: 11px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   WHITE BOX HEADING
========================================================= */

.gsvmv__heading {
    width: 100%;

    margin: 0 0 16px;

    color: #202020;

    font-family: var(--font-primary);

    font-size: clamp(26px, 2.8vw, 36px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   WHITE BOX DESCRIPTION
========================================================= */

.gsvmv__description {
    width: 76%; 
    color: #444444;           /* Darker text color for better contrast */

    font-family: var(--font-primary);

    font-size: 15px;          /* Increased font size */

    line-height: 1.75;        /* Increased line-height */

    font-weight: 400;

    text-align: justify;      /* Justify text alignment */
}


/* =========================================================
   BUTTON
========================================================= */

.gsvmv__button {
    margin-left: 24%;         /* Shift button to align with 33.333% (brown box) */
    width: fit-content;
    min-width: 120px;
    height: 36px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 20px;

    background: #50372a;

    color: #ffffff;

    text-decoration: none;

    font-family: var(--font-primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.gsvmv__button:hover {
    background: #29201b;

    transform: translateY(-1px);
}


/* =========================================================
   LEFT SMALL IMAGE

   Starts higher and runs underneath the white box.
========================================================= */

.gsvmv__left-image {
    position: absolute;

    left: 0;

    top: 44%;                 /* Raised top edge to 44% height */

    width: 33.333%;

    height: 36%;              /* Increased height (ends at 80%) */

    z-index: 2;

    overflow: hidden;

    background: #dddddd;
}

.gsvmv__left-image img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;

    display: block;

    object-fit: cover;
    object-position: center;

    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.gsvmv__left-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   BROWN CENTER BOX

   Starts exactly where white box finishes.
========================================================= */

.gsvmv__brown-box {
    position: absolute;

    left: 33.333%;

    top: 50%;                 /* Starts at 50% height */

    width: 33.333%;

    height: 50%;              /* Ends at 100% (hangs down lower) */

    z-index: 5;

    padding: 30px;            /* Equal padding on all sides */

    background: #002E6E;      /* Brand Navy */

    color: #ffffff;

    display: flex;            /* Flex layout to center content */
    flex-direction: column;
    justify-content: center;  /* Vertically center content */
}


/* =========================================================
   FEATURE
========================================================= */

.gsvmv__feature {
    margin: 0 0 25px;
}

.gsvmv__feature:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE HEADING
========================================================= */

.gsvmv__feature h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: var(--font-primary);

    font-size: 18px;          /* Increased for visual hierarchy */

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.2px;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.gsvmv__feature p {
    width: 100%;              /* Expanded to 100% to align perfectly with the heading */

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--font-primary);

    font-size: 13.5px;        /* Set to 13.5px to fit text beautifully without cutoffs */

    line-height: 1.6;

    font-weight: 400;

    text-align: justify;      /* Justify text alignment */
}


/* =========================================================
   SUBTLE LOAD ANIMATION
========================================================= */

.gsvmv__right-image,
.gsvmv__white-box,
.gsvmv__left-image,
.gsvmv__brown-box {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.gsvmv__right-image.gsvmv__show,
.gsvmv__white-box.gsvmv__show,
.gsvmv__left-image.gsvmv__show,
.gsvmv__brown-box.gsvmv__show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ANIMATION DELAYS
========================================================= */

.gsvmv__right-image {
    transition-delay: 0s;
}

.gsvmv__white-box {
    transition-delay: 0.12s;
}

.gsvmv__left-image {
    transition-delay: 0.24s;
}

.gsvmv__brown-box {
    transition-delay: 0.36s;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .gsvmv__layout {
        max-width: 1120px;

        height: 580px;
    }

    .gsvmv__heading {
        font-size: 37px;
    }

    .gsvmv__white-box {
        padding-left: 0px;
        padding-right: 0px;
    }

    .gsvmv__brown-box {
        padding: 35px;        /* Equal padding on all sides */
    }
}

/* =========================================================
   GSVMV RESPONSIVE DESIGN (MOBILE & TABLET)
========================================================= */
@media (max-width: 992px) {
    #gsvmv {
        padding: 40px 20px !important;
    }

    .gsvmv__layout {
        height: auto !important;
        min-height: auto !important;
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        width: 100% !important;
    }

    /* 1. OUR VISION (First Content) */
    .gsvmv__white-box {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        order: 1 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gsvmv__label {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .gsvmv__description {
        width: 100% !important;
        text-align: left !important;
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        color: #333333 !important;
    }

    /* 2. VISION IMAGE (vision.png - With OUR VISION graphic) */
    .gsvmv__left-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
        order: 2 !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gsvmv__left-image img {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    /* 3. OUR MISSION (Second Content - Navy Box) */
    .gsvmv__brown-box {
        position: static !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 26px 20px !important;
        order: 3 !important;
        background: #002E6E !important;
        border-radius: 10px !important;
        box-shadow: 0 10px 25px rgba(0, 46, 110, 0.18) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gsvmv__feature {
        margin: 0 !important;
    }

    .gsvmv__feature h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
    }

    .gsvmv__feature p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-align: left !important;
    }

    /* 4. MISSION IMAGE (mission.png - Tall Building with Logo) */
    .gsvmv__right-image {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
        order: 4 !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gsvmv__right-image img {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    #gsvmv {
        padding: 80px 30px 90px;
    }

    .gsvmv__layout {
        height: 500px;
    }

    .gsvmv__white-box {
        padding: 40px;
    }

    .gsvmv__heading {
        font-size: 28px;
    }

    .gsvmv__brown-box {
        padding: 30px;        /* Equal padding on all sides */
    }

    .gsvmv__feature {
        margin-bottom: 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    #gsvmv {
        padding: 60px 20px 80px;
    }

    .gsvmv__layout {
        height: 900px;

        max-width: 500px;
    }


    /* RIGHT IMAGE */

    .gsvmv__right-image {
        top: 0;
        right: 0;

        width: 70%;

        height: 430px;
    }


    /* WHITE BOX */

    .gsvmv__white-box {
        top: 180px;
        left: 0;

        width: 82%;

        height: 340px;

        padding: 40px 30px;
    }

    .gsvmv__heading {
        width: 100%;

        font-size: 27px;
    }

    .gsvmv__description {
        width: 100%;
    }


    /* LEFT IMAGE */

    .gsvmv__left-image {
        left: 0;

        top: 520px;

        width: 67%;

        height: 180px;
    }


    /* BROWN BOX */

    .gsvmv__brown-box {
        left: 28%;

        top: 625px;

        width: 68%;

        height: 275px;

        padding: 30px;        /* Equal padding on all sides */
    }

    .gsvmv__feature h3 {
        font-size: 16px;
    }

    .gsvmv__feature p {
        font-size: 13.5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .gsvmv__layout {
        height: 850px;
    }

    .gsvmv__right-image {
        width: 72%;
        height: 390px;
    }

    .gsvmv__white-box {
        top: 160px;

        width: 85%;

        height: 320px;

        padding: 32px 25px;
    }

    .gsvmv__heading {
        font-size: 24px;
    }

    .gsvmv__left-image {
        top: 490px;

        width: 68%;

        height: 165px;
    }

    .gsvmv__brown-box {
        top: 585px;

        left: 27%;

        width: 70%;

        height: 265px;

        padding: 25px;        /* Equal padding on all sides */
    }
}

/* ======================================= HOME PAGE FOUNDER START ========================================================== */
/* ==================== GSHM FOUNDER STYLES ==================== */

.gshm_founder {
    padding: 30px 0;          /* Increased padding for spacious feel */
    background-color: #ffffff; /* Clean white background */
    font-family: var(--font-primary);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.gshm_founder_container {
    max-width: 1250px;         /* Match website standard width */
    width: 95%;
    margin: 0 auto;
    display: flex;             /* Align image left, content right */
    align-items: center;
}

/* --- LEFT IMAGE AREA --- */
.gshm_founder_img_area {
    flex: 0 0 40%; /* Takes 40% width */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
}

/* Rotating Brand Blue Border */
.gshm_founder_border_anim {
    position: absolute;
    width: 310px;
    height: 430px;            /* Increased height from 380px */
    border: 2px dashed #006CB7; /* Brand Blue Dashed Border */
    border-radius: 4px;
    animation: rotateBorder 20s linear infinite; /* Continuous Rotation */
    z-index: 1;
}

/* Photo Box */
.gshm_founder_photo_box {
    position: relative;
    width: 280px;
    height: 400px;            /* Increased height from 350px */
    overflow: hidden;
    border-radius: 4px;
    z-index: 2;
    background: #000;
}

.gshm_founder_message {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.8;
    color: #111111;            /* Black Content Text */
    margin-bottom: 0;         /* Reset margin-bottom since footer is removed */
    position: relative;
}

.gshm_founder_message p {
    margin: 0 0 15px;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: justify;
}

.gshm_founder_message p:last-child {
    margin-bottom: 0;
}

.gshm_founder_photo_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}

/* Hover: Zoom */
.gshm_founder_container:hover .gshm_founder_photo_box img {
    transform: scale(1.05);
}

/* --- RIGHT CONTENT AREA --- */
.gshm_founder_content_area {
    flex: 1;
    position: relative;
    z-index: 2;
}

.gshm_founder_section_tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #006CB7;            /* Brand Blue Heading Tag */
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.gshm_founder_name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;          /* Restored original premium size */
    color: #002E6E;            /* Brand Navy Name Heading */
    font-weight: 400;          /* Elegant normal serif weight */
    margin-bottom: 5px;
}

.gshm_founder_role {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #555555;            /* Dark Grey Role */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.gshm_founder_quote_separator {
    width: 60px;
    height: 3px;
    background: #006CB7;       /* Brand Blue line */
    margin-bottom: 30px;
}

.gshm_founder_big_quote {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #006CB7;            /* Brand Blue Quote Mark */
    line-height: 0;
    vertical-align: -20px;
    margin-right: 5px;
    opacity: 0.25;             /* Subtle watermark opacity */
}

/* ==================== ANIMATIONS ==================== */

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .gshm_founder_img_area { flex: 0 0 45%; }
    .gshm_founder_border_anim { width: 260px; height: 380px; } /* Height increased from 320px */
    .gshm_founder_photo_box { width: 240px; height: 350px; }  /* Height increased from 300px */
    .gshm_founder_name { font-size: 26px; }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .gshm_founder { padding: 40px 0; }
    
    .gshm_founder_container {
        flex-direction: column;
        text-align: center;
    }

    /* Stack Image on Top */
    .gshm_founder_img_area {
        flex: 0 0 auto;
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }

    /* Resize Image for Mobile */
    .gshm_founder_photo_box {
        width: 260px;
        height: 370px;        /* Height increased from 320px */
    }
    
    .gshm_founder_border_anim {
        width: 280px;
        height: 400px;        /* Height increased from 340px */
    }

    /* Center Align Text */
    .gshm_founder_content_area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gshm_founder_quote_separator { margin: 0 auto 25px auto; }
}
/* ======================================= HOME PAGE FOUNDER END ========================================================== */


/* =========================================================
   CONTACT SECTION
========================================================= */

#gscontact.gscontact_section {
    width: 100%;
    padding: 80px 30px 30px 30px; /* Increased top padding to clear the banner image */
    background: #f3f3f3;
    box-sizing: border-box;
    font-family: var(--font-primary); /* Unified branding font */
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

#gscontact .gscontact_wrapper {
    position: relative;
    width: min(1120px, 100%);
    min-height: 600px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 46, 110, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 1;
    animation: gscontactFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gscontactFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Cyan strip along right edge */
#gscontact .gscontact_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;             /* Aligned to match the 220px social box width */
    height: 100%;
    background: #00AEEF;      /* Brand Cyan column */
    z-index: 0;               /* Sits behind content, info panel, and social box */
}


/* =========================================================
   LEFT SECTION
========================================================= */

#gscontact .gscontact_left {
    position: relative;
    width: 64%;
    min-height: 600px;
    background: #ffffff;
    z-index: 2;               /* Keeps left form side on top of Cyan background strip */
}


#gscontact .gscontact_content {
    width: 455px;
    max-width: calc(100% - 80px);
    margin-left: 115px;
    padding-top: 58px;
}


/* =========================================================
   HEADING
========================================================= */

#gscontact .gscontact_content h2 {
    margin: 0 0 18px;
    color: #002E6E;            /* Brand Navy Heading */
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}


#gscontact .gscontact_intro {
    margin: 0 0 27px;
    color: #777777;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   LOGO
========================================================= */

#gscontact .gscontact_logo_mark {
    position: absolute;
    top: 25px;
    left: 25px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   FORM & ALERTS
========================================================= */

#gscontact .gscontact_form {
    width: 100%;
}

/* Alert Notification Banner */
#gscontact .gscontact_alert {
    position: relative;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 18px;
    display: none;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    line-height: 1.45;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#gscontact .gscontact_alert.active {
    display: flex;
    animation: gsAlertFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gsAlertFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#gscontact .gscontact_alert.alert_success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #16a34a;
    color: #166534;
}

#gscontact .gscontact_alert.alert_error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

#gscontact .gscontact_alert.alert_warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #d97706;
    color: #92400e;
}

#gscontact .gscontact_alert .alert_icon {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

#gscontact .gscontact_alert.alert_success .alert_icon { color: #16a34a; }
#gscontact .gscontact_alert.alert_error .alert_icon { color: #dc2626; }
#gscontact .gscontact_alert.alert_warning .alert_icon { color: #d97706; }

#gscontact .gscontact_alert .alert_text {
    flex: 1;
}

#gscontact .gscontact_alert .alert_title {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 13px;
}

#gscontact .gscontact_alert .alert_close {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0 0 0 6px;
    transition: opacity 0.2s ease;
}

#gscontact .gscontact_alert .alert_close:hover {
    opacity: 1;
}


/* Form Fields */
#gscontact .gscontact_field {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}


#gscontact .gscontact_field input,
#gscontact .gscontact_field select,
#gscontact .gscontact_field textarea {

    width: 100%;
    height: 52px;

    padding: 18px 7px 5px;

    border: none;
    border-bottom: 1.5px solid #e0e0e0;

    outline: none;

    background: transparent;

    color: #222222;

    font-family: inherit;
    font-size: 13px;

    box-sizing: border-box;

    border-radius: 0;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


#gscontact .gscontact_field label {

    position: absolute;

    left: 7px;
    top: 18px;

    color: #777777;

    font-size: 12px;

    pointer-events: none;

    transition: all 0.2s ease;
}


/* Floating label */

#gscontact .gscontact_field input:focus + label,
#gscontact .gscontact_field input:not(:placeholder-shown) + label,
#gscontact .gscontact_field textarea:focus + label,
#gscontact .gscontact_field textarea:not(:placeholder-shown) + label,
#gscontact .gscontact_field select:focus + label,
#gscontact .gscontact_field select:valid + label {

    top: 4px;

    font-size: 9px;

    color: #777777;
}


/* Focus */

#gscontact .gscontact_field input:focus,
#gscontact .gscontact_field select:focus,
#gscontact .gscontact_field textarea:focus {

    border-bottom-color: #006CB7;
    box-shadow: 0 2px 0 0 #006CB7;
}


/* Error state */
#gscontact .gscontact_field.has_error input,
#gscontact .gscontact_field.has_error select,
#gscontact .gscontact_field.has_error textarea {
    border-bottom-color: #dc2626 !important;
    box-shadow: 0 1.5px 0 0 #dc2626 !important;
}

#gscontact .gscontact_field.has_error label {
    color: #dc2626 !important;
}

#gscontact .gscontact_field_error {
    display: none;
    font-size: 11px;
    color: #dc2626;
    margin-top: 3px;
    padding-left: 7px;
    line-height: 1.25;
    animation: gsErrorSlide 0.2s ease-out;
}

#gscontact .gscontact_field.has_error .gscontact_field_error {
    display: block;
}

@keyframes gsErrorSlide {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   PROJECT DROPDOWN
========================================================= */

#gscontact .gscontact_select_field select {

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}


#gscontact .gscontact_select_field::after {

    content: "";

    position: absolute;

    right: 8px;
    top: 22px;

    width: 6px;
    height: 6px;

    border-right: 1px solid #555555;
    border-bottom: 1px solid #555555;

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   MESSAGE
========================================================= */

#gscontact .gscontact_message_field {
    margin-bottom: 10px;
}


#gscontact .gscontact_message_field textarea {
    height: 68px;
    resize: none;
    padding-top: 20px;
}


/* =========================================================
   SEND BUTTON
========================================================= */

#gscontact .gscontact_submit {

    width: 100%;
    height: 48px;

    margin-top: 14px;

    border: none;
    outline: none;

    background: linear-gradient(135deg, #002E6E 0%, #006CB7 100%);

    color: #ffffff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    box-shadow: 0 4px 15px rgba(0, 46, 110, 0.3);

    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

#gscontact .gscontact_submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

/* Shimmer effect */
#gscontact .gscontact_submit::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

#gscontact .gscontact_submit:hover:not(:disabled)::after {
    left: 100%;
}


#gscontact .gscontact_submit span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
    position: relative;
    z-index: 1;
}

#gscontact .gscontact_submit .btn_loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#gscontact .gscontact_submit:hover:not(:disabled) {

    background: linear-gradient(135deg, #006CB7 0%, #00AEEF 100%);
    box-shadow: 0 6px 20px rgba(0, 108, 183, 0.4);
    transform: translateY(-2px);
}


/* =========================================================
   TOP ACCENT BLOCK
========================================================= */

#gscontact .gscontact_yellow_top {

    position: absolute;

    z-index: 1;

    top: 0;
    right: 0;

    width: 220px;             /* Aligned to match the 220px social box width */
    height: 93px;

    background: #006CB7;      /* Brand Blue Block */
}





#gscontact .gscontact_info_panel {

    position: absolute;

    z-index: 3;

    top: 72px;
    right: 0;

    width: 337px;
    height: 319px;

    background: linear-gradient(160deg, #003580 0%, #002E6E 40%, #001d45 100%);
    box-shadow: 0 10px 30px rgba(0, 30, 69, 0.3);
}


/* Accent small square */

#gscontact .gscontact_info_panel::before {

    content: "";

    position: absolute;

    width: 27px;
    height: 27px;

    left: -14px;
    top: -13px;

    background: #00AEEF;      /* Brand Cyan Accent */
}


/* =========================================================
   INFO CONTENT
========================================================= */

#gscontact .gscontact_info_inner {

    padding: 32px 34px;
}


#gscontact .gscontact_info_inner h3 {

    margin: 0 0 27px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   INFO ITEMS
========================================================= */

#gscontact .gscontact_info_item {

    display: flex;

    align-items: center;

    min-height: 45px;

    margin-bottom: 9px;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
    padding: 6px 8px;
    border-radius: 6px;
    margin-left: -8px;
}


#gscontact a.gscontact_info_item:hover {

    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}


/* =========================================================
   ICON
========================================================= */

#gscontact .gscontact_icon {

    width: 34px;
    min-width: 34px;

    display: flex;

    align-items: center;
    justify-content: flex-start;
}


#gscontact .gscontact_icon svg {

    width: 23px;
    height: 23px;

    fill: none;

    stroke: #00AEEF;          /* Brand Cyan Icons */

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;
}


#gscontact .gscontact_info_text {

    color: #eeeeee;

    font-size: 11px;

    line-height: 1.6;

    letter-spacing: 0.2px;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

#gscontact .gscontact_social_box {

    position: absolute;

    z-index: 4;

    right: 0;
    bottom: 0;

    width: 220px;             /* Increased patch width to fit 4 icons comfortably */
    height: 72px;             /* Retained original height */

    background: #00AEEF;      /* Brand Cyan Background */

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;
}


#gscontact .gscontact_social_box a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #002E6E;

    text-decoration: none;

    font-size: 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}


#gscontact .gscontact_social_box a:hover {

    transform: translateY(-3px) scale(1.1);
    color: #ffffff;
    background: rgba(0, 46, 110, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    #gscontact.gscontact_section {
        padding: 40px 15px;
    }


    #gscontact .gscontact_wrapper {
        min-height: auto;
        overflow: visible;
    }

    #gscontact .gscontact_wrapper::after {
        display: none;        /* Disable background strip on mobile stack */
    }


    #gscontact .gscontact_left {

        width: 100%;

        min-height: 620px;
    }


    #gscontact .gscontact_content {

        width: calc(100% - 70px);

        max-width: none;

        margin-left: 55px;

        padding-top: 55px;

        padding-right: 30px;
    }


    #gscontact .gscontact_info_panel {

        position: relative;

        top: auto;
        right: auto;

        width: calc(100% - 30px);

        height: auto;

        min-height: 320px;

        margin-left: 30px;

        margin-top: 0;
    }


    #gscontact .gscontact_social_box {

        position: relative;

        width: 100%;

        height: 65px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #gscontact.gscontact_section {

        padding: 20px 10px;
    }


    #gscontact .gscontact_content {

        width: calc(100% - 45px);

        margin-left: 35px;

        padding-top: 50px;

        padding-right: 15px;
    }


    #gscontact .gscontact_content h2 {

        font-size: 34px;
    }


    #gscontact .gscontact_intro br {

        display: none;
    }


    #gscontact .gscontact_left {

        min-height: 625px;
    }





    #gscontact .gscontact_info_panel {

        width: 100%;

        margin-left: 0;
    }


    #gscontact .gscontact_info_inner {

        padding: 30px 28px;
    }


    #gscontact .gscontact_yellow_top {

        width: 95px;
        height: 65px;
    }
}