@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Dosis:wght@200..800&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');
:root {
    /* =====================================================
       ANDEAN TEK — MINERAL / GOLD PALETTE
       ===================================================== */
    /* Primary */
    --ge-ink: #0A0D0D;
    --ge-charcoal: #111615;
    --ge-dark: #171B19;
    --ge-mineral: #202622;
    /* Gold / Mineral accents */
    --ge-gold: #C49A46;
    --ge-gold-light: #D7B66A;
    --ge-copper: #9A6338;
    /* Text */
    --ge-white: #FFFFFF;
    --ge-white-soft: #F3F0E8;
    --ge-text: #202522;
    --ge-muted: #737873;
    /* Light sections */
    --ge-cream: #F4F1E9;
    --ge-light: #FAF9F6;
    /* Borders */
    --ge-border: rgba(196, 154, 70, 0.28);
    --ge-border-light: rgba(20, 25, 23, 0.12);
    /* Typography */
    --ge-display-font: "Montserrat", Arial, sans-serif;
    --ge-body-font: "Montserrat", Arial, sans-serif;
}


/* =========================================================
   ANDEAN TEK — HEADER
   ========================================================= */

.ge-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    background: transparent;
    transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


/* Scrolled Header */

.ge-header.scrolled {
    background: rgba(10, 13, 13, 0.96);
    border-bottom: 1px solid var(--ge-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Header Hidden */

.ge-header.header-hidden {
    transform: translateY(-100%);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.ge-header .navbar {
    min-height: 88px;
    padding: 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.ge-header-logo {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: var(--ge-white) !important;
    line-height: 1;
    text-decoration: none;
}

.ge-logo-main {
    font-family: var(--ge-display-font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ge-white);
}

.ge-logo-location {
    margin-top: 7px;
    font-family: var(--ge-body-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.20em;
    color: var(--ge-gold);
    text-transform: uppercase;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.ge-header-nav {
    gap: 4px;
}

.ge-header-nav .nav-link {
    position: relative;
    padding: 10px 13px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}


/* Gold underline */

.ge-header-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 1px;
    background: var(--ge-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.ge-header-nav .nav-link:hover {
    color: var(--ge-gold-light) !important;
}

.ge-header-nav .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.ge-header-btn {
    min-height: 40px;
    padding: 0 20px;
    font-size: 9px;
    border-color: var(--ge-gold);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.ge-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0 !important;
    box-shadow: none !important;
}

.ge-menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 5px auto;
    background: var(--ge-white);
    transition: all 0.3s ease;
}


/* =========================================================
   MOBILE OFFCANVAS
   ========================================================= */

.ge-mobile-menu {
    width: min(85%, 360px);
    background: linear-gradient( 145deg, #0A0D0D 0%, #111615 60%, #171B19 100%);
    color: var(--ge-white);
}

.ge-mobile-menu .offcanvas-header {
    padding: 28px 24px;
    border-bottom: 1px solid var(--ge-border);
}

.ge-mobile-logo {
    font-family: var(--ge-display-font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ge-mobile-location {
    margin-top: 6px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--ge-gold);
    text-transform: uppercase;
}

.ge-mobile-close {
    filter: invert(1);
    opacity: 0.8;
}

.ge-mobile-nav {
    margin-top: 20px;
}

.ge-mobile-nav .nav-link {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--ge-white) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.ge-mobile-nav .nav-link:hover {
    color: var(--ge-gold) !important;
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .ge-header .navbar {
        min-height: 76px;
    }
    .ge-logo-main {
        font-size: 20px;
    }
    .ge-logo-location {
        font-size: 7px;
    }
}

@media (max-width: 575.98px) {
    .ge-header .navbar {
        min-height: 70px;
    }
    .ge-logo-main {
        font-size: 18px;
    }
    .ge-logo-location {
        font-size: 6.5px;
    }
    .ge-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   ANDEAN TEK — HERO
   ========================================================= */

.ge-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--ge-ink);
    color: var(--ge-white);
    overflow: hidden;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.ge-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ge-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*
       Important for the port image:
       keep containers + ship visible
    */
    object-position: center center;
    transform: scale(1.01);
}


/* =========================================================
   MINERAL / GOLD OVERLAY
   ========================================================= */

.ge-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(7, 10, 10, 0.94) 0%, rgba(7, 10, 10, 0.84) 22%, rgba(7, 10, 10, 0.62) 42%, rgba(7, 10, 10, 0.30) 64%, rgba(7, 10, 10, 0.10) 82%, rgba(7, 10, 10, 0.18) 100%);
}


/*
   Subtle bottom darkening
*/

.ge-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( to top, rgba(7, 10, 10, 0.45), transparent);
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.ge-hero-content {
    position: relative;
    z-index: 5;
    max-width: 620px;
    padding-top: 170px;
    padding-bottom: 25px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-hero-eyebrow {
    margin: 0 0 18px;
    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ge-gold-light);
}


/* Small gold line before eyebrow */

.ge-hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--ge-gold);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.ge-hero-title {
    max-width: 650px;
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--ge-white);
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.35);
}


/* Gold word */

.ge-hero-title span {
    display: block;
    color: var(--ge-gold-light);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.ge-hero-content .gold-line {
    width: 58px;
    height: 2px;
    margin: 28px 0 24px;
    background: linear-gradient( 90deg, var(--ge-gold), var(--ge-gold-light));
}


/* =========================================================
   MAIN DESCRIPTION
   ========================================================= */

.ge-hero-description {
    max-width: 570px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   SECONDARY DESCRIPTION
   ========================================================= */

.ge-hero-subdescription {
    max-width: 540px;
    margin: 14px 0 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.ge-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}


/* =========================================================
   BUTTON SYSTEM
   ========================================================= */

.ge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border: 1px solid var(--ge-gold);
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}


/* Gold */

.ge-btn-primary {
    color: #111 !important;
    background: var(--ge-gold);
}

.ge-btn-primary:hover {
    color: #111 !important;
    background: var(--ge-gold-light);
    border-color: var(--ge-gold-light);
    transform: translateY(-2px);
}


/* Outline */

.ge-btn-outline {
    color: var(--ge-white) !important;
    background: rgba(10, 13, 13, 0.20);
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(5px);
}

.ge-btn-outline:hover {
    color: #111 !important;
    background: var(--ge-gold);
    border-color: var(--ge-gold);
    transform: translateY(-2px);
}


/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (min-width: 1400px) {
    .ge-hero-content {
        max-width: 700px;
    }
    .ge-hero-title {
        font-size: 92px;
    }
    .ge-hero-description {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .ge-hero-overlay {
        background: linear-gradient( 90deg, rgba(7, 10, 10, 0.92) 0%, rgba(7, 10, 10, 0.78) 35%, rgba(7, 10, 10, 0.42) 70%, rgba(7, 10, 10, 0.18) 100%);
    }
    .ge-hero-content {
        max-width: 650px;
        padding-top: 100px;
    }
    .ge-hero-title {
        font-size: 68px;
    }
}

@media (max-width: 767.98px) {
    .ge-hero {
        min-height: 760px;
    }
    /*
       Mobile image positioning
       keeps the export scene visible.
    */
    .ge-hero-bg-image {
        object-position: 62% center;
    }
    .ge-hero-overlay {
        background: linear-gradient( 180deg, rgba(7, 10, 10, 0.12) 0%, rgba(7, 10, 10, 0.28) 32%, rgba(7, 10, 10, 0.70) 62%, rgba(7, 10, 10, 0.96) 100%);
    }
    .ge-hero-content {
        max-width: 100%;
        padding-top: 120px;
        padding-bottom: 55px;
    }
    .ge-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 0.16em;
    }
    .ge-hero-title {
        font-size: 52px;
        line-height: 0.98;
    }
    .ge-hero-description {
        font-size: 14px;
        line-height: 1.7;
    }
    .ge-hero-subdescription {
        font-size: 12px;
    }
    .ge-hero-actions {
        flex-wrap: wrap;
        margin-top: 26px;
    }
}

@media (max-width: 575.98px) {
    .ge-hero {
        min-height: 720px;
    }
    .ge-hero-bg-image {
        object-position: 65% center;
    }
    .ge-hero-content {
        padding-top: 110px;
        padding-bottom: 45px;
    }
    .ge-hero-title {
        font-size: 45px;
    }
    .ge-hero-description {
        font-size: 13px;
    }
    .ge-hero-subdescription {
        font-size: 11.5px;
    }
    .ge-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ge-hero-actions .ge-btn {
        width: 100%;
    }
}


/* =========================================================
   ANDEAN TEK — THE GRADE
   ========================================================= */

.at-grade {
    padding: 120px 0;
    background: var(--ge-ink);
    color: var(--ge-white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.at-grade-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.at-grade-eyebrow {
    margin: 0 0 16px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-grade-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(50px, 5.5vw, 78px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--ge-white);
}

.at-grade-line {
    width: 55px;
    height: 2px;
    margin: 30px 0 25px;
    background: linear-gradient( 90deg, var(--ge-gold), var(--ge-gold-light));
}

.at-grade-intro {
    max-width: 650px;
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   THREE SAMPLE CARDS
   ========================================================= */

.at-grade-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.at-grade-sample {
    min-height: 245px;
    padding: 35px 35px 38px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.at-grade-sample:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.at-grade-sample:last-child {
    border-right: 0;
}


/* Number */

.at-grade-number {
    margin-bottom: 45px;
    font-family: var(--ge-display-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--ge-gold);
}


/* Card Content */

.at-grade-sample-content {
    margin-top: auto;
}

.at-grade-label {
    display: block;
    margin-bottom: 9px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.at-grade-sample h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--ge-white);
}

.at-grade-sample p {
    max-width: 300px;
    margin: 15px 0 0;
    font-family: var(--ge-body-font);
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
}


/* Sealed sample emphasis */


/* .at-grade-sample-sealed {
    background: rgba(196, 154, 70, 0.055);
} */

.at-grade-sample-sealed .at-grade-number {
    color: var(--ge-gold);
}


/* =========================================================
   ASSAY AREA
   ========================================================= */

.at-grade-assay {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* Image */

.at-grade-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--ge-mineral);
}

.at-grade-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.at-grade-image:hover img {
    transform: scale(1.025);
}


/* Image label */

.at-grade-image-tag {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 11px 15px;
    background: rgba(10, 13, 13, 0.88);
    border-left: 2px solid var(--ge-gold);
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ge-white);
}


/* =========================================================
   ASSAY CONTENT
   ========================================================= */

.at-grade-assay-content {
    max-width: 560px;
}

.at-grade-small-title {
    margin: 0 0 17px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-grade-assay-content h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ge-white);
}

.at-grade-assay-content>p:not(.at-grade-small-title) {
    max-width: 500px;
    margin: 25px 0 0;
    font-family: var(--ge-body-font);
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.64);
}


/* =========================================================
   TRUST STATEMENT
   ========================================================= */

.at-grade-trust {
    margin-top: 38px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.at-grade-trust-line {
    display: block;
    width: 45px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--ge-gold);
}

.at-grade-trust strong {
    display: block;
    max-width: 470px;
    font-family: var(--ge-display-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ge-white);
}


/* =========================================================
   THE GRADE — TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-grade {
        padding: 90px 0;
    }
    .at-grade-assay {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .at-grade-assay-content {
        max-width: 700px;
    }
    .at-grade-image,
    .at-grade-image img {
        min-height: 480px;
        height: 480px;
    }
}


/* =========================================================
   THE GRADE — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-grade {
        padding: 75px 0;
    }
    .at-grade-heading {
        margin-bottom: 45px;
    }
    .at-grade-title {
        font-size: 46px;
    }
    .at-grade-intro {
        font-size: 18px;
    }
    .at-grade-samples {
        grid-template-columns: 1fr;
    }
    .at-grade-sample,
    .at-grade-sample:first-child {
        min-height: auto;
        padding: 27px 22px 30px;
        border-left: 1px solid rgba(255, 255, 255, 0.16);
        border-right: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .at-grade-sample:last-child {
        border-bottom: 0;
    }
    .at-grade-number {
        margin-bottom: 30px;
    }
    .at-grade-sample h3 {
        font-size: 27px;
    }
    .at-grade-assay {
        margin-top: 55px;
        gap: 40px;
    }
    .at-grade-image,
    .at-grade-image img {
        min-height: 400px;
        height: 400px;
    }
    .at-grade-assay-content h3 {
        font-size: 40px;
    }
}


/* =========================================================
   THE GRADE — SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-grade-title {
        font-size: 40px;
    }
    .at-grade-intro {
        font-size: 17px;
    }
    .at-grade-image,
    .at-grade-image img {
        min-height: 340px;
        height: 340px;
    }
    .at-grade-assay-content h3 {
        font-size: 34px;
    }
}


/* =========================================================
   ANDEAN TEK — PAYMENT
   ========================================================= */

.at-payment {
    padding: 70px 0 65px;
    background: #f5f6f4;
    color: var(--ge-text);
    border-top: 1px solid rgba(20, 25, 23, 0.10);
    border-bottom: 1px solid rgba(20, 25, 23, 0.10);
}


/* =========================================================
   PAYMENT CONTENT
   ========================================================= */

.at-payment-content {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.at-payment-eyebrow {
    margin: 0 0 16px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ge-copper);
}


/* =========================================================
   TITLE
   ========================================================= */

.at-payment-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(36px, 3.4vw, 52px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #101413;
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.at-payment-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 24px;
    background: var(--ge-gold);
}


/* =========================================================
   INTRO
   ========================================================= */

.at-payment-intro {
    max-width: 700px;
    margin: 24px 0 0;
    font-family: var(--ge-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #3f4743;
}


/* =========================================================
   PAYMENT LIST
   ========================================================= */


/* =========================================================
   PAYMENT PROCESS — FOUR STEPS
   ========================================================= */

.at-payment-process {
    position: relative;
    width: 100%;
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(20, 25, 23, 0.16);
    border-bottom: 1px solid rgba(20, 25, 23, 0.16);
}


/* =========================================================
   PAYMENT STEP
   ========================================================= */

.at-payment-step {
    position: relative;
    min-height: 215px;
    padding: 28px 30px 25px;
    border-right: 1px solid rgba(20, 25, 23, 0.14);
    transition: background-color 0.3s ease;
}

.at-payment-step:first-child {
    padding-left: 0;
}

.at-payment-step:last-child {
    border-right: 0;
}


/* =========================================================
   ICON
   ========================================================= */

.at-payment-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ge-gold);
    border-radius: 50%;
    color: var(--ge-gold);
    font-size: 19px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.at-payment-step:hover .at-payment-icon {
    background: var(--ge-gold);
    color: #111615;
    transform: translateY(-3px);
}


/* =========================================================
   NUMBER
   ========================================================= */

.at-payment-number {
    display: block;
    margin-bottom: 10px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
    color: var(--ge-gold);
}


/* =========================================================
   TITLE
   ========================================================= */

.at-payment-step h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    color: #111615;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.at-payment-step p {
    max-width: 230px;
    margin: 10px 0 0;
    font-family: var(--ge-body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
    color: #59605c;
}


/* =========================================================
   PROCESS CONNECTING LINE
   ========================================================= */

.at-payment-process::before {
    content: "";
    position: absolute;
    top: 59px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient( 90deg, transparent 0%, var(--ge-gold) 8%, rgba(196, 154, 70, 0.45) 50%, var(--ge-gold) 92%, transparent 100%);
    z-index: 0;
}


/* Keep icons above the connecting line */

.at-payment-icon {
    position: relative;
    z-index: 2;
    background: var(--ge-light);
}


/* =========================================================
   PAYMENT PROCESS — TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-payment-process {
        grid-template-columns: repeat(2, 1fr);
    }
    .at-payment-step:nth-child(2) {
        border-right: 0;
    }
    .at-payment-step:nth-child(3),
    .at-payment-step:nth-child(4) {
        border-top: 1px solid rgba(20, 25, 23, 0.14);
    }
    .at-payment-process::before {
        display: none;
    }
}


/* =========================================================
   PAYMENT PROCESS — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-payment-process {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .at-payment-step,
    .at-payment-step:first-child {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(20, 25, 23, 0.14);
    }
    .at-payment-step:last-child {
        border-bottom: 0;
    }
    .at-payment-process::before {
        display: none;
    }
    .at-payment-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 17px;
        font-size: 17px;
    }
    .at-payment-step h3 {
        font-size: 21px;
    }
    .at-payment-step p {
        max-width: 100%;
        font-size: 13px;
    }
}


/* =========================================================
   PAYMENT — SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-payment {
        padding: 60px 0;
    }
    .at-payment-title {
        font-size: 34px;
    }
    .at-payment-eyebrow {
        font-size: 9px;
    }
}


/* =========================================================
   ANDEAN TEK — START TO FINISH
   ========================================================= */

.at-process {
    padding: 70px 0 65px;
    background: var(--ge-ink);
    color: var(--ge-white);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


/* =========================================================
   PROCESS HEADING
   ========================================================= */

.at-process-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.at-process-eyebrow {
    margin: 0 0 15px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-process-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(42px, 4.6vw, 64px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--ge-white);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.at-process-line {
    width: 48px;
    height: 2px;
    margin-top: 25px;
    background: var(--ge-gold);
}


/* =========================================================
   PROCESS LIST
   ========================================================= */

.at-process-list {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


/* =========================================================
   GOLD CONNECTING LINE
   ========================================================= */

.at-process-list::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--ge-gold);
    z-index: 0;
}


/* =========================================================
   PROCESS ITEM
   ========================================================= */

.at-process-item {
    position: relative;
    z-index: 1;
    min-height: 220px;
    padding: 28px 30px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    transition: background-color 0.3s ease, padding-top 0.3s ease;
}

.at-process-item:first-child {
    padding-left: 0;
}

.at-process-item:last-child {
    border-right: 0;
}


/* =========================================================
   PROCESS ICON
   ========================================================= */

.at-process-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border: 1px solid var(--ge-gold);
    border-radius: 50%;
    background: var(--ge-ink);
    color: var(--ge-gold);
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}


/* =========================================================
   PROCESS NUMBER
   ========================================================= */

.at-process-number {
    display: block;
    margin-bottom: 7px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.20em;
    color: var(--ge-gold);
}


/* =========================================================
   PROCESS CONTENT
   ========================================================= */

.at-process-content {
    max-width: 240px;
}

.at-process-content h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ge-white);
}

