/* =========================================================================
   GAJKESHRI INTERIORS — CLEANED & REORGANIZED STYLESHEET (PART 1)
   Sections in this file:
     1. Global / Reset
     2. Hero
     3. Marquee
     4. About
     5. Services
     6. Our Work / Projects (banner + grid)
   NOTE: Duplicate rules from the original file have been merged.
   Where a rule was declared twice with different values, the LAST
   (i.e. the one that actually wins in the browser) value was kept.
========================================================================= */


/* =========================================================================
   1. GLOBAL / RESET
========================================================================= */

html {
    scroll-behavior: smooth;
}

#contact,
#gk-contact-section {
    scroll-margin-top: 80px;
}


/* =========================================================================
   2. HERO
========================================================================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal, #171513);
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.hero-slide picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: transform 6s ease;
}

.hero-slide.active img {
    transform: scale(1.05);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(15, 13, 11, .78) 0%, rgba(15, 13, 11, .52) 42%, rgba(15, 13, 11, .18) 100%),
        linear-gradient(0deg, rgba(15, 13, 11, .55) 0%, rgba(15, 13, 11, 0) 50%);
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    width: 100%;
    max-width: 680px;
    margin-right: auto;
}

.hero-text .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--sans, Arial, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-soft, #e5bd72);
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp .8s var(--ease, ease) .1s forwards;
}

.hero-text .hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    display: inline-block;
    background: var(--gold-soft, #e5bd72);
}

.hero-title {
    max-width: 900px;
    margin: 0;
    font-family: var(--serif, Georgia, serif);
    font-size: clamp(40px, 4.5vw, 66px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.025em;
    color: var(--warm-white, #fffdf9);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp .9s var(--ease, ease) .2s forwards;
}

.hero-description {
    max-width: 460px;
    margin: 24px 0 30px;
    font-family: var(--sans, Arial, sans-serif);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 253, 249, .86);
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp .9s var(--ease, ease) .35s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp .9s var(--ease, ease) .5s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-controls {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
}

.hero-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans, Arial, sans-serif);
    font-size: 11px;
    letter-spacing: .1em;
    color: rgba(255, 253, 249, .7);
}

.hero-count-current {
    color: var(--gold-soft, #e5bd72);
    font-weight: 700;
}

.hero-progress-track {
    position: relative;
    width: 130px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 253, 249, .25);
}

.hero-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-light, #f1cb7c);
}

.hero-progress-fill.animate {
    animation: heroProgress 5s linear forwards;
}

@keyframes heroProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.hero-arrow {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: transparent;
    color: var(--warm-white, #fffdf9);
    cursor: pointer;
    transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}

.hero-arrow:hover {
    border-color: var(--gold-primary, #c9994e);
    background: var(--gold-primary, #c9994e);
    color: var(--charcoal, #171513);
    transform: translateY(-2px);
}

.hero-arrow svg {
    width: 16px;
    height: 16px;
}

.hero-float {
    position: absolute;
    right: 40px;
    bottom: 50%;
    z-index: 5;
    transform: translateY(50%);
    padding: 22px 30px;
    text-align: right;
    background: rgba(23, 21, 19, .42);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 253, 249, .25);
}

.hero-float .num {
    font-family: var(--serif, Georgia, serif);
    font-size: 34px;
    line-height: 1;
    color: var(--gold-soft, #e5bd72);
}

.hero-float .lbl {
    margin-top: 6px;
    font-family: var(--sans, Arial, sans-serif);
    font-size: 11px;
    letter-spacing: .06em;
    color: rgba(255, 253, 249, .85);
}

.hero-float-mobile {
    display: none;
}

/* -------- HERO: Large desktop -------- */
@media (min-width: 1600px) {
    .hero {
        height: 94vh;
        min-height: 700px;
    }
}

/* -------- HERO: Tablet (hide float) -------- */
@media (max-width: 1150px) {
    .hero-float {
        display: none;
    }
}

/* -------- HERO: Tablet / mobile (<=900px) -------- */
@media (max-width: 900px) {
    .hero {
        position: relative;
        width: 100vw;
        height: 100svh;
        min-height: 100svh;
        max-height: none;
        overflow: hidden;
        align-items: flex-start;
    }

    .hero-slides,
    .hero-slide,
    .hero-slide picture {
        position: absolute;
        inset: 0;
        width: 100vw;
        height: 100svh;
    }

    .hero-slide img {
        position: absolute;
        inset: 0;
        width: 100vw;
        height: 100svh;
        min-width: 100vw;
        min-height: 100svh;
        object-fit: cover;
        object-position: center center;
        transform: scale(1);
        transition: transform 6s ease;
    }

    .hero-slide.active img {
        transform: scale(1.025);
    }

    .hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background:
            linear-gradient(180deg,
                rgba(10, 9, 8, 0.58) 0%,
                rgba(15, 13, 11, 0.38) 25%,
                rgba(15, 13, 11, 0.18) 48%,
                rgba(15, 13, 11, 0.45) 72%,
                rgba(10, 9, 8, 0.70) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 5;
        width: 100%;
        height: 100svh;
        min-height: 100svh;
        padding-left: 22px;
        padding-right: 22px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text {
        width: 100%;
        max-width: 600px;
        margin-right: auto;
    }

    .hero-text .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: .16em;
        line-height: 1.3;
    }

    .hero-text .hero-eyebrow::before {
        width: 22px;
        height: 1px;
    }

    .hero-title {
        max-width: 500px;
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.08;
        letter-spacing: -.02em;
    }

    .hero-description {
        max-width: 390px;
        margin: 16px 0 22px;
        font-size: 14px;
        line-height: 1.58;
        color: rgba(255, 253, 249, .88);
    }

    .hero-actions {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 9px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .hero-actions .btn {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    .hero-controls {
        position: absolute;
        left: 22px;
        bottom: 30px;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 6;
    }

    .hero-progress {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 10px;
    }

    .hero-progress-track {
        width: 72px;
        height: 2px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .hero-arrow svg {
        width: 14px;
        height: 14px;
    }

    .hero-float {
        display: none;
    }
}

/* -------- HERO: Small mobile (<=600px) -------- */
@media (max-width: 600px) {
    .hero {
        width: 100vw;
        height: 100svh;
        min-height: 100svh;
        max-height: none;
    }

    .hero-slide,
    .hero-slide picture {
        width: 100vw;
        height: 100svh;
    }

    .hero-slide img {
        width: 100vw;
        height: 100svh;
        min-width: 100vw;
        min-height: 100svh;
        object-fit: cover;
        object-position: center center;
    }

    .hero-slide::after {
        background:
            linear-gradient(180deg,
                rgba(8, 7, 5, .20) 0%,
                rgba(8, 7, 5, .16) 24%,
                rgba(8, 7, 5, .28) 42%,
                rgba(8, 7, 5, .58) 58%,
                rgba(8, 7, 5, .84) 73%,
                rgba(7, 6, 5, .96) 88%,
                rgba(5, 5, 4, .99) 100%);
    }

    .hero-content {
        width: 100%;
        height: 100svh;
        min-height: 100svh;
        padding-top: 17vh;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 95px;
        justify-content: flex-start;
    }

    .hero-text .hero-eyebrow {
        font-size: 9px;
        letter-spacing: .15em;
        margin-bottom: 12px;
        gap: 7px;
    }

    .hero-text .hero-eyebrow::before {
        width: 18px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(30px, 9.2vw, 40px);
        line-height: 1.08;
        letter-spacing: -.018em;
    }

    .hero-description {
        max-width: 350px;
        margin: 15px 0 21px;
        font-size: 13px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: nowrap;
        margin-top: 18px;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 0;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 9.5px;
        letter-spacing: .01em;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-controls {
        left: 20px;
        bottom: 24px;
        gap: 8px;
    }

    .hero-progress {
        gap: 6px;
        font-size: 9px;
    }

    .hero-progress-track {
        width: 58px;
        height: 2px;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
    }

    .hero-arrow svg {
        width: 12px;
        height: 12px;
    }
}

/* -------- HERO: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .hero-content {
        padding-top: 14vh;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 85px;
    }

    .hero-text .hero-eyebrow {
        font-size: 8px;
        margin-bottom: 9px;
        letter-spacing: .13em;
    }

    .hero-title {
        font-size: 27px;
        line-height: 1.08;
    }

    .hero-description {
        max-width: 300px;
        margin: 12px 0 17px;
        font-size: 11.5px;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 6px;
    }

    .hero-actions .btn {
        min-height: 37px;
        padding: 8px 9px;
        font-size: 8.5px;
    }

    .hero-controls {
        left: 16px;
        bottom: 20px;
        gap: 6px;
    }

    .hero-progress {
        gap: 5px;
        font-size: 8px;
    }

    .hero-progress-track {
        width: 48px;
    }

    .hero-arrow {
        width: 31px;
        height: 31px;
    }

    .hero-arrow svg {
        width: 11px;
        height: 11px;
    }
}

/* -------- HERO: Landscape phone -------- */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: 100svh;
        min-height: 100svh;
    }

    .hero-slide img {
        height: 100svh;
        min-height: 100svh;
    }

    .hero-content {
        padding-top: 8vh;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        margin: 9px 0 13px;
        font-size: 11px;
        max-width: 400px;
    }

    .hero-actions .btn {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 9px;
    }

    .hero-controls {
        bottom: 15px;
    }
}


/* =========================================================================
   3. MARQUEE
========================================================================= */

.marquee {
    background: var(--charcoal);
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}

.marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--gold-soft);
    letter-spacing: .03em;
    padding: 0 26px;
    white-space: nowrap;
}

.marquee-track .dot {
    color: var(--gold-dark);
    font-style: normal;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .marquee-track span {
        font-size: 14px;
        padding: 0 18px;
    }
}


/* =========================================================================
   4. ABOUT
========================================================================= */

.gi-about-section {
    position: relative;
    width: 100%;
    min-height: 780px;
    padding: 100px 0 90px;
    overflow: hidden;
    background: linear-gradient(90deg, #fffdf9 0%, #fbf6ed 48%, #f5ecdd 100%);
}

.gi-about-container {
    width: min(1400px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(600px, 1.25fr);
    align-items: center;
    gap: 45px;
    position: relative;
    z-index: 5;
}

.gi-about-content {
    position: relative;
    z-index: 10;
    padding: 10px 0;
    animation: giAboutContentReveal 1s ease both;
}

.gi-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #b9853d;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gi-about-eyebrow span {
    width: 48px;
    height: 1px;
    background: #b9853d;
    display: block;
}

.gi-about-title {
    margin: 0;
    max-width: 650px;
    color: #171513;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 3.7vw, 40px);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: -1.3px;
}

.gi-about-title span {
    color: #b9853d;
    font-style: normal;
}

.gi-about-line {
    width: 80px;
    height: 2px;
    background: #b9853d;
    margin: 25px 0;
}

.gi-about-description {
    max-width: 555px;
    margin: 0;
    color: #6f6a63;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.gi-about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 610px;
    margin-top: 42px;
}

.gi-about-feature {
    text-align: center;
    transition: transform .35s ease;
}

.gi-about-feature:hover {
    transform: translateY(-7px);
}

.gi-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 11px;
    border: 1px solid #bd8d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9853d;
    font-size: 20px;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.gi-about-feature:hover .gi-feature-icon {
    background: #b9853d;
    color: #fff;
    transform: rotate(5deg) scale(1.05);
}

.gi-about-feature p {
    margin: 0;
    color: #625d57;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.gi-about-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 55px;
}

.gi-about-bottom span {
    width: 80px;
    height: 1px;
    background: #bd8d4d;
}

.gi-about-bottom p {
    margin: 0;
    color: #b9853d;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.gi-about-visual {
    position: relative;
    min-height: 650px;
    width: 100%;
}

.gi-visual-circle {
    position: absolute;
    width: 690px;
    height: 690px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fffdf9 0%, #f5ead9 48%, #e8d5b7 100%);
    left: 80px;
    top: -20px;
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(185, 133, 61, .05);
}

.gi-visual-circle::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(185, 133, 61, .55);
    clip-path: polygon(0 0, 70% 0, 100% 70%, 100% 100%, 0 100%);
}

.gi-main-image {
    position: absolute;
    right: -25px;
    top: 0;
    width: 69%;
    height: 650px;
    overflow: hidden;
    z-index: 4;
    border-radius: 170px 0 0 170px;
    box-shadow: 0 25px 60px rgba(50, 35, 20, .16);
}

.gi-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 30%);
    pointer-events: none;
}

.gi-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.gi-main-image:hover img {
    transform: scale(1.04);
}

.gi-floating-image {
    position: absolute;
    z-index: 7;
    overflow: hidden;
    background: #fff;
    padding: 7px;
    box-shadow: 0 15px 35px rgba(40, 30, 20, .18);
    border: 1px solid rgba(185, 133, 61, .18);
}

.gi-floating-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gi-floating-one {
    width: 235px;
    height: 255px;
    top: 55px;
    left: 150px;
    animation: giFloatOne 5s ease-in-out infinite;
}

.gi-floating-two {
    width: 270px;
    height: 205px;
    top: 320px;
    left: 205px;
    animation: giFloatTwo 5.5s ease-in-out infinite;
}

.gi-floating-three {
    width: 155px;
    height: 175px;
    bottom: 20px;
    left: 155px;
    animation: giFloatThree 5s ease-in-out infinite;
}

.gi-vertical-text {
    position: absolute;
    top: 100px;
    left: 440px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff5ea;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-style: italic;
    line-height: 1.2;
}

.gi-vertical-text b {
    font-style: normal;
    font-size: 22px;
    font-weight: 400;
    margin-top: 5px;
}

.gi-dots {
    position: absolute;
    left: 85px;
    bottom: 145px;
    z-index: 3;
    width: 85px;
    display: grid;
    grid-template-columns: repeat(5, 7px);
    gap: 12px;
}

.gi-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c49a61;
    opacity: .75;
}

.gi-about-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gi-about-circle-1 {
    width: 480px;
    height: 480px;
    left: -280px;
    top: 60px;
    border: 1px solid rgba(185, 133, 61, .20);
}

.gi-about-circle-2 {
    width: 330px;
    height: 330px;
    right: -200px;
    bottom: -120px;
    background: rgba(224, 205, 173, .22);
}

