/* =========================================
   GS HOME HERO SECTION STYLES
========================================= */

#gshome_hero.gshome_hero {
    width: 100%;
    min-height: calc(100vh - 84px);
    max-height: 800px;
    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;
}

/* 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(--cyan-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 */

.gshome_hero_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 45px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5b326;
    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: all 0.3s ease;
}

.gshome_hero_button:hover {
    color: var(--primary-blue);
    border-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;
}

/* =========================================
   RIGHT IMAGE WRAPPER (FIXED BACKGROUND ON SCROLL)
========================================= */

.gshome_hero_image_wrap {
    width: 40%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background-image: url('../images/luxury_home_hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.gshome_hero_image {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* =========================================
   IMAGE NEXT BUTTON
========================================= */

.gshome_hero_next {
    position: absolute;
    top: 50%;
    right: 0;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: none;
    outline: none;
    cursor: pointer;
    background: var(--cyan-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.gshome_hero_next:hover {
    background: var(--dark-navy);
}

.gshome_hero_next span {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-1px);
}

/* =========================================
   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;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.gs_category_card a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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;
}

.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;
}

.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 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: 220px;
    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(48px, 4.2vw, 82px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

/* 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: 20px;
        border-left: 1px solid rgba(0, 174, 239, 0.3);
        border-right: 1px solid rgba(0, 174, 239, 0.3) !important;
        gap: 20px;
    }
}

/* =========================================
   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: 100px 0 110px 0;
    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 */
@media (max-width: 992px) {
    .gs_testimonials_grid {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 480px;
        margin: 0 auto;
    }

    .gs_testimonials {
        padding: 75px 0 85px 0;
    }

    .gs_testimonials_header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .gs_testimonials {
        padding: 60px 0 70px 0;
    }

    .gs_testimonials_container {
        padding: 0 20px;
    }

    .gs_testimonial_quote {
        font-size: 14.5px;
    }
}