.at-process-content p {
    max-width: 240px;
    margin: 10px 0 0;
    font-family: var(--ge-body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}


/* =========================================================
   HOVER
   ========================================================= */

.at-process-item:hover {
    background: rgba(196, 154, 70, 0.035);
}

.at-process-item:hover .at-process-icon {
    background: var(--ge-gold);
    color: #111;
    transform: translateY(-2px);
}


/* =========================================================
   PROCESS — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
    .at-process {
        padding: 130px 0 135px;
    }
    .at-process-heading {
        margin-bottom: 58px;
    }
    .at-process-title {
        font-size: 68px;
    }
    .at-process-item {
        padding-top: 28px;
        padding-bottom: 30px;
    }
    .at-process-content h3 {
        font-size: 19px;
    }
    .at-process-content p {
        font-size: 15px;
    }
}


/* =========================================================
   PROCESS — TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-process {
        padding: 90px 0 95px;
    }
    .at-process-heading {
        margin-bottom: 45px;
    }
    .at-process-title {
        font-size: 52px;
    }
}


/* =========================================================
   PROCESS — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-process {
        padding: 72px 0 78px;
    }
    .at-process-heading {
        margin-bottom: 38px;
    }
    .at-process-eyebrow {
        font-size: 9px;
        letter-spacing: 0.20em;
    }
    .at-process-title {
        font-size: 42px;
        line-height: 1.06;
    }
    .at-process-list {
        grid-template-columns: 1fr;
    }
    .at-process-list::before {
        display: none;
    }
    .at-process-item {
        min-height: auto;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--ge-border-light);
    }
    .at-process-item:last-child {
        border-bottom: 0;
    }
    .at-process-number {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .at-process-content {
        max-width: 100%;
    }
    .at-process-content h3 {
        font-size: 18px;
    }
    .at-process-content p {
        max-width: 100%;
        margin-top: 7px;
        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   PROCESS — SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-process {
        padding: 62px 0 68px;
    }
    .at-process-title {
        font-size: 35px;
    }
    .at-process-item {
        padding: 23px 0;
    }
    .at-process-content {
        max-width: 100%;
    }
    .at-process-number {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    .at-process-content h3 {
        font-size: 15px;
    }
    .at-process-content p {
        font-size: 12.5px;
    }
}


/* =========================================================
   ANDEAN TEK — BEFORE WE START
   ========================================================= */

.at-before-start {
    position: relative;
    overflow: hidden;
    padding: 100px 0 105px;
    color: var(--ge-text);
    background: linear-gradient( 90deg, rgba(250, 249, 246, 0.72) 0%, rgba(250, 249, 246, 0.58) 45%, rgba(250, 249, 246, 0.38) 100%), url("../images/andeantek-images/home-page.png") center center / cover no-repeat;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.at-before-content {
    max-width: 720px;
}

.at-before-eyebrow {
    margin: 0 0 17px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ge-gold-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.at-before-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(42px, 4.8vw, 66px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}

.at-before-line {
    width: 48px;
    height: 2px;
    margin: 28px 0 27px;
    background: var(--ge-gold);
}

.at-before-intro,
.at-before-description {
    max-width: 680px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.at-before-description {
    margin-top: 18px;
}


/* =========================================================
   DOCUMENT CARDS
   ========================================================= */

.at-before-documents {
    position: relative;
    border-top: 1px solid var(--ge-border-light);
}

.at-before-document {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0 14px;
    padding: 27px 0;
    border-bottom: 1px solid var(--ge-border-light);
}

.at-before-document-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(196, 154, 70, 0.13);
    color: var(--ge-copper);
}

.at-before-document-number i {
    font-size: 15px;
    line-height: 1;
}

.at-before-document-label {
    display: block;
    margin-bottom: 7px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ge-copper);
}

.at-before-document h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ge-charcoal);
}