@keyframes giAboutContentReveal {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes giFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes giFloatTwo {

    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes giFloatThree {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

/* -------- ABOUT: Tablet (<=1200px) -------- */
@media (max-width: 1200px) {
    .gi-about-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gi-about-title {
        font-size: clamp(34px, 4vw, 50px);
    }

    .gi-visual-circle {
        width: 590px;
        height: 590px;
        left: 20px;
    }

    .gi-main-image {
        width: 62%;
        height: 570px;
    }

    .gi-floating-one {
        width: 190px;
        height: 215px;
        left: 55px;
    }

    .gi-floating-two {
        width: 225px;
        height: 175px;
        left: 120px;
        top: 285px;
    }

    .gi-floating-three {
        width: 130px;
        height: 145px;
        left: 80px;
    }

    .gi-vertical-text {
        left: 340px;
        font-size: 21px;
    }

    .gi-dots {
        left: 35px;
    }
}

/* -------- ABOUT: Tablet / small laptop (<=900px) -------- */
@media (max-width: 900px) {
    .gi-about-section {
        padding: 80px 0;
    }

    .gi-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gi-about-content,
    .gi-about-bottom {
        text-align: center;
    }

    .gi-about-eyebrow {
        justify-content: center;
    }

    .gi-about-title,
    .gi-about-line,
    .gi-about-description,
    .gi-about-features {
        margin-left: auto;
        margin-right: auto;
    }

    .gi-about-bottom {
        justify-content: center;
    }

    .gi-about-visual {
        min-height: 620px;
        max-width: 760px;
        margin: 0 auto;
    }

    .gi-visual-circle {
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
    }

    .gi-main-image {
        right: 0;
        width: 58%;
        height: 590px;
    }

    .gi-floating-one {
        left: 8%;
        top: 50px;
    }

    .gi-floating-two {
        left: 19%;
        top: 300px;
    }

    .gi-floating-three {
        left: 12%;
        bottom: 15px;
    }

    .gi-vertical-text {
        left: 53%;
    }
}

/* -------- ABOUT: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gi-about-section {
        padding: 65px 0 55px;
    }

    .gi-about-container {
        width: 92%;
        gap: 45px;
    }

    .gi-about-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .gi-about-eyebrow span {
        width: 30px;
    }

    .gi-about-title {
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -.5px;
    }

    .gi-about-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .gi-about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 10px;
        margin-top: 32px;
    }

    .gi-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .gi-about-feature p {
        font-size: 11px;
    }

    .gi-about-bottom {
        margin-top: 38px;
        gap: 10px;
    }

    .gi-about-bottom span {
        width: 35px;
    }

    .gi-about-bottom p {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .gi-about-visual {
        min-height: 460px;
        width: 100%;
    }

    .gi-visual-circle {
        width: 420px;
        height: 420px;
        top: 20px;
    }

    .gi-main-image {
        right: -4%;
        top: 7px;
        width: 85%;
        height: 431px;
        border-radius: 100px 0 0 100px;
    }

    .gi-floating-one {
        width: 199px;
        height: 167px;
        left: 2%;
        top: 28px;
    }

    .gi-floating-two {
        width: 214px;
        height: 134px;
        left: 10%;
        top: 193px;
    }

    .gi-floating-three {
        width: 161px;
        height: 138px;
        left: 3%;
        bottom: 0px;
    }

    .gi-vertical-text {
        left: 57%;
        top: 80px;
        font-size: 16px;
    }

    .gi-vertical-text b {
        font-size: 15px;
    }

    .gi-dots {
        left: 2%;
        bottom: 80px;
        transform: scale(.65);
        transform-origin: left bottom;
    }

    .gi-about-circle-1 {
        width: 250px;
        height: 250px;
        left: -180px;
    }

    .gi-about-circle-2 {
        width: 200px;
        height: 200px;
        right: -130px;
        letter-spacing: 1.5px;
    }
}

/* -------- ABOUT: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gi-about-title {
        font-size: 21px;
        letter-spacing: 0.5px;
    }

    .gi-about-description {
        font-size: 13px;
    }

    .gi-about-visual {
        min-height: 390px;
    }

    .gi-visual-circle {
        width: 350px;
        height: 350px;
    }

    .gi-main-image {
        height: 365px;
    }

    .gi-floating-one {
        width: 120px;
        height: 130px;
    }

    .gi-floating-two {
        width: 140px;
        height: 110px;
        top: 159px;
    }

    .gi-floating-three {
        width: 85px;
        height: 95px;
    }

    .gi-vertical-text {
        font-size: 13px;
    }
}

/* -------- ABOUT: Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {

    .gi-about-content,
    .gi-floating-image {
        animation: none;
    }

    .gi-main-image img {
        transition: none;
    }
}


/* =========================================================================
   GAJKESHRI INTERIORS — CLEANED & REORGANIZED STYLESHEET (PART 2)
   Sections in this file:
     5. Services (the version actually used in index.php: .gk-service-*)
     5b. Legacy / unused Services block (#services / .service-card) — kept
         only because it existed in the original file, but nothing in the
         supplied index.php uses these classes. Safe to delete if unused.
     6. Our Work / Projects — banner + grid (.gi-work-*, used for #projects)
     6b. Legacy / unused Project block (#gaj-projects) — not referenced by
         index.php. Safe to delete if unused.
========================================================================= */


/* =========================================================================
   5. SERVICES  (.gk-services-section — used by #services in index.php)
========================================================================= */

.gk-services-section {
    position: relative;
    width: 100%;
    padding: 70px 20px;
    background: #f7f3ec;
    overflow: hidden;
}

.gk-services-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -220px;
    left: -220px;
    background: radial-gradient(circle, rgba(190, 139, 67, 0.12), transparent 70%);
    pointer-events: none;
}

.gk-services-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(190, 139, 67, 0.10), transparent 70%);
    pointer-events: none;
}

.gk-services-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gk-services-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
}

.gk-services-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #b67c35;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.gk-services-eyebrow span {
    display: block;
    width: 55px;
    height: 1px;
    background: #b67c35;
}

.gk-services-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.15;
    font-weight: 400;
    color: #1d1b19;
}

.gk-services-heading h2 em {
    color: #b67c35;
    font-style: normal;
}

.gk-services-heading p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #77716a;
    font-size: 16px;
    line-height: 1.7;
}

.gk-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gk-service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    background: #fffdf9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(35, 29, 20, 0.08);
    transition: transform .45s ease, box-shadow .45s ease;
    opacity: 0;
    transform: translateY(35px);
    animation: gkServiceReveal .8s ease forwards;
}

.gk-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(35, 29, 20, 0.16);
}

.gk-service-item:nth-child(1) {
    animation-delay: .05s;
}

.gk-service-item:nth-child(2) {
    animation-delay: .12s;
}

.gk-service-item:nth-child(3) {
    animation-delay: .19s;
}

.gk-service-item:nth-child(4) {
    animation-delay: .26s;
}

.gk-service-item:nth-child(5) {
    animation-delay: .33s;
}

.gk-service-item:nth-child(6) {
    animation-delay: .40s;
}

@keyframes gkServiceReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gk-service-item:focus-visible {
    outline: 2px solid #b67c35;
    outline-offset: 4px;
}

.gk-service-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #e9e2d8;
}

.gk-service-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 45%);
    opacity: 0;
    transition: opacity .45s ease;
}

.gk-service-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.gk-service-item:hover .gk-service-photo img {
    transform: scale(1.08);
}

.gk-service-item:hover .gk-service-photo::after {
    opacity: 1;
}

.gk-service-content {
    padding: 20px 22px 24px;
    background: #fffdf9;
}

.gk-service-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b67c35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.gk-service-number span {
    display: block;
    width: 30px;
    height: 1px;
    background: #d8c7ad;
}

.gk-service-info {
    display: grid;
    grid-template-columns: 64px 1fr 40px;
    align-items: center;
    gap: 16px;
}

.gk-service-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7eee0;
    border: 1px solid #ead9bd;
    color: #9d6725;
    font-family: Georgia, serif;
    font-size: 28px;
    transition: background .4s ease, color .4s ease, transform .4s ease;
}

.gk-service-item:hover .gk-service-icon {
    background: #b67c35;
    color: #fff;
    transform: rotate(6deg) scale(1.05);
}

.gk-service-text {
    min-width: 0;
}

.gk-service-text h3 {
    margin: 0 0 7px;
    color: #211f1c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
}

.gk-service-text p {
    margin: 0;
    color: #77716a;
    font-size: 13.5px;
    line-height: 1.55;
}

.gk-service-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #b67c35;
    color: #fff;
    font-size: 20px;
    transition: transform .4s ease, background .4s ease;
}

.gk-service-item:hover .gk-service-arrow {
    transform: translateX(5px);
    background: #8f5c20;
}

.gk-services-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 55px;
    color: #b67c35;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
}

.gk-services-bottom span {
    width: 55px;
    height: 1px;
    background: #b67c35;
}

/* -------- SERVICES: Tablet (<=1000px) -------- */
@media (max-width: 1000px) {
    .gk-services-section {
        padding: 80px 18px;
    }

    .gk-services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gk-service-content {
        padding: 18px 18px 22px;
    }

    .gk-service-info {
        grid-template-columns: 56px 1fr 38px;
        gap: 12px;
    }

    .gk-service-icon {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }

    .gk-service-text h3 {
        font-size: 19px;
    }

    .gk-service-text p {
        font-size: 13px;
    }

    .gk-service-arrow {
        width: 38px;
        height: 38px;
    }
}

/* -------- SERVICES: Mobile (<=650px) -------- */
@media (max-width: 650px) {
    .gk-services-section {
        padding: 65px 15px;
    }

    .gk-services-heading {
        margin-bottom: 38px;
    }

    .gk-services-eyebrow {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .gk-services-eyebrow span {
        width: 28px;
    }

    .gk-services-heading h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .gk-services-heading p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 14px;
    }

    .gk-services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gk-service-photo {
        aspect-ratio: 1.45 / 1;
    }

    .gk-service-content {
        padding: 18px 18px 22px;
    }

    .gk-service-number {
        margin-bottom: 13px;
        font-size: 12px;
    }

    .gk-service-info {
        grid-template-columns: 55px 1fr 38px;
        gap: 12px;
    }

    .gk-service-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .gk-service-text h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .gk-service-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    .gk-service-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .gk-services-bottom {
        margin-top: 42px;
        gap: 10px;
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .gk-services-bottom span {
        width: 25px;
    }
}

/* -------- SERVICES: Small mobile (<=600px) heading override --------
   (Applies the site-wide "unify mobile heading sizes" rule) */
@media (max-width: 600px) {
    .gk-services-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .gk-services-heading p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
    }
}

/* -------- SERVICES: Very small mobile (<=400px / 380px) -------- */
@media (max-width: 400px) {
    .gk-services-heading h2 {
        font-size: 28px;
    }

    .gk-service-info {
        grid-template-columns: 48px 1fr 34px;
        gap: 10px;
    }

    .gk-service-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .gk-service-text h3 {
        font-size: 18px;
    }

    .gk-service-text p {
        font-size: 12px;
    }

    .gk-service-arrow {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .gk-services-heading h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .gk-services-heading p {
        font-size: 13px;
        line-height: 1.55;
    }
}


/* =========================================================================
   5b. LEGACY / UNUSED SERVICES BLOCK  (#services / .service-card)
   Not referenced anywhere in the supplied index.php. Kept only so nothing
   is silently lost — delete this whole block if you confirm it's unused.
========================================================================= */

#services {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(250, 247, 241, 0.88), rgba(250, 247, 241, 0.88)),
        url("des-service.png");
    background-size: contain;
    background-position: top center;
    background-attachment: scroll;
}

#services>.container {
    position: relative;
    z-index: 2;
}

.services-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.services-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 18px 0 14px;
}

.services-head p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.services-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    background: transparent;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(180, 150, 90, 0.18);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(23, 21, 19, 0.08);
    transition: transform .45s ease, box-shadow .45s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(23, 21, 19, 0.16);
}

.service-img {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.service-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.07);
}

.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.18));
    pointer-events: none;
}

.service-body {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 27px 28px;
}

.service-num {
    font-family: var(--serif);
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: .14em;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.service-arrow {
    margin-top: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(23, 21, 19, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}

.service-card:hover .service-arrow {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

@media (max-width: 1000px) {
    #services {
        background-position: center center;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .service-body {
        padding: 23px 24px 26px;
    }
}

@media (max-width: 600px) {
    #services {
        background-position: top center;
        background-size: contain;
        background-image:
            linear-gradient(rgba(250, 247, 241, 0.92), rgba(250, 247, 241, 0.92)),
            url("mob-ser.png");
        background-attachment: scroll;
    }

    .services-head {
        margin-bottom: 38px;
    }

    .services-head h2 {
        font-size: 30px;
    }

    .services-head p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-img {
        aspect-ratio: 16 / 10;
    }

    .service-body {
        padding: 22px 22px 25px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 13.5px;
    }
}

@media (max-width: 380px) {
    .services-grid {
        gap: 15px;
    }

    .service-body {
        padding: 20px;
    }

    .service-arrow {
        width: 35px;
        height: 35px;
    }
}


/* =========================================================================
   6. OUR WORK / PROJECTS  (.gi-work-* — used by #projects in index.php)
========================================================================= */

.gi-work-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f5ef;
    overflow: hidden;
}

.gi-work-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f8f5ef;
    isolation: isolate;
}

.gi-work-banner-picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.gi-work-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    /* Full image visible; not cropped. */
    object-fit: contain;
    object-position: center center;
    background: #eee8dd;
    transition: transform 1s ease, filter 1s ease;
}

/* Final gradient + hover state (overrides earlier duplicate rule) */
.gi-work-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(248, 245, 239, 0.12) 0%,
            rgba(248, 245, 239, 0.08) 30%,
            rgba(210, 195, 174, 0.18) 55%,
            rgba(160, 135, 105, 0.38) 78%,
            rgba(105, 82, 55, 0.58) 100%);
}

.gi-work-banner:hover .gi-work-banner-image {
    transform: scale(1.015);
}

/* Final banner content position (overrides earlier duplicate rule) */
.gi-work-banner-content {
    position: absolute;
    left: 5%;
    bottom: 52px;
    top: auto;
    transform: none;
    width: min(540px, 48%);
    z-index: 3;
}

.gi-work-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: #a97838;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gi-work-eyebrow span {
    display: block;
    width: 38px;
    height: 1px;
    flex-shrink: 0;
    background: #b98745;
    opacity: .8;
}

.gi-work-banner-content h2 {
    margin: 0;
    max-width: 500px;
    font-family: var(--serif, Georgia, serif);
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -.035em;
    color: #181715;
}

.gi-work-banner-content h2 strong {
    display: block;
    color: #ad7835;
    font-weight: 400;
}

.gi-work-banner-content p {
    max-width: 500px;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5e5b56;
    font-weight: 400;
}

.gi-work-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 20px 30px;
    box-sizing: border-box;
}

.gi-work-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    width: 100%;
}

.gi-work-card {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-decoration: none;
    border-radius: 7px;
    background: #ddd;
    cursor: pointer;
    isolation: isolate;
    transition: transform .45s ease, box-shadow .45s ease;
}

.gi-work-card-large {
    grid-row: span 2;
}

.gi-work-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}

.gi-work-card-large .gi-work-card-image {
    min-height: 532px;
}

.gi-work-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
    transition: transform .9s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.gi-work-card:hover img {
    transform: scale(1.06);
}

.gi-work-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top,
            rgba(20, 18, 15, .88) 0%, rgba(20, 18, 15, .42) 30%,
            rgba(20, 18, 15, .08) 62%, rgba(20, 18, 15, 0) 78%);
    transition: background .5s ease;
}

.gi-work-card:hover .gi-work-card-overlay {
    background: linear-gradient(to top,
            rgba(20, 18, 15, .93) 0%, rgba(20, 18, 15, .48) 35%,
            rgba(20, 18, 15, .08) 68%, rgba(20, 18, 15, 0) 82%);
}

.gi-work-card-info {
    position: absolute;
    left: 18px;
    right: 16px;
    bottom: 17px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 11px;
    color: #fff;
}

.gi-work-number {
    flex-shrink: 0;
    margin-bottom: 3px;
    color: #c9944b;
    font-family: var(--serif, Georgia, serif);
    font-size: 19px;
    line-height: 1;
}

.gi-work-card-text {
    min-width: 0;
    flex: 1;
}

.gi-work-category {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, .78);
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gi-work-card-text h3 {
    margin: 0;
    color: #fff;
    font-family: var(--serif, Georgia, serif);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
}

.gi-work-card-text p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
    line-height: 1.35;
}

.gi-work-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.gi-work-card:hover .gi-work-arrow {
    background: #b77b36;
    border-color: #b77b36;
    transform: translateX(4px);
}

.gi-work-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(35, 28, 20, .14);
}

.gi-work-card:focus-visible {
    outline: 2px solid #b77b36;
    outline-offset: 3px;
}

/* -------- OUR WORK: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gi-work-banner {
        height: 390px;
    }

    .gi-work-banner-content {
        left: 4.5%;
        bottom: 42px;
        width: 55%;
    }

    .gi-work-banner-content h2 {
        font-size: clamp(36px, 6vw, 56px);
    }

    .gi-work-banner-content p {
        max-width: 420px;
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.55;
    }

    .gi-work-content {
        padding: 10px 14px 26px;
    }

    .gi-work-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gi-work-card-large {
        grid-row: auto;
    }

    .gi-work-card-image,
    .gi-work-card-large .gi-work-card-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gi-work-card-info {
        left: 14px;
        right: 13px;
        bottom: 13px;
        gap: 8px;
    }

    .gi-work-number {
        font-size: 17px;
    }

    .gi-work-card-text h3 {
        font-size: 18px;
    }

    .gi-work-card-text p {
        font-size: 9px;
    }

    .gi-work-arrow {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

/* -------- OUR WORK: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gi-work-section {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .gi-work-banner {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .gi-work-banner-picture {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .gi-work-banner-image {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

    .gi-work-banner::after {
        background:
            linear-gradient(90deg,
                rgba(248, 245, 239, .78) 0%, rgba(248, 245, 239, .42) 34%,
                rgba(248, 245, 239, .08) 68%, rgba(248, 245, 239, 0) 100%),
            linear-gradient(0deg, rgba(20, 18, 15, .18), rgba(20, 18, 15, 0) 55%);
    }

    /* Final mobile text position: top area (overrides earlier bottom-anchored rule) */
    .gi-work-banner-content {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 18%;
        bottom: auto;
        width: auto;
        margin: 0;
        padding: 0;
        z-index: 5;
    }

    .gi-work-eyebrow {
        gap: 7px;
        margin-bottom: 9px;
        font-size: 7px;
        letter-spacing: .20em;
    }

    .gi-work-eyebrow span {
        width: 24px;
    }

    .gi-work-banner-content h2 {
        max-width: 280px;
        font-size: clamp(30px, 9vw, 44px);
        line-height: .93;
        margin: 0;
    }

    .gi-work-banner-content p {
        max-width: 290px;
        margin-top: 10px;
        font-size: 9px;
        line-height: 1.45;
    }

    .gi-work-content {
        width: 100%;
        margin: 0;
        padding: 8px 8px 22px;
        box-sizing: border-box;
    }

    .gi-work-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        width: 100%;
    }

    .gi-work-card {
        width: 100%;
        border-radius: 6px;
    }

    .gi-work-card-image,
    .gi-work-card-large .gi-work-card-image {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .gi-work-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .gi-work-card-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(20, 18, 15, .91) 0%, rgba(20, 18, 15, .46) 35%, rgba(20, 18, 15, .04) 72%);
    }

    .gi-work-card-info {
        left: 11px;
        right: 10px;
        bottom: 10px;
        gap: 7px;
    }

    .gi-work-number {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .gi-work-category {
        margin-bottom: 3px;
        font-size: 6.5px;
        letter-spacing: .10em;
    }

    .gi-work-card-text h3 {
        font-size: 15px;
        line-height: 1.08;
    }

    .gi-work-card-text p {
        margin-top: 3px;
        font-size: 8px;
        line-height: 1.3;
    }

    .gi-work-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .gi-work-card:hover {
        transform: none;
        box-shadow: 0 10px 24px rgba(35, 28, 20, .12);
    }

    .gi-work-card:hover img {
        transform: scale(1.03);
    }
}