.at-before-document p {
    margin: 8px 0 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #626863;
}


/* =========================================================
   LAST NOTE
   ========================================================= */

.at-before-document-note {
    background: rgba(196, 154, 70, 0.045);
}


/* =========================================================
   ANDEAN TEK — BEFORE WE START FLOW
   ========================================================= */

.at-before-start {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;
    color: #fff;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.18) 100%), url("../assets/images/home-feature.png") center center / cover no-repeat;
}


/* Keep section content above background */

.at-before-start .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FLOW
   ========================================================= */

.at-before-flow {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 45px;
}


/* Each oval item */

.at-before-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 105px;
}


/* Small egg / oval */

.at-before-flow-oval {
    width: 58px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(215, 182, 106, 0.85);
    color: var(--ge-gold-light);
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.at-before-flow-content h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ge-charcoal);
}

.at-before-flow-item:hover .at-before-flow-oval {
    background: var(--ge-gold);
    border-color: var(--ge-gold);
    color: #fff;
    transform: scale(1.08);
}

.at-before-flow-oval i {
    font-size: 16px;
    line-height: 1;
}


/* Text */

.at-before-flow-content span {
    display: block;
    margin-bottom: 5px;
    font-family: var(--ge-body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ge-gold-light);
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.7);
}

.at-before-flow-content h3 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}


/* =========================================================
   FLOW ARROWS
   ========================================================= */

.at-before-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ge-gold-light);
    flex: 0 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.at-before-flow-arrow i {
    font-size: 20px;
    line-height: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-before-flow {
        margin-top: 35px;
        justify-content: flex-start;
        gap: 14px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-before-flow {
        margin-top: 35px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .at-before-flow-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        min-width: 0;
        gap: 14px;
    }
    .at-before-flow-oval {
        width: 52px;
        height: 38px;
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    .at-before-flow-content h3 {
        font-size: 17px;
    }
    .at-before-flow-arrow {
        margin-left: 19px;
        transform: rotate(90deg);
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-before-start {
        padding: 65px 0 75px;
    }
    .at-before-flow-content span {
        font-size: 7px;
    }
    .at-before-flow-content h3 {
        font-size: 16px;
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
    .at-before-start {
        padding: 130px 0 135px;
    }
    .at-before-title {
        font-size: 70px;
    }
    .at-before-intro,
    .at-before-description {
        font-size: 16px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-before-start {
        padding: 90px 0 95px;
    }
    .at-before-title {
        font-size: 54px;
    }
    .at-before-content {
        max-width: 760px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-before-start {
        padding: 72px 0 78px;
    }
    .at-before-title {
        font-size: 42px;
    }
    .at-before-intro,
    .at-before-description {
        font-size: 13px;
        line-height: 1.75;
    }
    .at-before-documents {
        margin-top: 18px;
    }
    .at-before-document {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 0 12px;
        padding: 23px 0;
    }
    .at-before-document-number {
        width: 29px;
        height: 29px;
    }
    .at-before-document-number i {
        font-size: 13px;
    }
    .at-before-document h3 {
        font-size: 17px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-before-start {
        padding: 62px 0 68px;
    }
    .at-before-title {
        font-size: 36px;
    }
    .at-before-document p {
        font-size: 12px;
    }
}


/* =====================================================
   GARDEN ENCLAVE LOGO
   ===================================================== */

.ge-header-logo {
    padding: 0;
}

.ge-logo-image {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
    padding: 15px
}


/* =========================================================
   MEET 0.25 / THE HOMES
   ========================================================= */

.ge-meet-025 {
    position: relative;
    padding: 60px 0;
    /*background: var(--ge-cream);*/
    overflow: hidden;
}


/* =========================================================
   MAIN ROW
   ========================================================= */

.ge-meet-025 .row {
    min-height: 560px;
}


/* =========================================================
   LEFT — INTRO
   ========================================================= */

.ge-meet-025-intro {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 90px 60px 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-meet-025-eyebrow {
    margin: 0 0 22px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ge-gold);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.ge-meet-025-title {
    max-width: 580px;
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ge-navy);
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.ge-meet-025-line {
    width: 48px;
    height: 1px;
    margin: 32px 0 26px;
    background: var(--ge-gold);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ge-meet-025-description {
    max-width: 560px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-weight: 400;
    line-height: 1.9;
    color: var(--ge-text);
}

.ge-meet-025-description em {
    font-family: var(--ge-display-font);
    font-size: 18px;
}


/* =========================================================
   RIGHT — HOMES
   ========================================================= */

.ge-meet-025-homes {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 60px 90px;
    border-left: 1px solid var(--ge-border);
}


/* =========================================================
   HOMES EYEBROW
   ========================================================= */

.ge-meet-025-homes-eyebrow {
    margin: 0 0 14px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ge-gold);
}


/* =========================================================
   HOMES TITLE
   ========================================================= */

.ge-meet-025-homes-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ge-navy);
}


/* =========================================================
   HOME INFORMATION BLOCK
   ========================================================= */

.ge-meet-025-home-block {
    position: relative;
    margin-top: 45px;
    padding-left: 25px;
    border-left: 2px solid var(--ge-gold);
}


/* =========================================================
   HOME TITLE
   ========================================================= */

.ge-meet-025-home-title {
    margin: 0;
    font-family: var(--ge-body-font);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--ge-navy);
}


/* =========================================================
   HOME DESCRIPTION
   ========================================================= */

.ge-meet-025-home-description {
    max-width: 520px;
    margin: 13px 0 0;
    font-family: var(--ge-body-font);
    font-weight: 400;
    line-height: 1.85;
    color: var(--ge-muted);
}


/* =========================================================
   JODI HOME
   ========================================================= */

.ge-meet-025-jodi {
    margin-top: 38px;
}


/* =========================================================
   JODI QUESTION
   ========================================================= */

.ge-meet-025-home-question {
    margin: 9px 0 0;
    font-family: var(--ge-display-font);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ge-navy);
}


/* =========================================================
   JODI STRONG TEXT
   ========================================================= */

.ge-meet-025-home-description strong {
    font-weight: 600;
    color: var(--ge-navy);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
    .ge-meet-025 {
        padding: 140px 0;
    }
    .ge-meet-025 .row {
        min-height: 600px;
    }
    .ge-meet-025-intro {
        padding-right: 110px;
    }
    .ge-meet-025-homes {
        padding-left: 110px;
    }
    .ge-meet-025-title {
        font-size: 78px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .ge-meet-025 {
        padding: 90px 0;
    }
    .ge-meet-025 .row {
        min-height: auto;
    }
    .ge-meet-025-intro {
        padding: 20px 45px 60px 0;
    }
    .ge-meet-025-homes {
        padding: 60px 0 20px 45px;
    }
    .ge-meet-025-title {
        font-size: 58px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .ge-meet-025 {
        padding: 70px 0;
    }
    .ge-meet-025-intro {
        height: auto;
        padding: 0 0 55px;
    }
    .ge-meet-025-title {
        font-size: 48px;
    }
    .ge-meet-025-description {
        line-height: 1.8;
    }
    .ge-meet-025-homes {
        height: auto;
        padding: 55px 0 0;
        border-left: 0;
        border-top: 1px solid var(--ge-border);
    }
    .ge-meet-025-homes-title {
        font-size: 42px;
    }
    .ge-meet-025-home-block {
        margin-top: 38px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .ge-meet-025 {
        padding: 60px 0;
    }
    .ge-meet-025-title {
        font-size: 43px;
    }
    .ge-meet-025-intro {
        padding-bottom: 45px;
    }
    .ge-meet-025-homes {
        padding-top: 45px;
    }
    .ge-meet-025-homes-title {
        font-size: 38px;
    }
    .ge-meet-025-home-block {
        padding-left: 20px;
    }
    .ge-meet-025-home-description {
        font-size: 12.5px;
    }
}


/* =========================================================
   NEW GARDEN ENCLAVE FOOTER
   ========================================================= */

.new-ge-footer {
    background: var(--ge-navy);
    color: var(--ge-white);
    padding: 70px 0 0;
}

.new-ge-footer-top {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 45px;
}


/* BRAND */

.new-ge-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-ge-footer-main-logo {
    display: inline-block;
    text-decoration: none;
}

.new-ge-footer-main-logo img {
    display: block;
    width: 175px;
    max-width: 100%;
    height: auto;
}

.new-ge-footer-rera {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
}


/* COMPANY LOGOS */

.new-ge-footer-companies {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.new-ge-footer-company-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-ge-footer-company-block .new-ge-footer-title {
    margin-bottom: 14px;
}

.new-ge-footer-company-logo {
    display: block;
    width: 175px;
    max-width: 100%;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}


/* HEADINGS */

.new-ge-footer-title {
    margin: 0 0 20px;
    font-family: var(--ge-body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ge-gold);
}


/* LINKS */

.new-ge-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.new-ge-footer-list li {
    margin-bottom: 12px;
}

.new-ge-footer-list a {
    display: inline-block;
    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: all 0.25s ease;
}

.new-ge-footer-list a:hover {
    color: var(--ge-gold);
    transform: translateX(3px);
}


/* CONTACT */

.new-ge-footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.new-ge-footer-contact-details p {
    max-width: 245px;
    margin: 0 0 6px;
    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.new-ge-footer-contact-details a {
    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.25s ease;
}

.new-ge-footer-contact-details a:hover {
    color: var(--ge-gold);
}


/* BOTTOM */

.new-ge-footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.new-ge-footer-bottom p {
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.new-ge-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.new-ge-footer-bottom-links a {
    font-family: var(--ge-body-font);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
}

.new-ge-footer-bottom-links a:hover {
    color: var(--ge-gold);
}

.new-ge-footer-bottom-links span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ge-gold);
}


/* TABLET */

@media (max-width: 991.98px) {
    .new-ge-footer {
        padding-top: 55px;
    }
    .new-ge-footer-top {
        --bs-gutter-x: 35px;
    }
    .new-ge-footer-company-logo {
        width: 130px;
        height: 43px;
    }
    .new-ge-footer-bottom {
        margin-top: 45px;
    }
}


/* MOBILE */

@media (max-width: 767.98px) {
    .new-ge-footer {
        padding-top: 45px;
    }
    .new-ge-footer-top {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 38px;
    }
    .new-ge-footer-main-logo img {
        width: 165px;
    }
    .new-ge-footer-rera {
        width: 140px;
        margin-top: 24px;
    }
    .new-ge-footer-company-logo {
        width: 120px;
        height: 40px;
    }
    .new-ge-footer-bottom {
        margin-top: 40px;
    }
    .new-ge-footer-bottom-links {
        justify-content: flex-start;
        margin-top: 12px;
    }
}


/* =========================================================
   FULL-WIDTH FLOOR PLAN SECTION
   ========================================================= */

.new-floor-image-section {
    width: 100%;
    padding: 40px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.new-floor-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}


/* TABLET */

@media (max-width: 991.98px) {
    .new-floor-image-section {
        padding: 30px;
    }
}


/* MOBILE */

@media (max-width: 767.98px) {
    .new-floor-image-section {
        padding: 20px;
    }
}


/* =========================================================
   ANDEAN TEK — STICKY CONTACT ACTIONS
   ========================================================= */

.new-ge-floating-actions {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    overflow: visible;
}


/* =========================================================
   MAIN BUTTON
   ========================================================= */

.new-ge-floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 54px;
    height: 54px;
    color: #ffffff !important;
    text-decoration: none !important;
    overflow: hidden;
    transition: width 0.35s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}


/* =========================================================
   ICON AREA
   ========================================================= */

.new-ge-floating-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.new-ge-floating-icon i {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   LABEL
   ========================================================= */

.new-ge-floating-label {
    width: 85px;
    padding-left: 2px;
    color: #ffffff;
    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.25s ease, transform 0.35s ease;
}


/* =========================================================
   HOVER — EXPAND LEFT
   ========================================================= */

.new-ge-floating-btn:hover {
    width: 139px;
    color: #ffffff !important;
}

.new-ge-floating-btn:hover .new-ge-floating-label {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.new-ge-whatsapp-btn {
    background: #25D366;
}

.new-ge-whatsapp-btn:hover {
    background: #20bd5a;
}


/* =========================================================
   CALL
   ========================================================= */

.new-ge-call-btn {
    background: #123F68;
}

.new-ge-call-btn:hover {
    background: #0d3151;
}


/* =========================================================
   ENQUIRY
   ========================================================= */

.new-ge-enquire-btn {
    background: var(--ge-gold);
}

.new-ge-enquire-btn:hover {
    background: var(--ge-gold-light);
}


/* =========================================================
   SUBTLE SHADOW
   ========================================================= */

.new-ge-floating-btn {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .new-ge-floating-btn {
        width: 48px;
        height: 48px;
    }
    .new-ge-floating-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }
    .new-ge-floating-icon i {
        font-size: 17px;
    }
    .new-ge-floating-btn:hover {
        width: 125px;
    }
    .new-ge-floating-label {
        width: 77px;
        font-size: 10px;
    }
}


/* ============================= */


/* GARDEN ENCLAVE ENQUIRY MODAL */


/* ============================= */

.new-ge-enquiry-modal {
    border: none;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
}


/* HEADER */

.new-ge-enquiry-header {
    padding: 35px 40px 25px;
    border-bottom: 1px solid #eeeeee;
    align-items: flex-start;
}

.new-ge-enquiry-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
}

.new-ge-enquiry-header .modal-title {
    font-size: 30px;
    font-weight: 500;
    color: #222;
    margin: 0;
}


/* BODY */

.new-ge-enquiry-body {
    padding: 25px 40px 40px;
}

.new-ge-enquiry-description {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 28px;
}


/* FORM */

.new-ge-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-ge-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.new-ge-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

.new-ge-form-group input,
.new-ge-form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: #fafafa;
    color: #333;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: 0.3s ease;
}

.new-ge-form-group textarea {
    resize: vertical;
}

.new-ge-form-group input:focus,
.new-ge-form-group textarea:focus {
    border-color: #222;
    background: #fff;
}

.new-ge-form-group input::placeholder,
.new-ge-form-group textarea::placeholder {
    color: #aaa;
}


/* SUBMIT BUTTON */

.new-ge-enquiry-submit {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    background: var(--ge-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.new-ge-enquiry-submit:hover {
    background: #444;
}


/* CLOSE BUTTON */

.new-ge-enquiry-header .btn-close {
    opacity: 0.5;
    margin-top: 5px;
}

.new-ge-enquiry-header .btn-close:hover {
    opacity: 1;
}


/* MODAL BACKDROP */

.modal-backdrop.show {
    opacity: 0.6;
}


/* MOBILE */

@media (max-width: 576px) {
    .new-ge-enquiry-header {
        padding: 28px 22px 20px;
    }
    .new-ge-enquiry-body {
        padding: 22px 22px 30px;
    }
    .new-ge-enquiry-header .modal-title {
        font-size: 26px;
    }
}


/* +++++++=============+++++++=========+++++++++========================================== */


/* =========================================================
   ANDEAN TEK — HEADER BRAND
   ========================================================= */

.ge-logo-main {
    font-family: var(--ge-display-font);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ge-white);
    line-height: 1;
}

.ge-logo-location {
    display: block;
    margin-top: 6px;
    font-family: var(--ge-body-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ge-gold);
}


/* =========================================================
   ANDEAN TEK — HEADER NAVIGATION
   ========================================================= */

.ge-header-nav .nav-link {
    white-space: nowrap;
}


/* =========================================================
   ANDEAN TEK — MOBILE BRAND
   ========================================================= */

.ge-mobile-logo {
    font-family: var(--ge-display-font);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ge-white);
}

.ge-mobile-location {
    font-family: var(--ge-body-font);
}


/* =========================================================
   ANDEAN TEK — HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .ge-logo-main {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .ge-logo-main {
        font-size: 20px;
    }
}


/* =========================================================
   ANDEAN TEK — COMPANY FACTS
   ========================================================= */

.at-facts {
    width: 100%;
    background: var(--ge-light);
    border-top: 1px solid var(--ge-border-light);
    border-bottom: 1px solid var(--ge-border-light);
}

.at-facts-inner {
    width: calc(100% - 288px);
    max-width: 1296px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 72px);
}

.at-fact {
    min-height: 72px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* Vertical line in the middle */

.at-fact:nth-child(odd) {
    border-right: 1px solid var(--ge-border-light);
}


/* Horizontal line between upper and lower rows */

.at-fact:nth-child(3),
.at-fact:nth-child(4) {
    border-top: 1px solid var(--ge-border-light);
}


/* Horizontal line between upper and lower rows */

.at-fact:nth-child(3),
.at-fact:nth-child(4) {
    border-top: 1px solid var(--ge-border-light);
}

.at-fact-label {
    margin-bottom: 8px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ge-muted);
}

.at-fact strong {
    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--ge-text);
}


/* =========================================================
   ANDEAN TEK — WHAT WE TAKE
   ========================================================= */

.at-what-we-take {
    padding: 110px 0;
    background: var(--ge-cream);
    overflow: hidden;
}

.at-wt-content {
    max-width: 560px;
    padding-right: 35px;
}

.at-eyebrow {
    margin: 0 0 16px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-wt-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(44px, 5vw, 30px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ge-ink);
}

.at-gold-line {
    width: 55px;
    height: 2px;
    margin: 28px 0 24px;
    background: linear-gradient( 90deg, var(--ge-gold), var(--ge-gold-light));
}

.at-wt-intro {
    max-width: 500px;
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ge-text);
}

.at-wt-description {
    max-width: 540px;
    margin: 18px 0 0;
    font-family: var(--ge-body-font);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ge-muted);
}


/* =========================================================
   WHAT WE TAKE — LIST
   ========================================================= */

.at-wt-list {
    margin-top: 35px;
    border-top: 1px solid var(--ge-border-light);
}

.at-wt-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ge-border-light);
}