/* -------- OUR WORK: heading/paragraph size unification (<=600px) -------- */
@media (max-width: 600px) {
    .gi-work-banner-content h2 {
        font-size: 36px;
        line-height: 1.2;
        max-width: 100%;
    }

    .gi-work-banner-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
    }
}

/* -------- OUR WORK: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gi-work-banner {
        height: 300px;
    }

    .gi-work-banner-content {
        left: 17px;
        right: 17px;
        bottom: 26px;
    }

    .gi-work-banner-content h2 {
        max-width: 280px;
        font-size: 25px;
    }

    .gi-work-banner-content p {
        max-width: 280px;
        font-size: 10px;
    }

    .gi-work-content {
        padding-left: 6px;
        padding-right: 6px;
    }

    .gi-work-grid {
        gap: 7px;
    }

    .gi-work-card-image,
    .gi-work-card-large .gi-work-card-image {
        aspect-ratio: 16 / 10;
    }

    .gi-work-card-info {
        left: 9px;
        right: 8px;
        bottom: 9px;
    }

    .gi-work-card-text h3 {
        font-size: 14px;
    }

    .gi-work-card-text p {
        font-size: 7.5px;
    }

    .gi-work-arrow {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* -------- OUR WORK: Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {

    .gi-work-banner-image,
    .gi-work-card-image img,
    .gi-work-card,
    .gi-work-arrow {
        transition: none;
    }

    .gi-work-banner:hover .gi-work-banner-image,
    .gi-work-card:hover img,
    .gi-work-card:hover {
        transform: none;
    }
}


/* =========================================================================
   6b. LEGACY / UNUSED PROJECT BLOCK  (#gaj-projects)
   Not referenced anywhere in the supplied index.php. Kept only so nothing
   is silently lost — delete this whole block if you confirm it's unused.
========================================================================= */

#gaj-projects {
    position: relative;
}

.gaj-project-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 6px;
    background: #eee8df;
    animation: gajProjectFade .8s ease both;
}

.gaj-project-hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.gaj-project-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease;
}

.gaj-project-hero:hover .gaj-project-hero-image img {
    transform: scale(1.03);
}

.gaj-project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(250, 247, 241, .02) 0%, rgba(250, 247, 241, .04) 40%,
            rgba(20, 18, 16, .12) 70%, rgba(20, 18, 16, .38) 100%);
}

.gaj-project-hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    width: 390px;
    max-width: 40%;
}

.gaj-project-small-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #a97432;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.gaj-project-small-title span {
    width: 40px;
    height: 1px;
    background: #ae7a3a;
}

.gaj-project-hero-text h2 {
    margin: 0;
    font-family: var(--serif, Georgia, "Times New Roman", serif);
    font-size: clamp(40px, 4.2vw, 66px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
    color: #171513;
}

.gaj-project-hero-text h2 b {
    display: block;
    font-weight: 400;
    color: #a97432;
}

.gaj-project-hero-text p {
    margin: 22px 0 0;
    max-width: 420px;
    color: #55514b;
    font-size: 14px;
    line-height: 1.7;
}

.gaj-project-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 22px;
    width: 100%;
    animation: gajProjectFade .8s ease .12s both;
}

.gaj-project-row-second {
    margin-top: 22px;
    animation: gajProjectFade .8s ease .22s both;
}

.gaj-project-big {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3.3;
    overflow: hidden;
    border-radius: 6px;
    background: #eee8df;
    text-decoration: none;
    cursor: pointer;
}

.gaj-project-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
    min-width: 0;
}

.gaj-project-small {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #eee8df;
    text-decoration: none;
    cursor: pointer;
}

.gaj-project-big img,
.gaj-project-small img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}

.gaj-project-big:hover img,
.gaj-project-small:hover img {
    transform: scale(1.07);
}

.gaj-project-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(0deg,
            rgba(20, 18, 16, .90) 0%, rgba(20, 18, 16, .50) 30%,
            rgba(20, 18, 16, .08) 70%, transparent 100%);
    opacity: 0;
    transition: opacity .45s ease;
}

.gaj-project-big:hover .gaj-project-card-overlay,
.gaj-project-small:hover .gaj-project-card-overlay {
    opacity: 1;
}

.gaj-project-card-number {
    position: absolute;
    left: 24px;
    bottom: 24px;
    font-family: var(--serif, Georgia, serif);
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
}

.gaj-project-card-content {
    padding-left: 35px;
    padding-right: 50px;
}

.gaj-project-card-content span {
    display: block;
    margin-bottom: 6px;
    color: #d3a15e;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gaj-project-card-content h3 {
    margin: 0;
    font-family: var(--serif, Georgia, serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    color: #fffdf9;
}

.gaj-project-card-content small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
}

.gaj-project-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: white;
    font-size: 17px;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.gaj-project-big:hover .gaj-project-card-arrow,
.gaj-project-small:hover .gaj-project-card-arrow {
    background: #b77d35;
    border-color: #b77d35;
    transform: translateX(4px);
}

@keyframes gajProjectFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .gaj-project-hero {
        min-height: 440px;
    }

    .gaj-project-hero-text {
        right: 5%;
        width: 360px;
        max-width: 43%;
    }

    .gaj-project-row {
        gap: 16px;
    }

    .gaj-project-side {
        gap: 16px;
    }

    .gaj-project-row-second {
        margin-top: 16px;
    }

    .gaj-project-card-overlay {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .gaj-project-hero {
        min-height: 500px;
        margin-bottom: 22px;
        border-radius: 5px;
    }

    .gaj-project-hero-image img {
        object-position: center top;
    }

    .gaj-project-hero::after {
        background: linear-gradient(180deg,
                rgba(250, 247, 241, 0) 0%, rgba(250, 247, 241, .02) 35%, rgba(250, 247, 241, .82) 100%);
    }

    .gaj-project-hero-text {
        left: 20px;
        right: 20px;
        bottom: 25px;
        top: auto;
        transform: none;
        width: auto;
        max-width: none;
    }

    .gaj-project-small-title {
        margin-bottom: 12px;
        font-size: 8px;
        letter-spacing: .2em;
        gap: 8px;
    }

    .gaj-project-small-title span {
        width: 28px;
    }

    .gaj-project-hero-text h2 {
        font-size: 39px;
        line-height: .98;
    }

    .gaj-project-hero-text p {
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.55;
        max-width: 100%;
    }

    .gaj-project-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .gaj-project-row-second {
        margin-top: 16px;
    }

    .gaj-project-side {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .gaj-project-big,
    .gaj-project-small {
        width: 100%;
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .gaj-project-card-overlay {
        opacity: 1;
        padding: 18px;
        background: linear-gradient(0deg,
                rgba(20, 18, 16, .90) 0%, rgba(20, 18, 16, .38) 50%, transparent 78%);
    }

    .gaj-project-card-number {
        left: 18px;
        bottom: 18px;
        font-size: 13px;
    }

    .gaj-project-card-content {
        padding-left: 28px;
        padding-right: 45px;
    }

    .gaj-project-card-content span {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .gaj-project-card-content h3 {
        font-size: 19px;
    }

    .gaj-project-card-content small {
        font-size: 10px;
        margin-top: 3px;
    }

    .gaj-project-card-arrow {
        right: 14px;
        bottom: 14px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .gaj-project-hero {
        min-height: 460px;
    }

    .gaj-project-hero-text {
        left: 16px;
        right: 16px;
        bottom: 20px;
    }

    .gaj-project-hero-text h2 {
        font-size: 35px;
    }

    .gaj-project-hero-text p {
        font-size: 11.5px;
    }

    .gaj-project-card-content h3 {
        font-size: 17px;
    }
}



/* =========================================================================
   GAJKESHRI INTERIORS — CLEANED & REORGANIZED STYLESHEET (PART 3)
   Sections in this file:
     7. Our Process
     8. Before / After Transformation Slider
     9. Stats / Achievements
    10. Our Work Slider (the 3D-stack slider, #gkWork)
    11. Portfolio / Recent Creations
    12. Image Lightbox
========================================================================= */


/* =========================================================================
   7. OUR PROCESS
========================================================================= */

.gi-process-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 52px 0 48px;
    overflow: hidden;
    background: #f8f5ef;
    color: #171513;
    isolation: isolate;
}

.gi-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    background-image: url("../images/process-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-color: #f8f5ef;
    pointer-events: none;
}

.gi-process-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg,
            rgba(250, 248, 244, 0.711) 0%, rgba(250, 248, 244, .82) 28%,
            rgba(250, 248, 244, .86) 55%, rgba(250, 248, 244, .94) 100%);
    pointer-events: none;
}

.gi-process-header {
    position: relative;
    z-index: 2;
    width: min(850px, 90%);
    margin: 0 auto;
    text-align: center;
}

.gi-process-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 17px;
    color: #a87335;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.gi-process-eyebrow span {
    width: 36px;
    height: 1px;
    background: #b27b3a;
    opacity: .7;
}

.gi-process-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 45px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -.03em;
    color: #11100f;
}

.gi-process-header p {
    margin: 13px auto 0;
    max-width: 650px;
    color: #5d5a57;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.gi-process-wrapper {
    position: relative;
    z-index: 2;
    width: calc(100% - 55px);
    max-width: 1450px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.gi-process-line {
    display: none !important;
}

/* desktop: no connecting line */

.gi-process-card {
    position: relative;
    min-width: 0;
    border-radius: 17px;
    overflow: visible;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.gi-process-card.gi-process-visible {
    opacity: 1;
    transform: translateY(0);
}

.gi-process-card-01 {
    transition-delay: .04s;
}

.gi-process-card-02 {
    transition-delay: .09s;
}

.gi-process-card-03 {
    transition-delay: .14s;
}

.gi-process-card-04 {
    transition-delay: .19s;
}

.gi-process-card-05 {
    transition-delay: .24s;
}

.gi-process-card-06 {
    transition-delay: .29s;
}

.gi-process-image {
    position: relative;
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 17px 17px 0 0;
    background: #e9e3d9;
}

.gi-process-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.gi-process-card:hover .gi-process-image img {
    transform: scale(1.025);
}

.gi-process-info {
    position: relative;
    min-height: 245px;
    padding: 48px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, .90);
    border-radius: 0 0 17px 17px;
    box-shadow: 0 9px 25px rgba(70, 55, 38, .065);
    backdrop-filter: blur(4px);
}

.gi-process-number {
    position: absolute;
    z-index: 20;
    top: 217px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #b87932, #a8692b);
    border: 3px solid #fff;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1;
    box-shadow: 0 5px 13px rgba(125, 84, 39, .18);
}

.gi-process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1e9dd;
    color: #96652a;
    flex-shrink: 0;
}

.gi-process-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gi-process-copy {
    width: 100%;
}

.gi-process-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 400;
    color: #171513;
}

.gi-process-copy p {
    margin: 8px auto 0;
    max-width: 190px;
    color: #5c5956;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.gi-process-label {
    margin-bottom: 4px;
    color: #a87638;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gi-process-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    color: #77716a;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: center;
}

.gi-process-footer span {
    display: block;
    width: 55px;
    height: 1px;
    background: #b88a50;
    opacity: .65;
}

.gi-process-footer div {
    white-space: nowrap;
}

.gi-process-footer b {
    margin: 0 10px;
    color: #b17a37;
    font-weight: 500;
}

/* -------- PROCESS: Laptop (<=1200px) -------- */
@media (max-width: 1200px) {
    .gi-process-section {
        padding: 48px 0 45px;
    }

    .gi-process-wrapper {
        width: calc(100% - 35px);
        gap: 12px;
    }

    .gi-process-image {
        height: 235px;
    }

    .gi-process-number {
        top: 197px;
    }

    .gi-process-info {
        min-height: 225px;
        padding: 46px 13px 20px;
    }

    .gi-process-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }

    .gi-process-icon svg {
        width: 31px;
        height: 31px;
    }

    .gi-process-copy h3 {
        font-size: 18px;
    }

    .gi-process-copy p {
        font-size: 11px;
        max-width: 180px;
    }
}

/* -------- PROCESS: Tablet (<=1000px) -------- */
@media (max-width: 1000px) {
    .gi-process-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 14px;
    }

    .gi-process-image {
        height: 245px;
    }

    .gi-process-number {
        top: 207px;
    }

    .gi-process-info {
        min-height: 225px;
    }
}