.at-wt-number {
    font-family: var(--ge-display-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--ge-gold);
}

.at-wt-item h3 {
    margin: 0 0 6px;
    font-family: var(--ge-display-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--ge-ink);
}

.at-wt-item p {
    max-width: 450px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 12px;
    line-height: 1.65;
    color: var(--ge-muted);
}


/* =========================================================
   WHAT WE TAKE — BUTTON
   ========================================================= */

.at-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 14px 20px;
    border: 1px solid var(--ge-gold);
    background: var(--ge-gold);
    color: var(--ge-ink);
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.at-link-btn i {
    transition: transform 0.3s ease;
}

.at-link-btn:hover {
    background: var(--ge-gold-light);
    border-color: var(--ge-gold-light);
    color: var(--ge-ink);
}

.at-link-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   WHAT WE TAKE — IMAGE
   ========================================================= */

.at-wt-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--ge-mineral);
}

.at-wt-visual img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.at-wt-visual:hover img {
    transform: scale(1.025);
}

.at-wt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(7, 10, 10, 0.05) 20%, rgba(7, 10, 10, 0.72) 100%);
}

.at-wt-card {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 25px 28px;
    background: rgba(10, 13, 13, 0.88);
    border-left: 2px solid var(--ge-gold);
    backdrop-filter: blur(8px);
}

.at-wt-card span {
    display: block;
    margin-bottom: 12px;
    font-family: var(--ge-body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ge-gold-light);
}

.at-wt-card strong {
    display: block;
    font-family: var(--ge-display-font);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--ge-white);
}

.at-wt-card small {
    display: block;
    margin-top: 12px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   WHAT WE TAKE — RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .at-wt-content {
        max-width: 100%;
        padding-right: 0;
    }
    .at-wt-visual {
        min-height: 520px;
    }
    .at-wt-visual img {
        min-height: 520px;
    }
}

@media (max-width: 767.98px) {
    .at-facts-inner {
        grid-template-columns: 1fr;
        border-left: 0;
    }
    .at-fact {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid var(--ge-border-light);
    }
    .at-fact:last-child {
        border-bottom: 0;
    }
    .at-what-we-take {
        padding: 75px 0;
    }
    .at-wt-title {
        font-size: 46px;
    }
    .at-wt-intro {
        font-size: 18px;
    }
    .at-wt-visual {
        min-height: 430px;
    }
    .at-wt-visual img {
        min-height: 430px;
    }
    .at-wt-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 20px;
    }
    .at-wt-card strong {
        font-size: 21px;
    }
}

@media (max-width: 575.98px) {
    .at-fact {
        padding: 16px 18px;
    }
    .at-wt-title {
        font-size: 40px;
    }
    .at-wt-item {
        grid-template-columns: 35px 1fr;
        gap: 10px;
    }
}


/* =========================================================
   ANDEAN TEK — WHO WE ARE
   ========================================================= */

.at-who-we-are {
    padding: 110px 0 120px;
    background: var(--ge-light);
    color: var(--ge-text);
}

.at-who-heading {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.at-who-eyebrow {
    margin: 0 0 18px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-who-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ge-ink);
}

.at-who-intro {
    max-width: 850px;
    margin: 25px auto 0;
    font-family: var(--ge-body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ge-muted);
}


/* =========================================================
   MAIN PHOTO
   ========================================================= */

.at-who-photo-large {
    position: relative;
    width: 100%;
    height: 560px;
    margin-bottom: 20px;
    overflow: hidden;
}

.at-who-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    background: linear-gradient( 135deg, #202622 0%, #111615 100%);
    border: 1px solid var(--ge-border);
    color: var(--ge-white);
}

.at-who-photo-placeholder span {
    display: block;
    margin-bottom: 15px;
    font-family: var(--ge-display-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--ge-gold-light);
}

.at-who-photo-placeholder p {
    max-width: 420px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   PHOTO GRID
   ========================================================= */

.at-who-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.at-who-photo {
    width: 100%;
    min-height: 300px;
}

.at-who-photo .at-who-photo-placeholder {
    height: 100%;
    min-height: 300px;
    padding: 25px 20px;
}

.at-who-photo .at-who-photo-placeholder p {
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   BOTTOM NOTE
   ========================================================= */

.at-who-note {
    max-width: 700px;
    margin: 45px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--ge-border-light);
    text-align: center;
    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--ge-muted);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .at-who-we-are {
        padding: 90px 0 100px;
    }
    .at-who-heading {
        margin-bottom: 50px;
    }
    .at-who-photo-large {
        height: 480px;
    }
    .at-who-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .at-who-we-are {
        padding: 70px 0 80px;
    }
    .at-who-heading {
        margin-bottom: 40px;
        text-align: left;
    }
    .at-who-title {
        font-size: 42px;
    }
    .at-who-intro {
        font-size: 14px;
        margin-top: 20px;
    }
    .at-who-photo-large {
        height: 380px;
        margin-bottom: 15px;
    }
    .at-who-photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .at-who-photo {
        min-height: 260px;
    }
    .at-who-photo .at-who-photo-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .at-who-we-are {
        padding: 60px 0 70px;
    }
    .at-who-title {
        font-size: 36px;
    }
    .at-who-photo-large {
        height: 320px;
    }
    .at-who-note {
        margin-top: 35px;
        font-size: 10px;
    }
}


/* =========================================================
   ANDEAN TEK — WHO WE ARE REAL IMAGES
   ========================================================= */

.at-who-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.at-who-photo-large .at-who-image {
    height: 560px;
    min-height: 560px;
}


/* Mobile */

@media (max-width: 767.98px) {
    .at-who-image,
    .at-who-photo-large .at-who-image {
        height: 260px;
        min-height: 260px;
    }
}


/* =========================================================
   ANDEAN TEK — CONTACT / ENQUIRY
   ========================================================= */

.at-contact {
    padding: 110px 0 120px;
    background: var(--ge-light);
    color: var(--ge-text);
}

.at-contact-form {
    max-width: 650px;
}

.at-contact-eyebrow {
    margin: 0 0 14px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-contact-title {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ge-ink);
}

.at-contact-intro {
    max-width: 560px;
    margin: 20px 0 38px;
    font-family: var(--ge-body-font);
    font-size: 14px;
    line-height: 1.75;
    color: var(--ge-muted);
}


/* =========================================================
   FORM
   ========================================================= */

.at-form-field {
    margin-bottom: 18px;
}

.at-form-field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--ge-body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ge-text);
}