/* -------- PROCESS: Mobile (<=700px) -------- */
@media (max-width: 700px) {
    .gi-process-section {
        padding: 42px 0 40px;
    }

    .gi-process-bg {
        background-image: url("../images/mob-process.png");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        background-color: #f8f5ef;
    }

    .gi-process-bg-overlay {
        background: linear-gradient(180deg,
                rgba(250, 248, 244, .93) 0%, rgba(250, 248, 244, .89) 50%, rgba(250, 248, 244, .94) 100%);
    }

    .gi-process-header {
        width: calc(100% - 30px);
    }

    .gi-process-eyebrow {
        gap: 9px;
        margin-bottom: 14px;
        font-size: 9px;
        letter-spacing: .22em;
    }

    .gi-process-eyebrow span {
        width: 25px;
    }

    .gi-process-header h2 {
        font-size: clamp(32px, 9vw, 43px);
        line-height: 1.03;
    }

    .gi-process-header p {
        margin-top: 11px;
        font-size: 13px;
        line-height: 1.5;
    }

    .gi-process-wrapper {
        position: relative;
        width: calc(100% - 14px);
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* Mobile: show the connecting vertical line */
    .gi-process-line {
        display: block !important;
        position: absolute;
        z-index: -10;
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(to bottom,
                transparent 0%, #d8a45d 8%, #b57b37 25%, #d8a45d 50%,
                #b57b37 75%, #d8a45d 92%, transparent 100%);
        opacity: .85;
        box-shadow: 0 0 8px rgba(181, 123, 55, .18);
    }

    .gi-process-card {
        position: relative;
        width: 100%;
        min-height: 0;
        display: grid;
        grid-template-columns: calc(50% - 16px) calc(50% - 16px);
        column-gap: 32px;
        align-items: center;
    }

    .gi-process-image {
        width: 100%;
        height: 160px;
        border-radius: 14px;
        box-shadow: 0 7px 20px rgba(70, 55, 38, .08);
    }

    .gi-process-info {
        width: 100%;
        min-height: 160px;
        padding: 16px 12px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        box-shadow: 0 7px 20px rgba(70, 55, 38, .07);
    }

    .gi-process-number {
        position: absolute;
        z-index: 50;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        font-size: 17px;
        border-width: 3px;
    }

    .gi-process-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .gi-process-icon svg {
        width: 27px;
        height: 27px;
    }

    .gi-process-copy h3 {
        font-size: 17px;
        line-height: 1.15;
    }

    .gi-process-copy p {
        max-width: none;
        margin-top: 6px;
        font-size: 10.5px;
        line-height: 1.4;
    }

    /* Alternating image/info sides per card */
    .gi-process-card-01 .gi-process-image {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-card-01 .gi-process-info {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-02 .gi-process-image {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-02 .gi-process-info {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-card-03 .gi-process-image {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-card-03 .gi-process-info {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-04 .gi-process-image {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-04 .gi-process-info {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-card-05 .gi-process-image {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-card-05 .gi-process-info {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-06 .gi-process-image {
        grid-column: 2;
        grid-row: 1;
    }

    .gi-process-card-06 .gi-process-info {
        grid-column: 1;
        grid-row: 1;
    }

    .gi-process-footer {
        margin-top: 32px;
        gap: 10px;
        font-size: 8px;
        letter-spacing: .16em;
    }

    .gi-process-footer span {
        width: 25px;
    }

    .gi-process-footer b {
        margin: 0 4px;
    }

    .gi-process-footer div {
        white-space: normal;
    }
}

/* -------- PROCESS: heading size unification (<=600px) -------- */
@media (max-width: 600px) {
    .gi-process-header h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .gi-process-header p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
    }
}

/* -------- PROCESS: Small mobile (<=430px) -------- */
@media (max-width: 430px) {
    .gi-process-section {
        padding: 38px 0 35px;
    }

    .gi-process-header {
        width: calc(100% - 24px);
    }

    .gi-process-header p {
        font-size: 12px;
    }

    .gi-process-wrapper {
        width: calc(100% - 8px);
        margin-top: 28px;
        gap: 15px;
    }

    .gi-process-card {
        grid-template-columns: calc(50% - 14px) calc(50% - 14px);
        column-gap: 28px;
    }

    .gi-process-image {
        height: 145px;
        border-radius: 12px;
    }

    .gi-process-info {
        min-height: 145px;
        padding: 12px 9px;
        border-radius: 12px;
    }

    .gi-process-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .gi-process-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 6px;
    }

    .gi-process-icon svg {
        width: 25px;
        height: 25px;
    }

    .gi-process-copy h3 {
        font-size: 15px;
    }

    .gi-process-copy p {
        font-size: 10px;
        line-height: 1.35;
    }

    .gi-process-footer {
        margin-top: 28px;
        font-size: 7px;
    }

    .gi-process-footer span {
        width: 20px;
    }
}

/* -------- PROCESS: Very small mobile (<=380px / 360px) -------- */
@media (max-width: 380px) {
    .gi-process-header h2 {
        font-size: 21px;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .gi-process-wrapper {
        gap: 13px;
    }

    .gi-process-card {
        grid-template-columns: calc(50% - 12px) calc(50% - 12px);
        column-gap: 24px;
    }

    .gi-process-image {
        height: 135px;
    }

    .gi-process-info {
        min-height: 135px;
        padding: 10px 8px;
    }

    .gi-process-number {
        width: 43px;
        height: 43px;
        font-size: 14px;
    }

    .gi-process-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }

    .gi-process-icon svg {
        width: 23px;
        height: 23px;
    }

    .gi-process-copy h3 {
        font-size: 14px;
    }

    .gi-process-copy p {
        font-size: 9px;
    }
}

/* -------- PROCESS: Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {

    .gi-process-card,
    .gi-process-image img {
        transition: none !important;
    }

    .gi-process-card {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================================
   8. BEFORE / AFTER TRANSFORMATION
========================================================================= */

.gk-ba-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 55px 0 45px;
    overflow: hidden;
    background: #f8f5ef;
    color: #171513;
    isolation: isolate;
}

.gk-ba-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url("../images/process-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    pointer-events: none;
}

.gk-ba-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg,
            rgba(248, 245, 239, .94) 0%, rgba(248, 245, 239, .84) 50%, rgba(248, 245, 239, .93) 100%);
    pointer-events: none;
}

.gk-ba-container {
    width: calc(100% - 30px);
    max-width: 1100px;
    margin: 0 auto;
}

.gk-ba-heading {
    max-width: 650px;
    margin: 0 auto 32px;
    text-align: center;
}

.gk-ba-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #a97535;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.gk-ba-eyebrow span {
    display: block;
    width: 30px;
    height: 1px;
    background: #b9823e;
}

.gk-ba-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 45px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -.035em;
    color: #191714;
}

.gk-ba-heading h2 strong {
    color: #ad7837;
    font-weight: 400;
}

.gk-ba-heading p {
    max-width: 570px;
    margin: 13px auto 0;
    color: #65615c;
    font-size: 13px;
    line-height: 1.5;
}

.gk-ba-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    background: #e7e0d5;
    border-radius: 10px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
    isolation: isolate;
}

.gk-ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #e8e2d8;
}

.gk-ba-before img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: left center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gk-ba-after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    background: #e8e2d8;
}

/* NOTE: JS sets the exact width/position of .gk-ba-after at runtime */
.gk-ba-after img {
    position: absolute;
    top: 0;
    right: 0;
    width: 900px;
    max-width: none;
    height: 500px;
    display: block;
    object-fit: fill;
    object-position: right center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gk-ba-before::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(20, 18, 15, .05), transparent 40%);
}

.gk-ba-after::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(20, 18, 15, .03), transparent 50%);
}

.gk-ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    z-index: 10;
    background: rgba(255, 255, 255, .98);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
}

.gk-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 50%;
    background: #fff;
    color: #96652c;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);
    pointer-events: auto;
}

.gk-ba-arrow {
    font-family: Arial, sans-serif;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
}

.gk-ba-drag-icon {
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: -2px;
    transform: rotate(90deg);
    opacity: .8;
}

.gk-ba-label {
    position: absolute;
    top: 17px;
    z-index: 20;
    padding: 7px 12px;
    background: rgba(20, 18, 15, .68);
    color: #fff;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    pointer-events: none;
}

.gk-ba-before-label {
    left: 17px;
}

.gk-ba-after-label {
    right: 17px;
}

.gk-ba-thumbnails {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.gk-ba-thumb {
    width: 65px;
    height: 48px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #ddd;
    cursor: pointer;
    opacity: .65;
    transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
}

.gk-ba-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gk-ba-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.gk-ba-thumb.active {
    opacity: 1;
    border-color: #b47b38;
}

.gk-ba-slider,
.gk-ba-slider *,
.gk-ba-slider img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* -------- BEFORE/AFTER: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gk-ba-section {
        padding: 48px 0 42px;
    }

    .gk-ba-container {
        width: calc(100% - 24px);
    }

    .gk-ba-slider {
        height: 440px;
    }

    .gk-ba-after img {
        width: 100%;
        height: 100%;
    }
}

/* -------- BEFORE/AFTER: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-ba-section {
        padding: 40px 0 35px;
    }

    .gk-ba-bg {
        background-image: url("../images/mob-video.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .gk-ba-section::before {
        background: linear-gradient(180deg, rgba(248, 245, 239, .52), rgba(248, 245, 239, .44));
    }

    .gk-ba-container {
        width: calc(100% - 18px);
    }

    .gk-ba-heading {
        margin-bottom: 22px;
    }

    .gk-ba-eyebrow {
        gap: 7px;
        margin-bottom: 9px;
        font-size: 8px;
        letter-spacing: .20em;
    }

    .gk-ba-eyebrow span {
        width: 21px;
    }

    .gk-ba-heading h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-ba-heading p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
    }

    .gk-ba-slider {
        width: 100%;
        height: 320px;
        border-radius: 7px;
    }

    .gk-ba-before img,
    .gk-ba-after img {
        object-fit: fill;
        object-position: center center;
    }

    .gk-ba-after img {
        width: 100%;
        height: 100%;
    }

    .gk-ba-divider {
        width: 2px;
    }

    .gk-ba-handle {
        width: 42px;
        height: 42px;
        gap: 2px;
    }

    .gk-ba-arrow {
        font-size: 17px;
    }

    .gk-ba-drag-icon {
        font-size: 7px;
    }

    .gk-ba-label {
        top: 10px;
        padding: 5px 8px;
        font-size: 7px;
        letter-spacing: .13em;
    }

    .gk-ba-before-label {
        left: 10px;
    }

    .gk-ba-after-label {
        right: 10px;
    }

    /* Bigger thumbnails, per later override */
    .gk-ba-thumbnails {
        gap: 10px;
        margin-top: 14px;
    }

    .gk-ba-thumb {
        width: 82px;
        height: 62px;
        border-radius: 6px;
    }
}

/* -------- BEFORE/AFTER: Small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-ba-section {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .gk-ba-container {
        width: calc(100% - 14px);
    }

    .gk-ba-slider {
        height: 275px;
        border-radius: 6px;
    }

    .gk-ba-heading h2 {
        font-size: 21px;
    }

    .gk-ba-handle {
        width: 38px;
        height: 38px;
    }

    .gk-ba-arrow {
        font-size: 15px;
    }

    .gk-ba-thumb {
        width: 68px;
        height: 52px;
    }
}

/* -------- BEFORE/AFTER: Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
    .gk-ba-thumb {
        transition: none;
    }
}


/* =========================================================================
   9. STATS / ACHIEVEMENTS
========================================================================= */

.gk-stats-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 82px 20px 78px;
    /* final override value */
    min-height: 570px;
    /* final override value */
    overflow: hidden;
    background: #171513;
    isolation: isolate;
}

.gk-stats-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url("../images/img2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
}

.gk-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(8, 7, 6, .32) 0%, rgba(15, 12, 9, .10) 28%,
            rgba(15, 12, 9, .06) 50%, rgba(15, 12, 9, .10) 72%,
            rgba(8, 7, 6, .32) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .18) 100%);
}

.gk-stats-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.gk-stat-item {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 30px;
    transition: transform .35s ease;
}

.gk-stat-item:hover {
    transform: translateY(-5px);
}

.gk-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    width: 1px;
    height: 255px;
    background: linear-gradient(to bottom,
            transparent, rgba(191, 151, 82, .75) 15%,
            rgba(191, 151, 82, .75) 85%, transparent);
}

.gk-stat-icon {
    width: 68px;
    height: 68px;
    margin-top: -6px;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #b47a2c;
    /* final override color */
    background: rgba(180, 122, 44, 0.08);
    /* final override bg */
    border: 1px solid rgba(180, 122, 44, 0.20);
    /* final override border */
    box-shadow: 0 0 0 8px rgba(196, 157, 91, .035), 0 7px 22px rgba(0, 0, 0, .24);
    transition: box-shadow .35s ease, transform .35s ease;
}

.gk-stat-item:hover .gk-stat-icon {
    box-shadow: 0 0 0 10px rgba(196, 157, 91, .06), 0 10px 30px rgba(0, 0, 0, .35);
    transform: scale(1.04);
}

.gk-stat-icon svg,
.gk-stat-icon i {
    width: 36px;
    height: 36px;
    color: #b47a2c;
    fill: none;
    stroke: #d7b16d;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gk-stat-number {
    margin: 0;
    color: #e2bd76;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 3.8vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.025em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .28);
}

.gk-stat-title {
    margin-top: 15px;
    color: rgba(255, 255, 255, .88);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gk-stat-line {
    display: block;
    width: 68px;
    height: 2px;
    margin-top: 22px;
    background: linear-gradient(90deg, transparent, #d5b06b, transparent);
    opacity: .9;
}

/* -------- STATS: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gk-stats-section {
        padding: 70px 15px 65px;
        min-height: 600px;
    }

    .gk-stats-section::before {
        background:
            linear-gradient(90deg, rgba(8, 7, 6, .28), rgba(15, 12, 9, .08), rgba(8, 7, 6, .28)),
            linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .18));
    }

    .gk-stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 55px;
    }

    .gk-stat-item {
        padding: 0 25px;
    }

    .gk-stat-item:nth-child(2)::after {
        display: none;
    }

    .gk-stat-item:nth-child(1)::after,
    .gk-stat-item:nth-child(3)::after {
        display: block;
        top: 10px;
        height: 210px;
    }

    .gk-stat-item:nth-child(3)::before,
    .gk-stat-item:nth-child(4)::before {
        display: none;
    }

    .gk-stat-icon {
        width: 62px;
        height: 62px;
        margin-top: -5px;
        margin-bottom: 15px;
    }

    .gk-stat-icon svg {
        width: 34px;
        height: 34px;
    }

    .gk-stat-number {
        font-size: 43px;
    }

    .gk-stat-title {
        margin-top: 12px;
    }

    .gk-stat-line {
        margin-top: 18px;
    }
}

/* -------- STATS: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-stats-section {
        padding: 58px 10px 58px;
        min-height: 620px;
    }

    .gk-stats-bg {
        background-image: url("../images/mob-img2.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .gk-stats-section::before {
        background: linear-gradient(180deg,
                rgba(8, 7, 6, .16) 0%, rgba(8, 7, 6, .06) 35%,
                rgba(8, 7, 6, .12) 70%, rgba(8, 7, 6, .25) 100%);
    }

    .gk-stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
    }

    .gk-stat-item {
        padding: 0 10px;
    }

    .gk-stat-item:not(:last-child)::after {
        display: none;
    }

    .gk-stat-item:nth-child(odd)::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 145px;
        background: linear-gradient(to bottom,
                transparent, rgba(191, 151, 82, .65) 20%,
                rgba(191, 151, 82, .65) 80%, transparent);
    }

    .gk-stat-icon {
        width: 48px;
        height: 48px;
        margin-top: -8px;
        margin-bottom: 10px;
        border-width: 1px;
        box-shadow: 0 0 0 6px rgba(196, 157, 91, .035), 0 6px 18px rgba(0, 0, 0, .22);
    }

    .gk-stat-icon svg {
        width: 26px;
        height: 26px;
        stroke-width: 2;
    }

    .gk-stat-number {
        font-size: 32px;
        line-height: 1;
    }

    .gk-stat-title {
        margin-top: 8px;
        max-width: 120px;
        font-size: 8px;
        line-height: 1.4;
    }

    .gk-stat-line {
        width: 35px;
        height: 1px;
        margin-top: 11px;
    }

    .gk-stat-item:hover {
        transform: none;
    }
}

/* -------- STATS: Small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-stats-section {
        padding: 52px 7px 52px;
        min-height: 590px;
    }

    .gk-stats-container {
        row-gap: 42px;
    }

    .gk-stat-item {
        padding: 0 7px;
    }

    .gk-stat-icon {
        width: 44px;
        height: 44px;
        margin-top: -7px;
        margin-bottom: 9px;
    }

    .gk-stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .gk-stat-number {
        font-size: 29px;
    }

    .gk-stat-title {
        font-size: 7px;
        max-width: 110px;
    }

    .gk-stat-line {
        width: 30px;
        margin-top: 10px;
    }

    .gk-stat-item:nth-child(odd)::after {
        height: 130px;
    }
}

/* -------- STATS: Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {

    .gk-stat-item,
    .gk-stat-icon {
        transition: none !important;
    }
}


/* =========================================================================
   10. OUR WORK SLIDER  (3D card stack, #gkWork)
========================================================================= */

.gk-work-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 75px 0 70px;
    background: #f8f1e7;
}

.gk-work-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(to bottom, rgba(250, 245, 238, 0.55), rgba(250, 245, 238, 0.82)),
        url("../images/process-bg.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

.gk-work-container {
    position: relative;
    z-index: 2;
    width: min(1450px, 94%);
    margin: 0 auto;
}

.gk-work-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 38px;
}

.gk-work-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #a87532;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 12px;
}

.gk-work-eyebrow span {
    width: 42px;
    height: 1px;
    background: #b48443;
}

.gk-work-heading h2 {
    margin: 0;
    color: #1f1f1f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 45px);
    line-height: 1.15;
    font-weight: 400;
}

.gk-work-heading h2 strong {
    color: #ad7837
}

.gk-work-heading p {
    max-width: 720px;
    margin: 16px auto 0;
    color: #5c5c5c;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

.gk-work-slider {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    touch-action: pan-y;
}

.gk-work-card {
    position: absolute;
    width: 230px;
    height: 205px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: #eee;
    box-shadow: 0 12px 30px rgba(71, 47, 20, 0.16);
    transition:
        transform 0.55s cubic-bezier(.22, .61, .36, 1),
        width 0.55s ease, height 0.55s ease,
        opacity 0.55s ease, filter 0.55s ease, z-index 0s;
    user-select: none;
}

.gk-work-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.35s ease;
}

.gk-work-card:hover img {
    transform: scale(1.08);
}

.gk-work-card-3 {
    width: 410px;
    height: 285px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 10;
    border-radius: 2px;
    box-shadow: 0 20px 45px rgba(65, 43, 21, 0.20);
    clip-path: none;
}