.at-form-field input,
.at-form-field select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(20, 25, 23, 0.18);
    border-radius: 0;
    outline: none;
    background: #fff;
    font-family: var(--ge-body-font);
    font-size: 13px;
    color: var(--ge-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.at-form-field input::placeholder {
    color: #8a8d89;
}

.at-form-field input:focus,
.at-form-field select:focus {
    border-color: var(--ge-gold);
    box-shadow: 0 0 0 2px rgba(196, 154, 70, 0.10);
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.at-whatsapp-btn {
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    padding: 0 20px;
    border: 1px solid #168a4b;
    border-radius: 0;
    background: #168a4b;
    color: #fff;
    font-family: var(--ge-body-font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.at-whatsapp-btn i {
    margin-right: 8px;
    font-size: 15px;
}

.at-whatsapp-btn:hover {
    background: #11733e;
    transform: translateY(-1px);
}


/* =========================================================
   CALL NOTE
   ========================================================= */

.at-contact-call-note {
    margin: 12px 0 0;
    font-family: var(--ge-body-font);
    font-size: 10px;
    line-height: 1.6;
    color: var(--ge-muted);
}

.at-contact-call-note a {
    color: var(--ge-text);
    text-decoration: none;
}

.at-contact-call-note a:hover {
    color: var(--ge-gold);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.at-contact-details {
    padding-top: 34px;
}

.at-contact-detail {
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--ge-border-light);
}

.at-detail-label {
    display: block;
    margin-bottom: 7px;
    font-family: var(--ge-body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ge-muted);
}

.at-contact-detail a,
.at-contact-detail p {
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ge-text);
    text-decoration: none;
}

.at-contact-detail a:hover {
    color: var(--ge-gold);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .at-contact {
        padding: 85px 0 95px;
    }
    .at-contact-details {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .at-contact {
        padding: 70px 0 80px;
    }
    .at-contact-title {
        font-size: 40px;
    }
    .at-contact-intro {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .at-contact-details {
        margin-top: 15px;
    }
}


/* =========================================================
   ANDEAN TEK — LOCATION
   ========================================================= */

.at-location {
    background: var(--ge-light);
    padding: 0 0 100px;
}

.at-location-map {
    width: 100%;
    padding: 0 24px;
}

.at-location-placeholder {
    min-height: 420px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed var(--ge-border);
    background: #fff;
}

.at-location-eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ge-gold);
}

.at-location-placeholder h2 {
    margin: 0;
    font-family: var(--ge-display-font);
    font-size: 32px;
    font-weight: 500;
    color: var(--ge-ink);
}

.at-location-placeholder p {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--ge-muted);
}

@media (max-width: 767.98px) {
    .at-location {
        padding-bottom: 70px;
    }
    .at-location-map {
        padding: 0 15px;
    }
    .at-location-placeholder {
        min-height: 320px;
    }
}


/* =========================================================
   ANDEAN TEK — FOOTER
   ========================================================= */

.new-ge-footer {
    background: #111820;
    color: var(--ge-white);
    padding: 55px 0 25px;
}


/* =========================================================
   FOOTER TOP
   ========================================================= */

.new-ge-footer-top {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 30px;
    padding-bottom: 35px;
}


/* =========================================================
   COMPANY / LOGO
   ========================================================= */

.new-ge-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-ge-footer-main-logo {
    display: inline-block;
    text-decoration: none;
}

.new-ge-footer-main-logo img {
    display: block;
    width: 175px;
    max-width: 100%;
    height: auto;
}

.new-ge-footer-tagline {
    margin: 14px 0 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.70);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.new-ge-footer-title {
    margin: 0 0 18px;
    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ge-gold);
}


/* =========================================================
   QUICK LINKS
   ========================================================= */


/* Two columns instead of one long column */

.new-ge-footer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    column-gap: 35px;
    row-gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.new-ge-footer-list li {
    margin-bottom: 9px;
}

.new-ge-footer-list a {
    display: inline-block;
    font-family: var(--ge-body-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: all 0.25s ease;
}

.new-ge-footer-list a:hover {
    color: var(--ge-gold);
    transform: translateX(3px);
}


/* =========================================================
   LEGAL INFORMATION
   ========================================================= */

.new-ge-footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.new-ge-footer-contact-details p {
    max-width: 310px;
    margin: 0;
    font-family: var(--ge-body-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   FOOTER BOTTOM — CENTERED LEGAL STATEMENT
   ========================================================= */

.new-ge-footer-bottom {
    margin-top: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    text-align: center;
}

.new-ge-footer-bottom p {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--ge-body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .new-ge-footer {
        padding: 50px 0 25px;
    }
    .new-ge-footer-top {
        padding-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .new-ge-footer {
        padding: 45px 0 22px;
    }
    .new-ge-footer-top {
        --bs-gutter-y: 30px;
    }
    .new-ge-footer-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }
    .new-ge-footer-list a {
        font-size: 13px;
    }
    .new-ge-footer-contact-details p {
        font-size: 13px;
    }
    .new-ge-footer-bottom {
        padding-top: 20px;
    }
    .new-ge-footer-bottom p {
        font-size: 11px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .new-ge-footer-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
    }
    .new-ge-footer-list a {
        font-size: 12px;
    }
}


/* =========================================================
   ANDEAN TEK — UNIFIED SECTION TITLES
   ========================================================= */

.at-wt-title,
.at-grade-title,
.at-grade-assay-content h3,
.at-payment-title,
.at-process-title,
.at-before-title,
.at-who-title,
.at-contact-title {
    font-family: var(--ge-display-font);
    font-size: clamp(40px, 4.2vw, 50px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
}


/* =========================================================
   SECTION-SPECIFIC COLORS
   ========================================================= */


/* Dark / black section */

.at-grade-title,
.at-grade-assay-content h3 {
    color: var(--ge-white);
}


/* Light sections */

.at-wt-title,
.at-payment-title,
.at-before-title,
.at-who-title,
.at-contact-title {
    color: var(--ge-charcoal);
}

.at-process-title {
    color: var(--ge-white);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-wt-title,
    .at-grade-title,
    .at-grade-assay-content h3,
    .at-payment-title,
    .at-process-title,
    .at-before-title,
    .at-who-title,
    .at-contact-title {
        font-size: 40px;
        line-height: 1.05;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .at-wt-title,
    .at-grade-title,
    .at-grade-assay-content h3,
    .at-payment-title,
    .at-process-title,
    .at-before-title,
    .at-who-title,
    .at-contact-title {
        font-size: 36px;
    }
}


/* =========================================================
   ANDEAN TEK — LOGO IMAGE
   ========================================================= */

.ge-header-logo {
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0;
}

.ge-logo-image {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   MOBILE LOGO
   ========================================================= */

.ge-mobile-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ge-mobile-logo-image {
    width: 145px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .ge-logo-image {
        width: 140px;
    }
}

@media (max-width: 575.98px) {
    .ge-mobile-logo-image {
        width: 130px;
    }
}


/* =========================================================
   ANDEAN TEK — FOOTER LOGO
   ========================================================= */

.new-ge-footer-main-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.new-ge-footer-logo {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* MOBILE */

@media (max-width: 767.98px) {
    .new-ge-footer-brand {
        text-align: center;
    }
    .new-ge-footer-main-logo {
        justify-content: center;
    }
    .new-ge-footer-logo {
        width: 170px;
    }
}


/* =========================================================
   ANDEAN TEK — FINAL RESPONSIVE SYSTEM
   ========================================================= */


/* =========================================================
   GLOBAL RESPONSIVE SAFETY
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

.container {
    width: 100%;
}


/* =========================================================
   HEADER — RESPONSIVE
   ========================================================= */

.ge-header .container {
    width: 100%;
}

.ge-logo-image {
    width: 150px;
    max-width: 42vw;
    height: auto;
}

.ge-header .navbar {
    width: 100%;
}

.ge-header-nav {
    flex-wrap: nowrap;
}

.ge-header-nav .nav-link {
    white-space: nowrap;
}


/* TABLET */

@media (max-width: 1199.98px) {
    .ge-header-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 9px;
    }
    .ge-header-btn {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* MOBILE HEADER */

@media (max-width: 991.98px) {
    .ge-header .navbar {
        min-height: 72px;
    }
    .ge-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .ge-logo-image {
        width: 135px;
    }
}


/* SMALL MOBILE */

@media (max-width: 575.98px) {
    .ge-header .navbar {
        min-height: 68px;
    }
    .ge-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .ge-logo-image {
        width: 125px;
    }
    .ge-menu-toggle {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   MOBILE OFFCANVAS
   ========================================================= */

.ge-mobile-menu {
    width: min(88vw, 380px);
}

.ge-mobile-menu .offcanvas-header {
    padding: 22px 20px;
}

.ge-mobile-menu .offcanvas-body {
    padding: 20px;
}

.ge-mobile-logo-image {
    width: 145px;
    max-width: 65vw;
    height: auto;
}

.ge-mobile-nav {
    margin-top: 5px;
}

.ge-mobile-nav .nav-link {
    min-height: 52px;
    display: flex;
    align-items: center;
}


/* =========================================================
   HERO — RESPONSIVE
   ========================================================= */

.ge-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ge-hero img,
.ge-hero video {
    max-width: none;
}

.ge-hero-content,
.ge-hero-inner {
    max-width: 100%;
}


/* TABLET */

@media (max-width: 991.98px) {
    .ge-hero {
        min-height: 700px;
    }
}


/* MOBILE */

@media (max-width: 767.98px) {
    .ge-hero {
        min-height: 680px;
    }
    .ge-hero-title {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 62px);
        line-height: 0.98;
    }
}


/* SMALL MOBILE */

@media (max-width: 575.98px) {
    .ge-hero {
        min-height: 620px;
    }
    .ge-hero-title {
        font-size: 43px;
    }
}


/* =========================================================
   GENERAL SECTION RESPONSIVENESS
   ========================================================= */

@media (max-width: 991.98px) {
    .at-wt,
    .at-grade,
    .at-payment,
    .at-process,
    .at-before-start,
    .at-who-we-are,
    .at-contact {
        overflow: hidden;
    }
}


/* =========================================================
   WHAT WE BUY
   ========================================================= */

@media (max-width: 767.98px) {
    .at-wt {
        padding-left: 0;
        padding-right: 0;
    }
    .at-wt-title {
        max-width: 100%;
    }
    .at-wt-intro {
        max-width: 100%;
    }
    .at-wt-grid,
    .at-wt-content,
    .at-wt-layout {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   GRADE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-grade {
        overflow: hidden;
    }
    .at-grade-heading,
    .at-grade-content {
        width: 100%;
        max-width: 100%;
    }
    .at-grade-title,
    .at-grade-assay-content h3 {
        max-width: 100%;
        word-wrap: break-word;
    }
    .at-grade-assay,
    .at-grade-assay-image,
    .at-grade-assay-content {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   PAYMENT
   ========================================================= */

@media (max-width: 767.98px) {
    .at-payment-process {
        width: 100%;
        max-width: 100%;
    }
    .at-payment-step {
        min-width: 0;
    }
    .at-payment-title {
        max-width: 100%;
    }
}


/* =========================================================
   PROCESS
   ========================================================= */

@media (max-width: 767.98px) {
    .at-process {
        overflow: hidden;
    }
    .at-process-flow,
    .at-process-grid {
        width: 100%;
        max-width: 100%;
    }
    .at-process-step {
        min-width: 0;
    }
}


/* =========================================================
   BEFORE WE START
   ========================================================= */

@media (max-width: 767.98px) {
    .at-before-start {
        padding-top: 70px;
        padding-bottom: 75px;
    }
    .at-before-content {
        width: 100%;
        max-width: 100%;
    }
    .at-before-title {
        max-width: 100%;
        font-size: 38px;
    }
    .at-before-intro,
    .at-before-description {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }
    .at-before-documents {
        width: 100%;
    }
    .at-before-document {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   WHO WE ARE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-who-we-are {
        padding: 70px 0 80px;
        overflow: hidden;
    }
    .at-who-heading {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    .at-who-title {
        font-size: 38px;
    }
    .at-who-intro {
        width: 100%;
        max-width: 100%;
        font-size: 13px;
    }
    .at-who-photo-large {
        width: 100%;
        height: 260px;
        margin-bottom: 12px;
    }
    .at-who-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* =========================================================
   CONTACT — NEW ATTRACTIVE DESIGN
   ========================================================= */

.at-contact {
    position: relative;
    padding: 105px 0 110px;
    background: linear-gradient( 180deg, #f8f7f3 0%, #f4f2ed 100%);
    overflow: hidden;
}


/* subtle gold accent */

.at-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient( 90deg, transparent 0%, var(--ge-gold) 50%, transparent 100%);
}


/* =========================================================
   CONTACT LEFT
   ========================================================= */

.at-contact-form {
    width: 100%;
    max-width: 680px;
}

.at-contact-eyebrow {
    margin-bottom: 15px;
    color: var(--ge-gold);
}

.at-contact-title {
    max-width: 650px;
    color: var(--ge-charcoal);
}

.at-contact-intro {
    max-width: 600px;
    margin-top: 22px;
    margin-bottom: 38px;
    color: #6f736f;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT FORM CARD
   ========================================================= */

.at-contact-form {
    position: relative;
}

.at-form-field {
    margin-bottom: 19px;
}

.at-form-field label {
    color: #333936;
    font-size: 9px;
    letter-spacing: 0.20em;
}

.at-form-field input,
.at-form-field select {
    height: 50px;
    border: 1px solid rgba(20, 25, 23, 0.14);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(20, 25, 23, 0.025);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.at-form-field input:hover,
.at-form-field select:hover {
    border-color: rgba(196, 154, 70, 0.45);
}

.at-form-field input:focus,
.at-form-field select:focus {
    border-color: var(--ge-gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 70, 0.10), 0 5px 20px rgba(20, 25, 23, 0.05);
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.at-whatsapp-btn {
    min-height: 50px;
    margin-top: 4px;
    border: 0;
    background: #168a4b;
    box-shadow: 0 8px 20px rgba(22, 138, 75, 0.14);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.at-whatsapp-btn:hover {
    background: #11733e;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(22, 138, 75, 0.20);
}


/* =========================================================
   CONTACT INFORMATION PANEL
   ========================================================= */

.at-contact-details {
    margin-top: 30px;
    padding: 35px 35px 10px;
    background: linear-gradient( 145deg, #111820 0%, #172128 100%);
    border: 1px solid rgba(196, 154, 70, 0.18);
    box-shadow: 0 20px 50px rgba(10, 13, 13, 0.12);
}


/* Gold top accent */

.at-contact-details::before {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin-bottom: 30px;
    background: var(--ge-gold);
}

.at-contact-detail {
    padding-bottom: 21px;
    margin-bottom: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.at-contact-detail:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.at-detail-label {
    margin-bottom: 8px;
    color: var(--ge-gold);
    font-size: 8px;
    letter-spacing: 0.22em;
}

.at-contact-detail a,
.at-contact-detail p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
}

.at-contact-detail a:hover {
    color: var(--ge-gold-light);
}


/* =========================================================
   CONTACT CALL NOTE
   ========================================================= */

.at-contact-call-note {
    margin-top: 14px;
    color: #777c77;
}

.at-contact-call-note a {
    color: var(--ge-text);
    font-weight: 600;
}


/* =========================================================
   CONTACT — TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .at-contact {
        padding: 85px 0 90px;
    }
    .at-contact-form {
        max-width: 100%;
    }
    .at-contact-details {
        margin-top: 40px;
    }
}


/* =========================================================
   CONTACT — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .at-contact {
        padding: 70px 0 85px;
    }
    .at-contact-title {
        font-size: 38px;
        line-height: 1.05;
    }
    .at-contact-intro {
        margin-top: 18px;
        margin-bottom: 30px;
        font-size: 13px;
        line-height: 1.75;
    }
    .at-form-field {
        margin-bottom: 16px;
    }
    .at-form-field input,
    .at-form-field select {
        height: 48px;
        font-size: 13px;
    }
    .at-whatsapp-btn {
        min-height: 50px;
    }
    .at-contact-details {
        margin-top: 45px;
        padding: 28px 22px 5px;
    }
    .at-contact-details::before {
        margin-bottom: 25px;
    }
    .at-contact-detail {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}


/* =========================================================
   SMALL MOBILE CONTACT
   ========================================================= */

@media (max-width: 480px) {
    .at-contact {
        padding: 60px 0 75px;
    }
    .at-contact-title {
        font-size: 34px;
    }
    .at-contact-intro {
        font-size: 12.5px;
    }
    .at-contact-details {
        padding: 25px 18px 4px;
    }
    .at-contact-detail a,
    .at-contact-detail p {
        font-size: 13px;
    }
}


/* =========================================================
   LOCATION
   ========================================================= */

@media (max-width: 767.98px) {
    .at-location {
        padding-bottom: 60px;
        overflow: hidden;
    }
    .at-location-map {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .at-location-map iframe {
        width: 100% !important;
        max-width: 100%;
        min-height: 300px;
    }
}


/* =========================================================
   FOOTER — RESPONSIVE
   ========================================================= */

.new-ge-footer {
    width: 100%;
    overflow: hidden;
}

.new-ge-footer-top {
    align-items: flex-start;
}

.new-ge-footer-brand {
    max-width: 100%;
}

.new-ge-footer-logo {
    max-width: 100%;
    height: auto;
}

.new-ge-footer-list {
    min-width: 0;
}

.new-ge-footer-list li {
    min-width: 0;
}

.new-ge-footer-list a {
    word-break: normal;
}

.new-ge-footer-contact-details p {
    overflow-wrap: anywhere;
}


/* TABLET */

@media (max-width: 991.98px) {
    .new-ge-footer {
        padding-top: 50px;
    }
    .new-ge-footer-top {
        row-gap: 35px;
    }
}


/* MOBILE */

@media (max-width: 767.98px) {
    .new-ge-footer {
        padding: 45px 0 25px;
    }
    .new-ge-footer-top {
        row-gap: 32px;
    }
    .new-ge-footer-brand {
        text-align: center;
    }
    .new-ge-footer-main-logo {
        justify-content: center;
    }
    .new-ge-footer-logo {
        width: 160px;
    }
    .new-ge-footer-tagline {
        text-align: center;
    }
    .new-ge-footer-title {
        margin-bottom: 15px;
    }
    .new-ge-footer-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }
    .new-ge-footer-list li {
        margin-bottom: 8px;
    }
    .new-ge-footer-list a {
        font-size: 12px;
    }
    .new-ge-footer-contact-details p {
        font-size: 12px;
    }
    .new-ge-footer-bottom {
        margin-top: 15px;
        padding-top: 20px;
    }
    .new-ge-footer-bottom p {
        font-size: 10px;
        line-height: 1.7;
        text-align: center;
    }
}


/* =========================================================
   FLOATING CONTACT BUTTONS — DESKTOP
   ========================================================= */

.new-ge-floating-actions {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;
}


/* =========================================================
   FLOATING CONTACT BUTTONS — MOBILE BOTTOM BAR
   ========================================================= */

@media (max-width: 767.98px) {
    .new-ge-floating-actions {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 58px;
        transform: none;
        display: flex;
        flex-direction: row;
        background: #111820;
        padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.18);
    }
    .new-ge-floating-btn {
        flex: 1 1 33.333%;
        width: 33.333% !important;
        height: 58px;
        display: flex;
        justify-content: center;
        overflow: hidden;
        box-shadow: none;
        transition: background-color 0.2s ease;
    }
    .new-ge-floating-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 58px;
    }
    .new-ge-floating-icon i {
        font-size: 17px;
    }
    .new-ge-floating-label {
        width: auto;
        padding: 0 5px 0 0;
        opacity: 1;
        transform: none;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.03em;
        display: flex;
        align-items: center;
    }
    .new-ge-floating-btn:hover {
        width: 33.333% !important;
        transform: none;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE FLOATING BAR
   ========================================================= */

@media (max-width: 380px) {
    .new-ge-floating-actions {
        height: 54px;
    }
    .new-ge-floating-btn {
        height: 54px;
    }
    .new-ge-floating-icon {
        flex-basis: 36px;
        width: 36px;
        height: 54px;
    }
    .new-ge-floating-icon i {
        font-size: 15px;
    }
    .new-ge-floating-label {
        font-size: 9px;
    }
}


/* =========================================================
   BOTTOM BAR SAFE SPACE
   ========================================================= */

@media (max-width: 767.98px) {
    body {
        padding-bottom: 58px;
    }
}