.gk-work-card-1 {
    left: 2%;
    top: 50%;
    transform: translateY(-50%) perspective(700px) rotateY(12deg) rotate(-3deg);
    z-index: 3;
    width: 195px;
    height: 175px;
    opacity: .92;
    clip-path: polygon(8% 0, 100% 7%, 92% 100%, 0 92%);
}

.gk-work-card-2 {
    left: 17%;
    top: 50%;
    transform: translateY(-50%) perspective(700px) rotateY(8deg) rotate(-2deg);
    z-index: 5;
    width: 220px;
    height: 190px;
    opacity: .97;
    clip-path: polygon(4% 0, 100% 5%, 96% 100%, 0 95%);
}

.gk-work-card-4 {
    right: 17%;
    top: 50%;
    transform: translateY(-50%) perspective(700px) rotateY(-8deg) rotate(2deg);
    z-index: 5;
    width: 220px;
    height: 190px;
    opacity: .97;
    clip-path: polygon(0 5%, 96% 0, 100% 95%, 4% 100%);
}

.gk-work-card-5 {
    right: 2%;
    top: 50%;
    transform: translateY(-50%) perspective(700px) rotateY(-12deg) rotate(3deg);
    z-index: 3;
    width: 195px;
    height: 175px;
    opacity: .92;
    clip-path: polygon(8% 0, 100% 7%, 92% 100%, 0 92%);
}

.gk-mobile-remove {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #333;
    font-size: 22px;
    line-height: 30px;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.gk-work-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin-top: 10px;
}

.gk-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d7c8b4;
    cursor: pointer;
    transition: width .3s ease, height .3s ease, background .3s ease, transform .3s ease;
}

.gk-dot.active {
    width: 13px;
    height: 13px;
    background: #a87532;
    transform: scale(1.08);
}

.gk-work-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.gk-work-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 255px;
    padding: 17px 30px;
    border-radius: 50px;
    background: #a87532;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(122, 79, 27, .20);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.gk-work-button:hover {
    transform: translateY(-3px);
    background: #916126;
    box-shadow: 0 14px 30px rgba(122, 79, 27, .27);
}

.gk-work-button-arrow {
    font-size: 25px;
    line-height: 1;
    transition: transform .3s ease;
}

.gk-work-button:hover .gk-work-button-arrow {
    transform: translateX(5px);
}

/* -------- WORK SLIDER: Tablet (<=1100px) -------- */
@media (max-width: 1100px) {
    .gk-work-container {
        width: 94%;
    }

    .gk-work-slider {
        height: 320px;
    }

    .gk-work-card-3 {
        width: 370px;
        height: 260px;
    }

    .gk-work-card-1,
    .gk-work-card-5 {
        width: 165px;
        height: 150px;
    }

    .gk-work-card-2,
    .gk-work-card-4 {
        width: 190px;
        height: 165px;
    }

    .gk-work-card-1 {
        left: 0;
    }

    .gk-work-card-2 {
        left: 15%;
    }

    .gk-work-card-4 {
        right: 15%;
    }

    .gk-work-card-5 {
        right: 0;
    }
}

/* -------- WORK SLIDER: Mobile (<=767px) -------- */
@media (max-width: 767px) {
    .gk-work-section {
        padding: 55px 0 55px;
        background: #f8f1e7;
    }

    .gk-work-bg {
        background-image:
            linear-gradient(to bottom, rgba(250, 245, 238, .72), rgba(250, 245, 238, .90)),
            url("../images/mob-video.png");
        background-position: center top;
        background-size: cover;
    }

    .gk-work-container {
        width: 100%;
    }

    .gk-work-heading {
        width: 90%;
        margin-bottom: 25px;
    }

    .gk-work-eyebrow {
        gap: 12px;
        font-size: 13px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .gk-work-eyebrow span {
        width: 28px;
    }

    .gk-work-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-work-heading p {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
    }

    .gk-work-slider {
        width: 100%;
        height: 300px;
        display: block;
        overflow: hidden;
        touch-action: pan-x;
        cursor: grab;
    }

    .gk-work-slider:active {
        cursor: grabbing;
    }

    .gk-work-card {
        top: 50%;
        width: 105px;
        height: 145px;
        border-radius: 10px;
        transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .4s ease, filter .4s ease;
    }

    .gk-work-card-3 {
        left: 50%;
        width: 185px;
        height: 235px;
        transform: translate(-50%, -50%) rotate(0deg);
        border-radius: 14px;
        z-index: 10;
        box-shadow: 0 15px 35px rgba(65, 43, 21, .22);
    }

    .gk-work-card-1 {
        left: 2%;
        transform: translateY(-50%) rotate(-10deg) scale(.88);
        width: 105px;
        height: 145px;
        opacity: .82;
        z-index: 3;
        clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
    }

    .gk-work-card-2 {
        left: 14%;
        transform: translateY(-50%) rotate(-6deg) scale(.92);
        width: 115px;
        height: 155px;
        opacity: .92;
        z-index: 5;
        clip-path: polygon(7% 0, 100% 6%, 94% 100%, 0 94%);
    }

    .gk-work-card-4 {
        right: 14%;
        transform: translateY(-50%) rotate(6deg) scale(.92);
        width: 115px;
        height: 155px;
        opacity: .92;
        z-index: 5;
        clip-path: polygon(0 6%, 93% 0, 100% 94%, 7% 100%);
    }

    .gk-work-card-5 {
        right: 2%;
        transform: translateY(-50%) rotate(10deg) scale(.88);
        width: 105px;
        height: 145px;
        opacity: .82;
        z-index: 3;
        clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
    }

    .gk-mobile-remove {
        display: block;
        width: 25px;
        height: 25px;
        top: 6px;
        right: 6px;
        font-size: 18px;
        line-height: 25px;
        padding: 0;
    }

    .gk-work-dots {
        margin-top: 14px;
        gap: 9px;
    }

    .gk-dot {
        width: 8px;
        height: 8px;
    }

    .gk-dot.active {
        width: 11px;
        height: 11px;
    }

    .gk-work-button-wrap {
        margin-top: 24px;
        padding: 0 25px;
    }

    .gk-work-button {
        width: 100%;
        min-width: 0;
        padding: 16px 20px;
        font-size: 16px;
        gap: 18px;
    }
}

/* -------- WORK SLIDER: "View All Projects" button smaller (<=767px) -------- */
@media (max-width: 767px) {
    .gk-work-button-wrap {
        margin-top: 20px;
        padding: 0;
    }

    .gk-work-button {
        width: auto;
        min-width: 170px;
        padding: 10px 20px;
        gap: 10px;
        font-size: 11px;
        letter-spacing: .1em;
    }

    .gk-work-button-arrow {
        font-size: 16px;
    }
}

/* -------- WORK SLIDER: Small mobile (<=430px) -------- */
@media (max-width: 430px) {
    .gk-work-heading h2 {
        font-size: 22px;
    }

    .gk-work-heading p {
        font-size: 14px;
    }

    .gk-work-slider {
        height: 275px;
    }

    .gk-work-card-3 {
        width: 170px;
        height: 215px;
    }

    .gk-work-card-1,
    .gk-work-card-5 {
        width: 90px;
        height: 125px;
    }

    .gk-work-card-2,
    .gk-work-card-4 {
        width: 100px;
        height: 135px;
    }

    .gk-work-card-1 {
        left: 1%;
    }

    .gk-work-card-2 {
        left: 11%;
    }

    .gk-work-card-4 {
        right: 11%;
    }

    .gk-work-card-5 {
        right: 1%;
    }
}


/* =========================================================================
   11. PORTFOLIO / RECENT CREATIONS
========================================================================= */

.gk-portfolio-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 75px 0 80px;
    background: #f8f3eb;
}

.gk-portfolio-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to bottom, rgba(248, 243, 235, 0.72), rgba(248, 243, 235, 0.90)),
        url("../images/process-bg.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.gk-portfolio-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1180px);
    margin: 0 auto;
}

.gk-portfolio-heading {
    text-align: center;
    margin-bottom: 55px;
}

.gk-portfolio-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 12px;
    color: #a87532;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.gk-portfolio-eyebrow span {
    display: block;
    width: 45px;
    height: 1px;
    background: #b8874a;
}

.gk-portfolio-heading h2 {
    margin: 0;
    color: #191919;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
}

.gk-portfolio-heading p {
    max-width: 620px;
    margin: 15px auto 0;
    color: #6c6258;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.gk-portfolio-category {
    margin-bottom: 50px;
}

.gk-portfolio-category-head {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.gk-portfolio-category-title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
}

.gk-portfolio-category-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.10);
    color: #7c3aed;
    font-size: 18px;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.gk-portfolio-category-title h3 {
    margin: 0;
    color: #191919;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
}

.gk-portfolio-line {
    flex: 1;
    height: 1px;
    margin-left: 20px;
    background: rgba(160, 130, 95, 0.35);
}

.gk-portfolio-view-all {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 20px;
    color: #a87532;
    font-family: Georgia, serif;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.gk-portfolio-view-all span {
    font-family: Arial, sans-serif;
    font-size: 19px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.gk-portfolio-view-all:hover {
    color: #80571f;
}

.gk-portfolio-view-all:hover span {
    transform: translateX(4px);
}

.gk-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.gk-portfolio-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #e8dfd3;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(70, 50, 30, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.gk-portfolio-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

/* NOTE: the hover magnifier icon (::before) and dark overlay (::after) that
   used to appear on hover were explicitly removed later in the original
   file — only the image zoom on hover remains. */
.gk-portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(70, 50, 30, 0.15);
}

.gk-portfolio-item:hover img {
    transform: scale(1.05);
}

/* -------- PORTFOLIO: Tablet, 6 images / 3 per row (601–1024px) -------- */
@media (max-width: 1024px) and (min-width: 601px) {
    .gk-portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 11px;
    }

    .gk-portfolio-grid>*:nth-child(n+7) {
        display: none;
    }
}

/* -------- PORTFOLIO: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-portfolio-section {
        padding: 48px 0 55px;
    }

    .gk-portfolio-container {
        width: calc(100% - 26px);
    }

    .gk-portfolio-bg {
        background-image:
            linear-gradient(to bottom, rgba(248, 243, 235, 0.80), rgba(248, 243, 235, 0.94)),
            url("../images/process-bg.png");
        background-size: auto 100%;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .gk-portfolio-heading {
        margin-bottom: 35px;
    }

    .gk-portfolio-eyebrow {
        gap: 9px;
        font-size: 10px;
        letter-spacing: 3px;
    }

    .gk-portfolio-eyebrow span {
        width: 32px;
    }

    .gk-portfolio-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-portfolio-heading p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 11px;
        max-width: 92%;
        padding: 0 5px;
    }

    .gk-portfolio-category {
        margin-bottom: 35px;
    }

    .gk-portfolio-category-head {
        margin-bottom: 12px;
    }

    .gk-portfolio-category-title {
        gap: 8px;
    }

    .gk-portfolio-category-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .gk-portfolio-category-title h3 {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .gk-portfolio-line {
        margin-left: 8px;
    }

    .gk-portfolio-view-all {
        margin-left: 8px;
        gap: 4px;
        font-size: 10px;
    }

    .gk-portfolio-view-all span {
        font-size: 16px;
    }

    /* Only first 4 images shown on mobile */
    .gk-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gk-portfolio-item:nth-child(n + 5) {
        display: none;
    }

    .gk-portfolio-item {
        aspect-ratio: 1.42 / 1;
        border-radius: 5px;
    }

    .gk-portfolio-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(70, 50, 30, 0.08);
    }

    .gk-portfolio-item:hover img {
        transform: none;
    }
}

/* -------- PORTFOLIO: Small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-portfolio-container {
        width: calc(100% - 20px);
    }

    .gk-portfolio-heading h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .gk-portfolio-heading p {
        font-size: 13px;
        line-height: 1.55;
    }

    .gk-portfolio-category-title h3 {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .gk-portfolio-grid {
        gap: 6px;
    }

    .gk-portfolio-item {
        aspect-ratio: 1.38 / 1;
    }
}


/* =========================================================================
   PORTFOLIO — EMPTY STATE ("Our Portfolio Is Coming Soon")
========================================================================= */

.gk-portfolio-empty {
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 55px 25px;
    margin: 10px 0 40px;
    box-sizing: border-box;
}

.gk-portfolio-empty-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #f7f1e8;
    border: 1px solid #e4d3bb;
    color: #a87532;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.gk-portfolio-empty h3 {
    margin: 0 0 12px;
    color: #222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
}

.gk-portfolio-empty p {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 25px;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.gk-portfolio-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 24px;
    border: 1px solid #a87532;
    border-radius: 3px;
    background: #a87532;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-sizing: border-box;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.gk-portfolio-empty-btn:hover {
    background: #ffffff;
    color: #a87532;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 117, 50, 0.15);
}

@media (max-width: 768px) {
    .gk-portfolio-empty {
        min-height: 320px;
        padding: 45px 20px;
        margin-bottom: 35px;
    }

    .gk-portfolio-empty-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
        font-size: 26px;
    }

    .gk-portfolio-empty h3 {
        font-size: 26px;
    }

    .gk-portfolio-empty p {
        max-width: 480px;
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
    }
}

@media (max-width: 600px) {
    .gk-portfolio-empty {
        width: 100%;
        min-height: 290px;
        padding: 45px 18px;
        margin: 0 0 35px;
        text-align: center;
    }

    .gk-portfolio-empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 23px;
    }

    .gk-portfolio-empty h3 {
        font-size: 19px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    /* unified mobile heading size */
    .gk-portfolio-empty p {
        width: 100%;
        max-width: 360px;
        font-size: 14px;
        line-height: 1.55;
        margin: 0 auto 22px;
    }

    .gk-portfolio-empty-btn {
        min-width: 140px;
        padding: 11px 20px;
        font-size: 11px;
        letter-spacing: 1.3px;
    }
}

@media (max-width: 400px) {
    .gk-portfolio-empty {
        min-height: 270px;
        padding: 38px 15px;
        margin-bottom: 30px;
    }

    .gk-portfolio-empty-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
        font-size: 20px;
    }

    .gk-portfolio-empty h3 {
        font-size: 17px;
    }

    /* unified small-mobile heading size */
    .gk-portfolio-empty p {
        font-size: 13px;
        max-width: 320px;
    }

    .gk-portfolio-empty-btn {
        padding: 10px 18px;
        font-size: 10px;
    }
}


/* =========================================================================
   12. IMAGE LIGHTBOX
========================================================================= */

.gk-lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(10, 8, 6, 0.94);
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gk-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gk-lightbox-content {
    position: relative;
    max-width: 88vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.gk-lightbox-content img {
    display: block;
    max-width: 88vw;
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transform: scale(0.94);
    transition: transform 0.3s ease;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.gk-lightbox.active .gk-lightbox-content img {
    transform: scale(1);
}

.gk-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gk-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

.gk-lightbox-prev,
.gk-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gk-lightbox-prev {
    left: 22px;
}

.gk-lightbox-next {
    right: 22px;
}

.gk-lightbox-prev:hover,
.gk-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

.gk-lightbox-prev:hover {
    transform: translate(-3px, -50%);
}

.gk-lightbox-next:hover {
    transform: translate(3px, -50%);
}

/* -------- LIGHTBOX: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-lightbox {
        padding: 15px;
    }

    .gk-lightbox-content {
        max-width: 94vw;
        max-height: 82vh;
    }

    .gk-lightbox-content img {
        max-width: 94vw;
        max-height: 78vh;
        border-radius: 3px;
    }

    .gk-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 27px;
    }

    .gk-lightbox-prev,
    .gk-lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 28px;
        background: rgba(255, 255, 255, 0.15);
    }

    .gk-lightbox-prev {
        left: 8px;
    }

    .gk-lightbox-next {
        right: 8px;
    }
}


/* =========================================================================
   GAJKESHRI INTERIORS — CLEANED & REORGANIZED STYLESHEET (PART 4)
   Sections in this file:
    13. CTA / Consultation
    14. Contact
    15. Video Showcase
    16. Testimonials
    17. Testimonial "Share Your Experience" Popup Modal
    18. Utilities (image protection, reduced motion, misc)
========================================================================= */


/* =========================================================================
   13. CTA / CONSULTATION
   (Final sizes only — the original file declared this block twice with a
   "smaller version" override further down; that final/smaller version is
   what's kept here.)
========================================================================= */

.gk-cta-section,
.gk-contact-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.gk-cta-section *,
.gk-contact-section * {
    box-sizing: border-box;
}

.gk-cta-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    isolation: isolate;
}

.gk-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/cta-bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.gk-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(25, 18, 13, 0.48);
}

.gk-cta-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.gk-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 17px;
}

.gk-cta-eyebrow span {
    width: 75px;
    height: 1px;
    background: #c28a3d;
    display: block;
}

.gk-cta-eyebrow strong {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #d4a15b;
    text-transform: uppercase;
}

.gk-cta-title {
    margin: 0 auto 18px;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    font-weight: 400;
    color: #ffffff;
}

.gk-cta-description {
    margin: 0 auto 28px;
    max-width: 650px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.gk-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gk-cta-btn {
    min-width: 250px;
    min-height: 54px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.gk-cta-primary {
    background: #c28a3d;
    color: #ffffff;
    border: 1px solid #c28a3d;
}

.gk-cta-primary:hover {
    background: #a9712e;
    border-color: #a9712e;
    transform: translateY(-2px);
}

.gk-cta-whatsapp {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(211, 161, 91, 0.85);
}

.gk-cta-whatsapp:hover {
    background: rgba(194, 138, 61, 0.18);
    border-color: #d4a15b;
    transform: translateY(-2px);
}

/* -------- CTA: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gk-cta-section {
        min-height: 480px;
    }

    .gk-cta-container {
        padding: 60px 22px;
    }

    .gk-cta-eyebrow strong {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .gk-cta-eyebrow span {
        width: 55px;
    }

    .gk-cta-title {
        font-size: 44px;
    }

    .gk-cta-description {
        font-size: 15px;
    }

    .gk-cta-btn {
        min-width: 220px;
        height: 50px;
        font-size: 11px;
    }
}

/* -------- CTA: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-cta-section {
        min-height: 500px;
        background: #2a2019;
    }

    .gk-cta-bg {
        background-image: url("../images/cta-bg-mobile.png");
        background-size: cover;
        background-position: center center;
    }

    .gk-cta-overlay {
        background: rgba(25, 18, 13, 0.62);
    }

    .gk-cta-container {
        padding: 55px 18px;
        max-width: 360px;
    }

    .gk-cta-eyebrow {
        gap: 10px;
        margin-bottom: 15px;
    }

    .gk-cta-eyebrow span {
        width: 30px;
    }

    .gk-cta-eyebrow strong {
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .gk-cta-title {
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    /* unified mobile heading size */
    .gk-cta-description {
        max-width: 330px;
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.6;
    }

    /* unified paragraph size */

    .gk-cta-buttons {
        flex-direction: column;
        gap: 11px;
        margin-top: 25px;
    }

    .gk-cta-btn {
        width: 100%;
        max-width: 270px;
        min-width: 0;
        height: 47px;
        padding: 0 15px;
        font-size: 10px;
        letter-spacing: 1.1px;
    }
}

/* -------- CTA: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-cta-section {
        min-height: 470px;
    }

    .gk-cta-container {
        padding: 48px 15px;
    }

    .gk-cta-title {
        font-size: 21px;
    }

    /* unified small-mobile heading size */
    .gk-cta-description {
        font-size: 13px;
        max-width: 300px;
    }

    .gk-cta-btn {
        max-width: 250px;
        height: 44px;
        font-size: 9px;
    }
}


/* =========================================================================
   14. CONTACT
========================================================================= */

.gk-contact-section {
    position: relative;
    padding: 75px 20px 70px;
    background: #f8f3eb;
}

.gk-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(to right,
            rgba(248, 243, 235, 0.98) 0%, rgba(248, 243, 235, 0.94) 48%,
            rgba(248, 243, 235, 0.55) 72%, rgba(248, 243, 235, 0.20) 100%),
        url("../images/cta.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.gk-contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(500px, 1fr);
    gap: 55px;
    align-items: center;
}

.gk-contact-info {
    width: 100%;
    max-width: 530px;
}

.gk-contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #a87532;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3.5px;
}

.gk-contact-eyebrow span {
    width: 58px;
    height: 1px;
    display: block;
    background: #b9823a;
}

.gk-contact-title {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 45px);
    line-height: 1.15;
    font-weight: 400;
    color: #1e1c1a;
}

.gk-contact-description {
    max-width: 470px;
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.65;
    color: #68635d;
}

.gk-contact-details {
    width: 100%;
}

.gk-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(160, 126, 84, 0.22);
}

.gk-contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2e8d9;
    color: #b27c35;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(80, 55, 30, 0.06);
}

.gk-contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gk-contact-label {
    font-size: 11px;
    letter-spacing: 2.2px;
    font-weight: 600;
    color: #766b60;
}

.gk-contact-item-content a,
.gk-contact-value {
    color: #282522;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
}

.gk-contact-item-content a:hover {
    color: #ad7832;
}

.gk-contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.gk-contact-social>a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(172, 130, 73, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f6530;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.gk-contact-social>a:hover {
    background: #b27c35;
    color: #ffffff;
    border-color: #b27c35;
    transform: translateY(-2px);
}

.gk-social-line {
    width: 45px;
    height: 1px;
    margin-left: 12px;
    background: #b9823a;
}

.gk-follow-text {
    font-size: 15px;
    color: #a87532;
}

.gk-contact-form-box {
    width: 100%;
    max-width: 590px;
    margin-left: auto;
    padding: 38px 40px;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(70, 49, 30, 0.10);
    backdrop-filter: blur(5px);
}

.gk-form-heading {
    margin-bottom: 22px;
}

.gk-form-heading h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #24211e;
}

.gk-form-heading span {
    display: block;
    width: 44px;
    height: 2px;
    background: #b9823a;
}

.gk-contact-form {
    width: 100%;
}

.gk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.gk-form-group {
    width: 100%;
}

.gk-form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #514a43;
}

.gk-form-group input,
.gk-form-group select,
.gk-form-group textarea {
    width: 100%;
    border: 1px solid #ddd6ce;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    outline: none;
    color: #38332e;
    font-family: inherit;
    font-size: 13px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.gk-form-group input,
.gk-form-group select {
    height: 48px;
    padding: 0 13px;
}

.gk-form-group textarea {
    min-height: 105px;
    resize: none;
    padding: 12px 13px;
    line-height: 1.5;
}

.gk-form-group input::placeholder,
.gk-form-group textarea::placeholder {
    color: #aaa5a0;
}

.gk-form-group input:focus,
.gk-form-group select:focus,
.gk-form-group textarea:focus {
    border-color: #bd8740;
    box-shadow: 0 0 0 3px rgba(189, 135, 64, 0.09);
}

.gk-message-group {
    margin-bottom: 20px;
}

.gk-submit-button {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    border: 0;
    background: #b98139;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gk-submit-button:hover {
    background: #9f6d2d;
    transform: translateY(-1px);
}

.gk-submit-arrow {
    font-size: 19px;
    line-height: 1;
}

.gk-form-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #9a948d;
    font-size: 11px;
}

.gk-form-note i {
    color: #b27c35;
}

/* Success / error banners above the contact form */
.gk-form-success,
.gk-form-error {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px 0;
    padding: 14px 16px;
    border-radius: 10px;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.gk-form-success {
    background: #effaf3;
    border: 1px solid #ccebd7;
    color: #267a43;
}

.gk-form-error {
    background: #fff3f3;
    border: 1px solid #f1cccc;
    color: #b33a3a;
}

.gk-form-success i,
.gk-form-error i {
    flex: 0 0 auto;
    margin-top: 2px;
    font-size: 20px;
}

.gk-form-success span,
.gk-form-error span {
    display: block;
    flex: 1;
    min-width: 0;
}

/* -------- CONTACT: Large desktop (>=1400px) -------- */
@media (min-width: 1400px) {
    .gk-contact-container {
        max-width: 1320px;
        gap: 70px;
    }

    .gk-contact-form-box {
        max-width: 610px;
    }
}

/* -------- CONTACT: Tablet (<=1000px) -------- */
@media (max-width: 1000px) {
    .gk-cta-section {
        min-height: 460px;
        padding: 60px 20px;
    }

    .gk-cta-title {
        font-size: 24px;
    }

    .gk-cta-description {
        font-size: 15px;
    }

    .gk-contact-section {
        padding: 60px 20px;
    }

    .gk-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }

    .gk-contact-info {
        max-width: 650px;
        margin: 0 auto;
    }

    .gk-contact-form-box {
        max-width: 650px;
        margin: 0 auto;
    }

    .gk-contact-bg {
        background-position: center;
    }
}

/* -------- CONTACT: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-contact-section {
        padding: 45px 14px 45px;
    }

    .gk-contact-bg {
        background-image:
            linear-gradient(to bottom, rgba(248, 243, 235, 0.78), rgba(248, 243, 235, 0.75)),
            url("../images/mob-video.png");
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center top;
    }

    .gk-contact-container {
        width: 100%;
        max-width: 390px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gk-contact-info {
        max-width: 100%;
    }

    .gk-contact-eyebrow {
        gap: 9px;
        margin-bottom: 13px;
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .gk-contact-eyebrow span {
        width: 30px;
    }

    .gk-contact-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    /* unified mobile heading size */
    .gk-contact-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 92%;
    }

    /* unified paragraph size */

    .gk-contact-item {
        gap: 12px;
        padding: 10px 0;
    }

    .gk-contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 14px;
    }

    .gk-contact-item-content {
        gap: 3px;
    }

    .gk-contact-label {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .gk-contact-item-content a,
    .gk-contact-value {
        font-size: 12px;
    }

    .gk-contact-social {
        gap: 7px;
        margin-top: 18px;
    }

    .gk-contact-social>a {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .gk-social-line {
        width: 25px;
        margin-left: 5px;
    }

    .gk-follow-text {
        font-size: 11px;
    }

    .gk-contact-form-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 23px 18px;
        border-radius: 11px;
    }

    .gk-form-heading {
        margin-bottom: 17px;
    }

    .gk-form-heading h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    /* unified mobile heading size */
    .gk-form-heading span {
        width: 34px;
        height: 1px;
    }

    .gk-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .gk-form-group label {
        margin-bottom: 5px;
        font-size: 8px;
        letter-spacing: 1.1px;
    }

    .gk-form-group input,
    .gk-form-group select {
        height: 40px;
        padding: 0 10px;
        font-size: 11px;
    }

    .gk-form-group textarea {
        min-height: 85px;
        padding: 10px;
        font-size: 11px;
    }

    .gk-message-group {
        margin-bottom: 14px;
    }

    .gk-submit-button {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 9px;
        letter-spacing: 1px;
        gap: 10px;
    }

    .gk-submit-arrow {
        font-size: 16px;
    }

    .gk-form-note {
        margin-top: 11px;
        font-size: 8px;
        gap: 5px;
    }

    .gk-form-success,
    .gk-form-error {
        margin: 0 0 18px 0;
        padding: 13px 14px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .gk-form-success i,
    .gk-form-error i {
        margin-top: 2px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .gk-form-success span,
    .gk-form-error span {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    /* Let the contact area grow with the success message instead of clipping it */
    #contact,
    .gk-contact-form,
    .gk-contact-section,
    .gk-contact-container {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }
}

/* -------- CONTACT: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-cta-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .gk-cta-title {
        font-size: 21px;
    }

    /* unified small-mobile heading size */
    .gk-cta-description {
        font-size: 11px;
    }

    .gk-contact-section {
        padding-left: 11px;
        padding-right: 11px;
    }

    .gk-contact-title {
        font-size: 21px;
    }

    /* unified small-mobile heading size */
    .gk-contact-description {
        font-size: 11px;
    }

    .gk-contact-form-box {
        padding: 20px 15px;
    }

    .gk-form-heading h3 {
        font-size: 16px;
    }

    /* unified small-mobile heading size */
    .gk-submit-button {
        font-size: 8px;
    }
}


/* =========================================================================
   15. VIDEO SHOWCASE
========================================================================= */

.gk-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 65px 20px 75px;
    isolation: isolate;
}

.gk-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(to bottom, rgba(248, 243, 235, 0.30), rgba(248, 243, 235, 0.68)),
        url("../images/video3.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #f8f3eb;
}

.gk-video-container {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    z-index: 2;
}

.gk-video-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 42px;
}

.gk-video-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 13px;
    color: #d6a84f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.gk-video-eyebrow span {
    display: block;
    width: 55px;
    height: 1px;
    background: #d6a84f;
}

.gk-video-title {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.gk-video-line {
    width: 90px;
    height: 4px;
    margin: 20px auto 0;
    background: #d6a84f;
}

.gk-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}

.gk-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    border: 1px solid #d6a84f;
    border-radius: 6px;
    background: #111;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gk-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.gk-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
    cursor: pointer;
}

.gk-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.30);
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.gk-video-play span {
    display: block;
    font-size: 27px;
    line-height: 1;
    margin-left: 4px;
}

.gk-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(190, 135, 55, 0.85);
}

.gk-video-card.is-playing .gk-video-play {
    opacity: 0;
    pointer-events: none;
}

.gk-video::-webkit-media-controls {
    z-index: 20;
}

.gk-video-all-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.gk-video-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 150px;
    padding: 11px 20px;
    border: 1px solid #a87538;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.65);
    color: #8f622d;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.gk-video-all-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform .3s ease;
}

.gk-video-all-btn:hover {
    background: #a87538;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(120, 80, 35, .16);
}

.gk-video-all-btn:hover .gk-video-all-arrow {
    transform: translateX(4px);
}

/* Visibility caps: desktop/tablet show up to 6, mobile shows up to 4 */
@media (min-width: 601px) {
    .gk-video-grid .gk-video-card:nth-child(n + 7) {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .gk-video-grid .gk-video-card:nth-child(n + 5) {
        display: none !important;
    }
}

/* -------- VIDEO: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gk-video-section {
        padding: 55px 18px 65px;
    }

    .gk-video-grid {
        gap: 20px;
    }

    .gk-video-title {
        font-size: 44px;
    }

    .gk-video-card {
        aspect-ratio: 0.78 / 1;
    }

    .gk-video-play {
        width: 65px;
        height: 65px;
    }

    .gk-video-play span {
        font-size: 23px;
    }
}

/* -------- VIDEO: Mobile (<=768px) -------- */
@media (max-width: 768px) {
    .gk-video-section {
        padding: 45px 14px 55px;
    }

    .gk-video-bg {
        background-image: linear-gradient(to bottom, rgba(248, 243, 235, 0.78), rgba(248, 243, 235, 0.75)), url("../images/mob-video.png");
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center top;
    }

    .gk-video-heading {
        margin-bottom: 28px;
    }

    .gk-video-eyebrow {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 4px;
    }

    .gk-video-eyebrow span {
        width: 32px;
    }

    .gk-video-title {
        font-size: 24px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-video-line {
        width: 58px;
        height: 3px;
        margin-top: 15px;
    }

    /* 2 videos per row on mobile */
    .gk-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 100%;
    }

    .gk-video-card {
        aspect-ratio: 0.82 / 1;
        border-radius: 5px;
    }

    /* Custom play button is hidden on mobile (native controls used instead) */
    .gk-video-play {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .gk-video-section {
        padding: 38px 12px 48px;
    }

    .gk-video-title {
        font-size: 21px;
    }

    /* unified small-mobile heading size */
    .gk-video-eyebrow {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .gk-video-eyebrow span {
        width: 26px;
    }

    .gk-video-grid {
        gap: 9px;
    }
}

/* -------- VIDEO: "All videos" button (<=600px) -------- */
@media (max-width: 600px) {
    .gk-video-all-wrap {
        margin-top: 20px;
    }

    .gk-video-all-btn {
        min-width: 125px;
        padding: 9px 15px;
        gap: 10px;
        font-size: 8px;
        letter-spacing: .15em;
    }

    .gk-video-all-arrow {
        font-size: 14px;
    }
}


/* =========================================================================
   16. TESTIMONIALS
========================================================================= */

.gk-testimonial-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 70px 20px 45px;
    background: #f8f5ef;
}

.gk-testimonial-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(248, 245, 239, 0.58), rgba(248, 245, 239, 0.54)),
        url("../images/testimonial-bg.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.gk-testimonial-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.gk-testimonial-heading {
    text-align: center;
    margin-bottom: 38px;
}

.gk-testimonial-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #174f50;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.gk-testimonial-eyebrow span {
    width: 38px;
    height: 1px;
    background: #b77b2b;
}

.gk-testimonial-heading h2 {
    margin: 0;
    color: #101c24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 45px);
    line-height: 1.15;
    font-weight: 500;
}

.gk-testimonial-heading h2 strong {
    color: #b47729;
    font-weight: 500;
}

.gk-testimonial-heading>p {
    max-width: 650px;
    margin: 13px auto 0;
    color: #626b70;
    font-size: 16px;
    line-height: 1.6;
}

.gk-testimonial-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
}

.gk-add-testimonial-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 22px;
    border: 1px solid #b77b2b;
    border-radius: 30px;
    background: #b77b2b;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(183, 123, 43, 0.18);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.gk-add-testimonial-btn:hover {
    transform: translateY(-2px);
    background: #9f6821;
    box-shadow: 0 12px 25px rgba(183, 123, 43, 0.24);
}

.gk-add-testimonial-btn:active {
    transform: translateY(0);
}

.gk-add-testimonial-btn i {
    font-size: 14px;
}

.gk-testimonial-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.gk-testimonial-divider span {
    width: 55px;
    height: 1px;
    background: #a8a49d;
}

.gk-testimonial-divider b {
    color: #b47729;
    font-size: 21px;
}

.gk-review-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 25px;
    padding: 13px 18px;
    border: 1px solid rgba(33, 116, 76, .18);
    border-radius: 10px;
    background: #effaf4;
    color: #216f4c;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.gk-review-success-message i {
    flex-shrink: 0;
    font-size: 18px;
}

.gk-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.gk-testimonial-card {
    position: relative;
    min-width: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(35, 48, 48, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gk-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(35, 48, 48, 0.11);
}

.gk-testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gk-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8eddf;
    color: #b47729;
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}

.gk-stars {
    color: #f29100;
    font-size: 17px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.gk-testimonial-date {
    margin-left: auto;
    color: #788187;
    font-size: 12px;
    white-space: nowrap;
}

.gk-testimonial-text {
    margin: 0;
    min-height: 105px;
    color: #3e4852;
    font-size: 14px;
    line-height: 1.55;
}

.gk-testimonial-line {
    width: 100%;
    height: 1px;
    margin: 14px 0;
    background: #e4e1dc;
}

.gk-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gk-client-avatar {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, #e8d8c3, #c9aa7d);
    border: 3px solid #fff;
    color: #173f42;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.gk-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gk-client-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gk-client-info strong {
    color: #121b25;
    font-size: 15px;
    line-height: 1.3;
}

.gk-client-info>span {
    margin-top: 2px;
    color: #245a5b;
    font-size: 12px;
}

.gk-client-info small {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #496267;
    font-size: 11px;
}

.gk-client-info small i {
    color: #185d5e;
}

.gk-testimonial-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gk-testimonial-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 235px;
    padding: 11px 20px;
    border-radius: 30px;
    background: #b77b2b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 7px 18px rgba(183, 123, 43, 0.18);
    transition: transform .25s ease, background .25s ease;
}

.gk-testimonial-button:hover {
    transform: translateY(-2px);
    background: #9f6821;
    color: #fff;
}

.gk-testimonial-button b {
    font-size: 18px;
    font-weight: 400;
}

.gk-testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.gk-testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bfc2c0;
}

.gk-testimonial-dots span.active {
    background: #b77b2b;
}

.gk-testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
    padding: 22px 0;
    border-top: 1px solid #dfd7ca;
    border-bottom: 1px solid #dfd7ca;
}

.gk-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 4px 18px;
    border-right: 1px solid #ddd5c9;
}

.gk-stat:last-child {
    border-right: none;
}

.gk-stat .gk-stat-icon {
    /* NOTE: this reuses the same class name as the Stats section icon above,
       but here it's a smaller inline icon, not the big circular badge. */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #b47a2c;
    background: none;
    border: none;
    box-shadow: none;
    font-size: 25px;
}

.gk-stat .gk-stat-icon i {
    color: #b47a2c;
}

.gk-stat div:last-child {
    display: flex;
    flex-direction: column;
}

.gk-stat strong {
    color: #102f38;
    font-size: 25px;
    line-height: 1.15;
}

.gk-stat span {
    margin-top: 3px;
    color: #626b70;
    font-size: 11px;
}

.gk-testimonial-thanks {
    text-align: center;
    margin-top: 30px;
    color: #857b71;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 22px;
    font-style: italic;
}

/* Visibility caps: desktop shows up to 9, mobile up to 6 */
@media (min-width: 601px) {
    .gk-testimonial-grid .gk-testimonial-card:nth-child(n + 10) {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .gk-testimonial-grid .gk-testimonial-card:nth-child(n + 7) {
        display: none !important;
    }
}

/* -------- TESTIMONIALS: Tablet (<=900px) -------- */
@media (max-width: 900px) {
    .gk-testimonial-section {
        padding: 55px 16px 38px;
    }

    .gk-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gk-testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    .gk-stat:nth-child(2) {
        border-right: none;
    }
}

/* -------- TESTIMONIALS: Mobile (<=600px) -------- */
@media (max-width: 600px) {
    .gk-testimonial-section {
        padding: 40px 12px 30px;
    }

    .gk-testimonial-heading {
        margin-bottom: 25px;
    }

    .gk-testimonial-eyebrow {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .gk-testimonial-eyebrow span {
        width: 25px;
    }

    .gk-testimonial-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-testimonial-heading>p {
        max-width: 92%;
        margin-top: 9px;
        font-size: 14px;
        line-height: 1.6;
    }

    /* unified paragraph size */

    .gk-testimonial-divider {
        margin-top: 12px;
    }

    .gk-testimonial-divider span {
        width: 35px;
    }

    .gk-testimonial-divider b {
        font-size: 17px;
    }

    .gk-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gk-testimonial-card {
        padding: 15px;
        border-radius: 13px;
    }

    .gk-testimonial-top {
        gap: 9px;
        margin-bottom: 9px;
    }

    .gk-quote-icon {
        width: 22px;
        height: 23px;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gk-stars {
        font-size: 14px;
        letter-spacing: .5px;
    }

    .gk-testimonial-date {
        font-size: 10px;
    }

    .gk-testimonial-text {
        min-height: auto;
        font-size: 12px;
        line-height: 1.5;
    }

    .gk-testimonial-line {
        margin: 11px 0;
    }

    .gk-client {
        gap: 9px;
    }

    .gk-client-avatar {
        width: 48px;
        height: 48px;
        font-size: 12px;
    }

    .gk-client-info strong {
        font-size: 13px;
    }

    .gk-client-info>span {
        font-size: 10px;
    }

    .gk-client-info small {
        margin-top: 3px;
        font-size: 9px;
    }

    .gk-testimonial-button-wrap {
        margin-top: 22px;
    }

    .gk-testimonial-button {
        min-width: 200px;
        padding: 9px 16px;
        font-size: 11px;
        gap: 10px;
    }

    .gk-testimonial-button b {
        font-size: 15px;
    }

    .gk-testimonial-dots {
        margin-top: 14px;
    }

    .gk-testimonial-dots span {
        width: 8px;
        height: 8px;
    }

    .gk-testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
        padding: 16px 0;
        row-gap: 15px;
    }

    .gk-stat {
        gap: 7px;
        padding: 4px 8px;
    }

    .gk-stat:nth-child(2) {
        border-right: none;
    }

    .gk-stat:nth-child(3),
    .gk-stat:nth-child(4) {
        border-top: 1px solid #ddd5c9;
        padding-top: 14px;
    }

    .gk-stat .gk-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 19px;
    }

    .gk-stat strong {
        font-size: 18px;
    }

    .gk-stat span {
        font-size: 9px;
    }

    .gk-testimonial-thanks {
        margin-top: 22px;
        font-size: 17px;
    }
}

/* -------- TESTIMONIALS: Very small mobile (<=380px) -------- */
@media (max-width: 380px) {
    .gk-testimonial-section {
        padding-left: 9px;
        padding-right: 9px;
    }

    .gk-testimonial-heading h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    /* unified small-mobile heading size */
    .gk-testimonial-heading>p {
        font-size: 11px;
    }

    .gk-testimonial-card {
        padding: 13px;
    }

    .gk-testimonial-text {
        font-size: 11px;
    }

    .gk-client-avatar {
        width: 44px;
        height: 44px;
    }

    .gk-client-info strong {
        font-size: 12px;
    }
}


/* =========================================================================
   17. TESTIMONIAL "SHARE YOUR EXPERIENCE" POPUP MODAL
========================================================================= */

body.gk-review-body-lock {
    overflow: hidden !important;
}

.gk-review-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.gk-review-modal.gk-review-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.gk-review-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 17, 20, 0.66);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gk-review-box {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100vw - 40px));
    max-width: 760px;
    max-height: calc(100vh - 40px);
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(183, 123, 43, .14);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
    box-sizing: border-box;
    transform: translateY(20px) scale(.97);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    scrollbar-width: thin;
    scrollbar-color: #c79b5b #f4f1eb;
}

.gk-review-active .gk-review-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gk-review-box::-webkit-scrollbar {
    width: 6px;
}

.gk-review-box::-webkit-scrollbar-track {
    background: #f4f1eb;
}

.gk-review-box::-webkit-scrollbar-thumb {
    background: #c79b5b;
    border-radius: 20px;
}

.gk-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px 17px;
    border-bottom: 1px solid #eee8de;
    box-sizing: border-box;
}

.gk-review-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #b47729;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.gk-review-header h3 {
    margin: 0;
    color: #14252b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
}

.gk-review-header p {
    margin: 6px 0 0;
    color: #70797e;
    font-size: 12px;
    line-height: 1.5;
}

.gk-review-close {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #e6dfd5;
    border-radius: 50%;
    background: #faf8f4;
    color: #26363b;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.gk-review-close:hover {
    background: #b77b2b;
    color: #ffffff;
    border-color: #b77b2b;
    transform: rotate(90deg);
}

.gk-review-alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 15px 25px 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.45;
    box-sizing: border-box;
}

.gk-review-error {
    background: #fff3f1;
    border: 1px solid #f1cbc5;
    color: #a63d30;
}

.gk-review-alert i {
    flex: 0 0 auto;
    margin-top: 1px;
    font-size: 14px;
}

.gk-review-form {
    width: 100%;
    padding: 20px 25px 25px;
    box-sizing: border-box;
}

.gk-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 15px;
    width: 100%;
}

.gk-review-field {
    min-width: 0;
    width: 100%;
}

.gk-review-field>label,
.gk-review-rating-title>label {
    display: block;
    margin: 0 0 6px;
    color: #25353a;
    font-size: 11px;
    font-weight: 700;
}

.gk-review-field>label span,
.gk-review-rating-title>label span {
    color: #c44738;
}

.gk-review-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.gk-review-input>i {
    position: absolute;
    left: 12px;
    z-index: 2;
    color: #a47a43;
    font-size: 12px;
    pointer-events: none;
}

.gk-review-input input,
.gk-review-input select {
    width: 100%;
    min-height: 39px;
    padding: 9px 11px 9px 34px;
    border: 1px solid #ddd7ce;
    border-radius: 8px;
    outline: none;
    background: #fffdf9;
    color: #26353a;
    font-family: inherit;
    font-size: 12px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gk-review-input input::placeholder {
    color: #a4a4a0;
}

.gk-review-input input:focus,
.gk-review-input select:focus {
    border-color: #b77b2b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(183, 123, 43, .10);
}

.gk-review-input select {
    cursor: pointer;
}

.gk-review-rating-field {
    width: 100%;
    margin-top: 15px;
    padding: 12px 14px;
    border: 1px solid #eee6da;
    border-radius: 10px;
    background: #fbf9f5;
    box-sizing: border-box;
}

.gk-review-rating-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.gk-review-rating-title>label {
    margin: 0;
}

#gkRatingText {
    color: #b47729;
    font-size: 11px;
    font-weight: 800;
}

.gk-rating-v2 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    width: 100% !important;
    min-height: 39px !important;
    white-space: nowrap !important;
    box-sizing: border-box;
}

.gk-rating-star-v2 {
    all: unset;
    box-sizing: border-box;
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    color: #d8d4cc !important;
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif !important;
    font-size: 29px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    cursor: pointer !important;
    transform: none !important;
    transition: color .16s ease, transform .16s ease !important;
}

.gk-rating-star-v2 span {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: inherit !important;
    color: inherit !important;
}

.gk-rating-star-v2.is-selected {
    color: #c17b14 !important;
}

.gk-rating-star-v2:hover {
    color: #d48a18 !important;
    transform: scale(1.10) !important;
}

.gk-rating-star-v2:focus-visible {
    border-radius: 6px !important;
    box-shadow: 0 0 0 3px rgba(183, 123, 43, .20) !important;
}

.gk-review-message-field {
    width: 100%;
    margin-top: 13px;
}

.gk-review-message-field textarea {
    display: block;
    width: 100%;
    min-height: 90px;
    resize: vertical;
    padding: 10px 12px;
    border: 1px solid #ddd7ce;
    border-radius: 8px;
    outline: none;
    background: #fffdf9;
    color: #26353a;
    font-family: inherit;
    font-size: 12px;
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gk-review-message-field textarea::placeholder {
    color: #a4a4a0;
}

.gk-review-message-field textarea:focus {
    border-color: #b77b2b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(183, 123, 43, .10);
}

.gk-review-counter {
    margin-top: 4px;
    color: #9a9a96;
    font-size: 9px;
    text-align: right;
}

.gk-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid #eee8de;
}

.gk-review-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    max-width: 320px;
    color: #777d7f;
    font-size: 10px;
    line-height: 1.45;
}

.gk-review-note i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #a67b42;
}

.gk-review-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 17px;
    border: 1px solid #b77b2b;
    border-radius: 8px;
    background: #b77b2b;
    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 7px 16px rgba(183, 123, 43, .16);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gk-review-submit:hover {
    background: #9f6821;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(183, 123, 43, .22);
}

.gk-review-submit:active {
    transform: translateY(0);
}

/* -------- REVIEW MODAL: Mobile (<=700px) -------- */
@media (max-width: 700px) {
    .gk-review-modal {
        padding: 12px;
        align-items: center;
        justify-content: center;
    }

    .gk-review-box {
        width: calc(100vw - 24px);
        max-width: 500px;
        max-height: calc(100dvh - 24px);
        border-radius: 15px;
        margin: auto;
        transform: translateY(15px) scale(.97);
    }

    .gk-review-header {
        padding: 17px 17px 14px;
        gap: 12px;
    }

    .gk-review-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .gk-review-header h3 {
        font-size: 19px;
        line-height: 1.2;
    }

    /* unified mobile heading size */
    .gk-review-header p {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.45;
    }

    .gk-review-close {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .gk-review-form {
        padding: 16px 17px 20px;
    }

    .gk-review-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gk-review-input input,
    .gk-review-input select {
        min-height: 39px;
        font-size: 12px;
    }

    .gk-review-rating-field {
        margin-top: 11px;
        padding: 11px 12px;
    }

    .gk-rating-v2 {
        min-height: 37px !important;
        height: 37px !important;
    }

    .gk-rating-star-v2 {
        flex: 0 0 34px !important;
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        font-size: 27px !important;
    }

    .gk-review-message-field {
        margin-top: 10px;
    }

    .gk-review-message-field textarea {
        min-height: 85px;
        font-size: 11px;
    }

    .gk-review-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
        margin-top: 15px;
        padding-top: 13px;
    }

    .gk-review-note {
        width: 100%;
        max-width: none;
        font-size: 9px;
        line-height: 1.45;
    }

    .gk-review-submit {
        width: 100%;
        min-height: 42px;
        padding: 10px 15px;
        font-size: 11px;
    }

    .gk-review-alert {
        margin: 13px 17px 0;
        font-size: 10px;
    }
}

/* -------- REVIEW MODAL: Small phones (<=400px) -------- */
@media (max-width: 400px) {
    .gk-review-modal {
        padding: 9px;
    }

    .gk-review-box {
        width: calc(100vw - 18px);
        max-height: calc(100dvh - 18px);
        border-radius: 14px;
    }

    .gk-review-header {
        padding: 14px 14px 12px;
        gap: 9px;
    }

    .gk-review-eyebrow {
        font-size: 7px;
        letter-spacing: 1.7px;
    }

    .gk-review-header h3 {
        font-size: 17px;
    }

    /* unified small-mobile heading size */
    .gk-review-header p {
        font-size: 9px;
        line-height: 1.4;
    }

    .gk-review-close {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .gk-review-form {
        padding: 13px 14px 18px;
    }

    .gk-review-field>label,
    .gk-review-rating-title>label {
        font-size: 10px;
    }

    .gk-review-input input,
    .gk-review-input select {
        min-height: 37px;
        padding-left: 32px;
        font-size: 11px;
    }

    .gk-review-input>i {
        left: 11px;
        font-size: 11px;
    }

    .gk-review-rating-field {
        padding: 10px;
    }

    .gk-rating-v2 {
        gap: 2px !important;
        min-height: 35px !important;
    }

    .gk-rating-star-v2 {
        flex: 0 0 31px !important;
        width: 31px !important;
        min-width: 31px !important;
        max-width: 31px !important;
        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;
        font-size: 25px !important;
    }

    .gk-review-message-field textarea {
        min-height: 78px;
        font-size: 10px;
    }

    .gk-review-counter {
        font-size: 8px;
    }

    .gk-review-note {
        font-size: 8px;
    }

    .gk-review-submit {
        min-height: 40px;
        font-size: 10px;
    }
}

/* -------- REVIEW MODAL: Very small phones (<=340px) -------- */
@media (max-width: 340px) {
    .gk-review-modal {
        padding: 7px;
    }

    .gk-review-box {
        width: calc(100vw - 14px);
        max-height: calc(100dvh - 14px);
    }

    .gk-review-header h3 {
        font-size: 18px;
    }

    .gk-review-header p {
        font-size: 8px;
    }

    .gk-review-form {
        padding: 12px 12px 16px;
    }

    .gk-review-input input,
    .gk-review-input select {
        font-size: 10px;
        min-height: 36px;
    }

    .gk-rating-star-v2 {
        flex: 0 0 29px !important;
        width: 29px !important;
        min-width: 29px !important;
        max-width: 29px !important;
        font-size: 23px !important;
    }

    .gk-review-message-field textarea {
        min-height: 72px;
    }

    .gk-review-submit {
        font-size: 9px;
    }
}


/* =========================================================================
   18. UTILITIES (image protection, reduced motion, misc)
========================================================================= */

.gk-portfolio-item img,
.gk-lightbox-content img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.gk-portfolio-item,
.gk-lightbox-content {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.gk-portfolio-item img::selection,
.gk-lightbox-content img::selection {
    background: transparent;
}

.gk-portfolio-item img::-moz-selection,
.gk-lightbox-content img::-moz-selection {
    background: transparent;
}


























/* =========================================================
   GAJKESHRI INTERIORS
   CONSULTATION POPUP
   FINAL VERSION
   ========================================================= */


/* =========================================================
   MAIN POPUP
   ========================================================= */

.gk-consult-popup {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    /*
     * Very small outer spacing.
     * Isse popup ke around unnecessary area kam rahega.
     */
    padding: 10px;

    box-sizing: border-box;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.30s ease,
        visibility 0.30s ease;
}


/* =========================================================
   OPEN STATE
   ========================================================= */

.gk-consult-popup.gk-consult-popup-show {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.gk-consult-overlay {
    position: absolute;

    inset: 0;

    /*
     * Black background halka rakha gaya hai.
     */
    background: rgba(0, 0, 0, 0.60);

    /*
     * Background ko softly blur karega.
     */
    backdrop-filter: blur(3px);

    -webkit-backdrop-filter: blur(3px);

    cursor: pointer;
}


/* =========================================================
   POPUP MODAL
   ========================================================= */

.gk-consult-modal {

    position: relative;

    z-index: 2;

    /*
     * Desktop popup controlled size.
     */
    width: min(1120px, calc(100vw - 20px));

    /*
     * Viewport se bahar nahi jayega.
     */
    max-height: calc(100vh - 20px);

    /*
     * Image ke aspect ratio ko preserve karega.
     */
    height: auto;

    margin: 0 auto;

    background: transparent;

    border-radius: 14px;

    /*
     * Small shadow only.
     */
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.30);

    transform:
        translateY(18px) scale(0.985);

    transition:
        transform 0.32s cubic-bezier(.2, .8, .2, 1);
}


.gk-consult-popup.gk-consult-popup-show .gk-consult-modal {

    transform:
        translateY(0) scale(1);
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.gk-consult-image-wrap {

    position: relative;

    width: 100%;

    /*
     * Image ke bahar koi black background nahi.
     */
    background: transparent;

    border-radius: 14px;

    overflow: hidden;

    line-height: 0;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   IMAGE
   ========================================================= */

.gk-consult-image {

    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    /*
     * Viewport ke andar rahe.
     */
    max-height: calc(100vh - 20px);

    object-fit: contain;

    border-radius: 14px;

    background: transparent;

    user-select: none;

    -webkit-user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
}


/* =========================================================
   LIGHT GRADIENT OVER IMAGE
   ========================================================= */

/*
 * Image ko thoda premium depth dene ke liye.
 *
 * IMPORTANT:
 * Ye gradient bahut light hai.
 * Image ko dark nahi karega.
 */

.gk-consult-gradient {

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.00) 25%,
            rgba(0, 0, 0, 0.00) 72%,
            rgba(0, 0, 0, 0.10) 100%);
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.gk-consult-close {

    position: absolute;

    /*
     * Image ke exact top-right par attached.
     */
    top: -7px;

    right: -7px;

    width: 32px;

    height: 32px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: #111;

    font-size: 22px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    z-index: 100;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.gk-consult-close:hover {

    transform:
        rotate(90deg) scale(1.04);

    background: #ffffff;
}


.gk-consult-close:active {

    transform:
        rotate(90deg) scale(0.96);
}


.gk-consult-close:focus-visible {

    outline: 2px solid #c99b45;

    outline-offset: 2px;
}


.gk-consult-close span {

    display: block;

    margin-top: -2px;
}


/* =========================================================
   BUTTON CONTAINER
   ========================================================= */

.gk-consult-actions {

    position: absolute;

    inset: 0;

    z-index: 20;

    pointer-events: none;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.gk-popup-btn {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    text-decoration: none;

    cursor: pointer;

    pointer-events: auto;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}


.gk-popup-btn:hover {

    transform:
        translateY(-2px);

    filter: brightness(1.03);

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.22);
}


.gk-popup-btn:active {

    transform:
        translateY(0);
}


/* =========================================================
   CONSULT NOW - DESKTOP
   ========================================================= */

.gk-popup-consult {

    /*
     * Desktop image ke left-bottom CTA area.
     */

    left: 9.2%;
    bottom: 15%;

    width: 31.2%;

    height: 9.0%;

    gap: 8px;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(180deg,
            #d3a04c 0%,
            #a96f20 100%);

    border: 1px solid rgba(255, 255, 255, 0.32);

    box-shadow:
        0 4px 12px rgba(77, 44, 4, 0.22);

    font-size:
        clamp(13px, 1.25vw, 20px);
}


/* =========================================================
   WHATSAPP ICON
   ========================================================= */

.gk-popup-whatsapp-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    flex-shrink: 0;

    font-size: 21px;

    color: #ffffff;
}


/* =========================================================
   ARROW
   ========================================================= */

.gk-popup-arrow {

    font-size: 22px;

    margin-left: 2px;
}


/* =========================================================
   CALL US - DESKTOP
   ========================================================= */

.gk-popup-call {

    left: 42%;
    bottom: 15%;
    width: 15.0%;

    height: 9.0%;

    gap: 6px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.96);

    color: #111111;

    border: 1px solid #d8c6a2;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.12);

    font-size:
        clamp(11px, 1vw, 16px);
}


/* =========================================================
   PHONE ICON
   ========================================================= */

.gk-popup-phone-icon {

    font-size: 15px;
}


/* =========================================================
   BOOK A VISIT - DESKTOP
   ========================================================= */

.gk-popup-visit {

    left: 58.9%;

    bottom: 15.0%;

    width: 17.3%;

    height: 9.0%;

    gap: 6px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.96);

    color: #111111;

    border: 1px solid #d8c6a2;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.12);

    font-size:
        clamp(10px, 0.95vw, 15px);
}


/* =========================================================
   CALENDAR ICON
   ========================================================= */

.gk-popup-calendar-icon {

    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .gk-consult-popup {

        padding: 8px;
    }


    .gk-consult-modal {

        width:
            min(760px, calc(100vw - 16px));

        max-height:
            calc(100vh - 16px);

        border-radius: 13px;
    }


    .gk-consult-image-wrap {

        border-radius: 13px;
    }


    .gk-consult-image {

        max-height:
            calc(100vh - 16px);

        border-radius: 13px;
    }


    .gk-consult-close {

        width: 30px;

        height: 30px;

        top: -6px;

        right: -6px;

        font-size: 21px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .gk-consult-popup {

        padding: 5px;

        align-items: center;
    }


    /*
     * Mobile image ko jitna possible ho utna bada rakhenge,
     * lekin viewport se bahar nahi jayega.
     */
    .gk-consult-modal {

        width:
            min(430px, calc(100vw - 10px));

        max-width: 430px;

        max-height:
            calc(100vh - 10px);

        margin: 0 auto;

        border-radius: 11px;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.30);
    }


    .gk-consult-image-wrap {

        width: 100%;

        border-radius: 11px;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.20);
    }


    .gk-consult-image {

        width: 100%;

        height: auto;

        max-width: 100%;

        max-height:
            calc(100vh - 10px);

        border-radius: 11px;
    }


    /* =====================================================
       CLOSE BUTTON
       ===================================================== */

    .gk-consult-close {

        width: 29px;

        height: 29px;

        top: -6px;

        right: -5px;

        font-size: 20px;

        border-width: 1px;
    }


    /* =====================================================
       MOBILE CONSULT NOW
       ===================================================== */

    .gk-popup-consult {

        /*
         * Image ke Consult Now area par.
         */
        left: 7.0%;


        gap: 6px;

        border-radius: 8px;

        font-size: 14px;

        background:
            linear-gradient(180deg,
                #d5a34e 0%,
                #a96e1f 100%);

        box-shadow:
            0 4px 10px rgba(77, 44, 4, 0.20);
    }


    .gk-popup-whatsapp-icon {

        width: 24px;

        height: 24px;

        font-size: 18px;
    }


    .gk-popup-arrow {

        font-size: 19px;

        margin-left: 0;
    }


    /* =====================================================
       MOBILE CALL US
       ===================================================== */

    .gk-popup-call {

        left: 7.0%;

        bottom: 1.8%;

        width: 41.5%;

        height: 7.1%;

        gap: 5px;

        border-radius: 7px;

        font-size: 11.5px;

        background:
            rgba(255, 255, 255, 0.97);

        box-shadow:
            0 3px 8px rgba(0, 0, 0, 0.14);
    }


    /* =====================================================
       MOBILE BOOK VISIT
       ===================================================== */

    .gk-popup-visit {

        left: 51.5%;

        bottom: 1.8%;

        width: 41.5%;

        height: 7.1%;

        gap: 5px;

        border-radius: 7px;

        font-size: 11px;

        background:
            rgba(255, 255, 255, 0.97);

        box-shadow:
            0 3px 8px rgba(0, 0, 0, 0.14);
    }


    .gk-popup-phone-icon {

        font-size: 13px;
    }


    .gk-popup-calendar-icon {

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .gk-consult-popup {

        padding: 4px;
    }


    .gk-consult-modal {

        width:
            calc(100vw - 8px);

        max-height:
            calc(100vh - 8px);
    }


    .gk-consult-image {

        max-height:
            calc(100vh - 8px);
    }


    .gk-consult-close {

        width: 27px;

        height: 27px;

        top: -5px;

        right: -4px;

        font-size: 19px;
    }


    .gk-popup-consult {

        font-size: 12.5px;

        gap: 5px;
    }


    .gk-popup-whatsapp-icon {

        width: 22px;

        height: 22px;

        font-size: 17px;
    }


    .gk-popup-arrow {

        font-size: 17px;
    }


    .gk-popup-call {

        font-size: 10px;
    }


    .gk-popup-visit {

        font-size: 9.5px;
    }


    .gk-popup-phone-icon,
    .gk-popup-calendar-icon {

        font-size: 12px;
    }

}



/* =========================================================
   MOBILE POPUP
   SMALLER IMAGE + GAP AROUND IMAGE
   ========================================================= */

@media (max-width: 767px) {

    .gk-consult-popup {

        /*
         * Screen ke charon taraf gap.
         */
        padding: 18px 14px;

        align-items: center;

        box-sizing: border-box;
    }


    .gk-consult-modal {

        /*
         * Image ko screen se chhota rakha gaya hai.
         */
        width: min(390px, calc(100vw - 28px));

        max-width: 390px;

        max-height: calc(100vh - 36px);

        margin: auto;

        border-radius: 12px;

        background: transparent;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.30);
    }


    .gk-consult-image-wrap {

        width: 100%;

        border-radius: 12px;

        overflow: hidden;

        background: transparent;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.20);
    }


    .gk-consult-image {

        display: block;

        width: 100%;

        height: auto;

        max-width: 100%;

        max-height: calc(100vh - 36px);

        object-fit: contain;

        border-radius: 12px;
    }


    /* =====================================================
       CLOSE BUTTON
       ===================================================== */

    .gk-consult-close {

        width: 29px;

        height: 29px;

        top: -6px;

        right: -6px;

        font-size: 20px;

        z-index: 100;
    }


    /* =====================================================
       CONSULT NOW
       ===================================================== */

    .gk-popup-consult {

        left: 7%;

        bottom: 18.2%;
        width: 86%;
        height: 7.3%;

        border-radius: 8px;

        font-size: 14px;

        gap: 6px;
    }


    .gk-popup-whatsapp-icon {

        width: 24px;

        height: 24px;

        font-size: 18px;
    }


    .gk-popup-arrow {

        font-size: 19px;
    }


    /* =====================================================
       CALL US
       ===================================================== */

    .gk-popup-call {

        left: 7%;

        bottom:9.8%;

        width: 41.5%;

        height: 7.1%;

        border-radius: 7px;

        font-size: 11.5px;

        gap: 5px;
    }


    /* =====================================================
       BOOK A VISIT
       ===================================================== */

    .gk-popup-visit {

        left: 51.5%;

        bottom: 9.8%;

        width: 41.5%;

        height: 7.1%;

        border-radius: 7px;

        font-size: 11px;

        gap: 5px;
    }


    .gk-popup-phone-icon,
    .gk-popup-calendar-icon {

        font-size: 13px;
    }

}

/* =========================================================
   BODY SCROLL LOCK
   ========================================================= */

body.gk-consult-popup-open {

    overflow: hidden;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gk-consult-popup,
    .gk-consult-modal,
    .gk-popup-btn,
    .gk-consult-close {

        transition: none !important;
    }

}

/* =========================================================
   SMOOTH POPUP SHOW / HIDE
   ========================================================= */

.gk-consult-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /*
     * Smooth background fade
     */
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}


/* =========================================================
   POPUP OPEN
   ========================================================= */

.gk-consult-popup.gk-consult-popup-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   OVERLAY SMOOTH FADE
   ========================================================= */

.gk-consult-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0);

    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);

    transition:
        background 0.5s ease,
        backdrop-filter 0.5s ease,
        -webkit-backdrop-filter 0.5s ease;
}


.gk-consult-popup.gk-consult-popup-show
.gk-consult-overlay {
    background: rgba(0, 0, 0, 0.60);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


/* =========================================================
   MODAL SMOOTH ZOOM + SLIDE
   ========================================================= */

.gk-consult-modal {

    position: relative;
    z-index: 2;

    opacity: 0;

    transform:
        translateY(35px)
        scale(0.92);

    filter: blur(2px);

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(.16,1,.3,1),
        filter 0.45s ease;
}


/* =========================================================
   MODAL OPEN
   ========================================================= */

.gk-consult-popup.gk-consult-popup-show
.gk-consult-modal {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);
}


/* =========================================================
   BUTTONS SMOOTH APPEAR
   ========================================================= */

.gk-popup-btn {

    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity 0.35s ease 0.20s,
        transform 0.35s ease 0.20s,
        box-shadow 0.2s ease;
}


.gk-consult-popup.gk-consult-popup-show
.gk-popup-btn {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   CLOSE BUTTON SMOOTH APPEAR
   ========================================================= */

.gk-consult-close {

    opacity: 0;

    transform:
        scale(0.7)
        rotate(-30deg);

    transition:
        opacity 0.3s ease 0.15s,
        transform 0.35s cubic-bezier(.16,1,.3,1);
}


.gk-consult-popup.gk-consult-popup-show
.gk-consult-close {

    opacity: 1;

    transform:
        scale(1)
        rotate(0);
}


/* =========================================================
   CLOSE BUTTON HOVER
   ========================================================= */

.gk-consult-popup.gk-consult-popup-show
.gk-consult-close:hover {

    transform:
        scale(1.08)
        rotate(90deg);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gk-consult-popup,
    .gk-consult-overlay,
    .gk-consult-modal,
    .gk-popup-btn,
    .gk-consult-close {

        transition: none !important;

        animation: none !important;
    }

}