:root {
    --about-section-gap: var(--hero-section-gap, clamp(4rem, 6vw, 7rem));
    --cta-padding-top: 0;
    --cta-padding-bottom: var(--about-section-gap);
}

.about-section-gap {
    width: 100%;
    height: var(--about-section-gap);
    flex-shrink: 0;
}

/* ======================
     ABOUT HERO
    ==================== */

.about-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    background: #05010a;
    overflow: hidden;
    padding-top: var(--hero-padding-top, clamp(5rem, 7vw, 7.5rem));
    padding-bottom: 0.9rem;
    box-sizing: border-box;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.8) contrast(1.1);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, transparent 0%, #05010a 80%),
        linear-gradient(to right, #05010a 20%, rgba(5, 1, 10, 0.2) 100%);
    z-index: 2;
}

.about-hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    /* Space between text and stats */
    align-items: flex-start;
}

.about-hero-title {
    margin-bottom: 24px;
    color: #fff;
}

.about-hero-para {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    font-weight: 400;
    margin-bottom: 16px;
}

.about-hero-subtext {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    max-width: 530px;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-actions .magnetic-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.about-hero-actions .btn-book,
.about-hero-actions .btn-secondary-outline {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
}

/* Stats */
.about-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
    margin-top: clamp(32px, 3vw, 41px);
}

@media (max-width: 1024px) {
    .about-hero-stats {
        margin-top: 0;
    }
}

.stat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stat-bar {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, var(--purple-light), transparent);
    box-shadow: 0 0 20px rgba(165, 148, 253, 0.5);
    transform-origin: top;
    transform: scaleY(0);
    /* Important for animation */
}

.stat-data h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.stat-data p {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 1024px) {

    .about-hero {
        padding-top: var(--hero-padding-top-tablet, clamp(4.5rem, 6.5vw, 6.5rem));
        padding-bottom: clamp(2.5rem, 5vw, 4rem);
        min-height: auto;
        box-sizing: border-box;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 48px);
        text-align: center;
    }

    .about-hero-para {
        margin: 0 auto 12px;
        font-size: 15px;
    }

    .about-hero-subtext {
        margin: 0 auto 32px;
        font-size: 13.5px;
    }

    .about-hero-actions {
        justify-content: center;
        margin: 36px auto 32px;
    }

    .about-hero-stats {
        max-width: 640px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 36px) clamp(20px, 3.5vw, 36px);
        text-align: left;
    }
}

@media (max-width: 768px) {

    .about-hero {
        padding-top: var(--hero-padding-top-tablet, clamp(4.5rem, 7vw, 6.25rem));
        padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
    }

    .about-hero-overlay {
        background: linear-gradient(to bottom, #05010a 30%, rgba(5, 1, 10, 0.6) 100%);
    }

    .about-hero-grid {
        gap: 36px;
    }

    .about-hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .about-hero-para {
        font-size: 14.5px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .about-hero-subtext {
        font-size: 13px;
        line-height: 1.5;
        margin: 0 auto 28px;
    }

    .about-hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        max-width: 440px;
        margin: 32px auto 28px;
    }

    .about-hero-actions .magnetic-wrap {
        flex: 1 1 0px;
        min-width: 145px;
        max-width: 210px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .about-hero-actions .btn-book,
    .about-hero-actions .btn-secondary-outline {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 12px 14px;
        font-size: 12.5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        text-align: center;
        box-sizing: border-box;
    }

    .about-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .stat-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 14px;
    }

    .stat-bar {
        display: block !important;
        width: 2px;
        height: 100%;
        min-height: 44px;
        flex-shrink: 0;
        align-self: stretch;
        background: linear-gradient(to bottom, var(--purple-light), transparent);
        box-shadow: 0 0 15px rgba(165, 148, 253, 0.5);
        transform-origin: top;
    }

    .stat-data h2 {
        font-size: clamp(26px, 6vw, 36px);
        margin-bottom: 4px;
        line-height: 1.1;
    }

    .stat-data p {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    .about-hero {
        padding-top: var(--hero-padding-top-mobile, clamp(3.75rem, 5vw, 4.75rem));
        padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
        min-height: auto;
        box-sizing: border-box;
    }

    .about-hero-grid {
        gap: 16px;
    }

    .about-hero-title {
        font-size: 1.65rem;
        margin-bottom: 10px;
    }

    .about-hero-para {
        font-size: 13.5px;
    }

    .about-hero-subtext {
        font-size: 12.5px;
        margin: 0 auto 24px;
    }

    .about-hero-actions {
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin: 28px auto 24px;
    }

    .about-hero-actions .magnetic-wrap {
        flex: 1 1 0px;
        min-width: 130px;
        max-width: 175px;
    }

    .about-hero-actions .btn-book,
    .about-hero-actions .btn-secondary-outline {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 11px 10px;
        font-size: 11.5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .stat-data h2 {
        font-size: 24px;
    }
}

/* ======================
   MISSION SECTION
====================== */

.mission-section {
    padding: 0;
    background: #05010a;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Layout */
.mission-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
}

/* Text Side */
.mission-text-content {
    flex: 1.2;
}

.mission-display-title {
    text-transform: uppercase;
    margin-bottom: clamp(30px, 5vw, 50px);
}

.mission-para-stack {
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-lead-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}

.mission-body-text p {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
}

/* Visual Side */
.mission-visual-content {
    flex: 1;
}

.mission-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
}

.frame-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    pointer-events: none;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    display: block;
    transition: transform 0.6s ease;
}

.mission-frame:hover .mission-image {
    transform: scale(1.05);
}

.mission-label-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 6;
}

/* ======================
   TABLET (1024px ↓)
====================== */

@media (max-width: 1024px) {

    .mission-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 70px;
    }

    .mission-text-content,
    .mission-visual-content {
        width: 100%;
    }

    .mission-para-stack {
        border-left: none;
        padding-left: 0;
    }

    .mission-body-text p {
        margin: 0 auto;
    }

    .mission-display-title {
        letter-spacing: -1px;
    }
}

/* ======================
   MOBILE (768px ↓)
====================== */

@media (max-width: 768px) {


    .mission-display-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .mission-lead-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .mission-body-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .mission-frame {
        max-width: 92%;
        margin: 0 auto;
    }

    .mission-label-tag {
        font-size: 9px;
        padding: 6px 14px;
    }
}

/* ======================
   SMALL MOBILE (480px ↓)
====================== */

@media (max-width: 480px) {


    .mission-display-title {
        font-size: 1.8rem;
    }

    .mission-lead-text {
        font-size: 16px;
    }

    .mission-body-text p {
        font-size: 14px;
    }
}

/* ======================
   VALUES MONOLITH SECTION
====================== */

.values-monolith-section {
    padding: 0;
    background: #05010a;
    color: #fff;
}

/* Intro */
.values-intro {
    margin-bottom: clamp(60px, 8vw, 100px);
}

.values-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
}

/* List Layout */
.monolith-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monolith-item {
    position: relative;
    width: 100%;
    padding: clamp(25px, 4vw, 50px) clamp(25px, 5vw, 60px);
    background: #05010a;
    border: 1px solid rgba(165, 148, 253, 0.3);
    border-radius: 6px;
    overflow: hidden;
    cursor: default;

    transform-style: preserve-3d;
    will-change: transform;
}

/* Glow Background */
.monolith-bg {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center,
            rgba(165, 148, 253, 0.15) 0%,
            transparent 70%);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

/* Content Layout */
.monolith-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left */
.m-left {
    flex: 1;
}

.m-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--purple-light);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

.m-title {
    font-size: clamp(1.8rem, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    word-spacing: 2.5px;
    display: inline-block;
    background-image: linear-gradient(90deg, #ffffff 0%, #A594FD 25%, #632C9B 50%, #A594FD 75%, #ffffff 100%) !important;
    background-size: 200% auto !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: purpleGradientFlow 6s linear infinite !important;
}

/* Right */
.m-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.m-right p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    color: #fff;
}

.m-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 12px;
    border: 1px solid var(--purple-light);
    width: max-content;
    border-radius: 100px;
    color: var(--purple-light);
}

/* ======================
   TABLET (1024px ↓)
====================== */
@media (max-width: 1024px) {
    .values-intro {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values-title {
        text-align: center;
        line-height: 1.1;
    }

    .monolith-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .m-left,
    .m-right {
        width: 100%;
    }

    .m-title {
        font-size: clamp(2rem, 6vw, 48px);
    }

    .monolith-item {
        padding: 50px 30px;
    }
}

/* ======================
   MOBILE (768px ↓)
====================== */
@media (max-width: 768px) {

    .values-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -1px;
    }

    .values-intro {
        margin-bottom: 40px;
        text-align: center;
    }

    .monolith-list {
        gap: 16px;
    }

    .monolith-item {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .monolith-content {
        display: grid;
        grid-template-columns: auto 1fr;
        row-gap: 12px;
        column-gap: 12px;
        align-items: center;
        text-align: left;
    }

    .m-left,
    .m-right {
        display: contents;
    }

    .m-number {
        grid-row: 1;
        grid-column: 1;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        margin: 0;
        opacity: 0.8;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .m-tag {
        grid-row: 1;
        grid-column: 2;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 4px 10px;
        margin: 0;
        border-radius: 100px;
        width: fit-content;
        display: inline-flex;
        align-items: center;
        justify-self: start;
    }

    .m-title {
        grid-row: 2;
        grid-column: 1 / -1;
        font-size: clamp(1.4rem, 5.5vw, 1.85rem);
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: -0.5px;
        text-align: left;
        margin: 4px 0 0 0;
    }

    .m-right p {
        grid-row: 3;
        grid-column: 1 / -1;
        font-size: 14px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.75);
        text-align: left;
        margin: 0;
    }
}

/* ======================
   SMALL MOBILE (480px ↓)
====================== */
@media (max-width: 480px) {
    .monolith-item {
        padding: 20px 16px;
    }

    .m-title {
        font-size: 1.35rem;
    }

    .m-right p {
        font-size: 13.5px;
    }
}

/* ======================
   PHILOSOPHY SECTION
====================== */

.philosophy-section {
    padding: 0;
    background: #05010a;
    position: relative;
    z-index: 5;
}

/* Layout */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
}

/* Titles */
.philo-main-title {
    margin-bottom: clamp(40px, 5vw, 60px);
    color: #fff;
}

.philo-main-title i {
    font-family: serif;
    font-style: italic;
    font-weight: 400;
    opacity: 0.6;
}

/* List */
.philo-list {
    display: flex;
    flex-direction: column;
}

.philo-item {
    padding: clamp(25px, 4vw, 40px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: padding-left 0.4s ease, border-color 0.4s ease;
    min-height: 100px;
}

.do-side .philo-item {
    border-bottom: 1px solid rgba(165, 148, 253, 0.5);
}


.philo-item:empty {
    display: none;
}

.philo-item h3 {
    margin-bottom: 12px;
    color: #fff;
}

.philo-item h3 span {
    font-weight: 400;
    opacity: 0.5;
}

.philo-item p {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #777;
    line-height: 1.6;
    max-width: 480px;
}

/* Accent */
.purple-accent {
    color: var(--purple-light) !important;
}

/* ======================
   TABLET (1024px ↓)
====================== */

@media (max-width: 1024px) {

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .philo-main-title {
        text-align: center;
    }

    .philo-list {
        max-width: 700px;
        margin: 0 auto;
    }

    .philo-item p {
        max-width: 100%;
    }

    /* Remove vertical offset on stacked layout */
    .do-side .philo-list {
        transform: none;
    }
}

/* ======================
   MOBILE (768px ↓)
====================== */

@media (max-width: 768px) {


    .philo-main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        text-align: center;
    }

    .philo-list {
        max-width: 100%;
    }

    .philo-item {
        padding: 25px 0;
    }

    .philo-item h3 {
        font-size: 18px;
    }

    .philo-item p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ======================
   SMALL MOBILE (480px ↓)
====================== */

@media (max-width: 480px) {


    .philo-main-title {
        font-size: 1.6rem;
    }

    .philo-item h3 {
        font-size: 16px;
    }

    .philo-item p {
        font-size: 13px;
    }
}

/* ======================
   GLOBAL PRESENCE SECTION
====================== */

.global-presence-section {
    padding: 0;
    background: #05010a;
    position: relative;
    overflow: hidden;
}

.global-presence-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.global-title {
    margin: 25px 0;
    color: #fff;
}

.global-text {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin-bottom: 40px;
}

.global-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(165, 148, 253, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.location-card:hover,
.location-card.active {
    border-color: rgba(165, 148, 253, 0.45);
    background: rgba(165, 148, 253, 0.06);
    box-shadow: 0 8px 24px rgba(165, 148, 253, 0.12);
    transform: translateY(-3px);
}

.location-flag {
    font-size: 28px;
}

.location-flag {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.location-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

/* RIGHT VISUAL */
.global-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #05010a;

    width: 100%;
    max-width: 100%;
    margin-left: auto;
}

/* ============================================================
   GLOBAL REPRESENTATIVE IMAGE
============================================================ */

.global-image-stack {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;
}


/* Both images occupy exactly the same space */

.global-person-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    display: block;

    will-change: opacity, transform;
}


/* Current image */

.global-person-image.image-current {
    z-index: 1;

    opacity: 1;
}


/* Incoming image */

.global-person-image.image-next {
    z-index: 2;

    opacity: 0;
}


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

.global-person-info {
    position: absolute;

    bottom: 30px;
    left: 30px;

    z-index: 10;

    pointer-events: none;
}


/* Smooth content transition */

.global-person-name,
.global-person-role {
    will-change: opacity, transform;
}


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

@media (max-width: 1024px) {
    .global-image-stack {
        height: clamp(440px, 55vw, 500px);
    }
}

@media (max-width: 768px) {
    .global-image-stack {
        height: clamp(380px, 75vw, 440px);
    }
}

@media (max-width: 480px) {
    .global-image-stack {
        height: clamp(340px, 85vw, 380px);
    }
}

.global-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 18%,
            rgba(0, 0, 0, 0.25) 38%,
            rgba(0, 0, 0, 0) 58%);
}

.global-person-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    pointer-events: none;
}

.global-person-info h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.global-person-info p {
    color: var(--color-primary-soft);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}


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

@media (max-width: 1024px) {

    .global-presence-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 50px;
        align-items: center;
    }

    .global-presence-content .heading-tag {
        justify-content: flex-start;
        text-align: left;
    }

    .global-title {
        font-size: clamp(2.4rem, 5vw, 3.4rem);
    }

    .global-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .location-card {
        padding: 18px;
    }

    .global-locations {
        width: 100%;
        max-width: 520px;
        margin: 0;
    }

    .global-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

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

@media (max-width: 768px) {

    .global-presence-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .global-presence-content {
        text-align: center;
    }

    .global-presence-content .heading-tag {
        justify-content: center;
    }

    .global-locations {
        margin: 0 auto;
    }

    .global-text {
        margin-left: auto;
        margin-right: auto;
    }

    .global-locations {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .global-card {
        margin: 0 auto;
        width: 100%;
        max-width: 520px;
    }

    .global-person-info h3 {
        font-size: 20px;
    }
}

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

@media (max-width: 768px) {


    .global-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .location-card {
        padding: 18px;
        text-align: left;
    }
}

@media (max-width: 480px) {


    .global-title {
        font-size: 2rem;
    }

    .location-card {
        padding: 16px;
        gap: 14px;
    }

    .location-card h3 {
        font-size: 16px;
    }

    .location-card p {
        font-size: 13px;
    }

    .global-locations {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .global-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ==========================================
   ABOUT TESTIMONIALS SLIDER SECTION
========================================== */

.about-testimonials-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: nowrap;
    /* Controls stay on the right even on tablet/mobile */
}

.testimonials-header-text {
    flex: 1;
    min-width: 0;
}

.testimonials-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-top: 8px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
    /* Always flush right */
}

.testimonial-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(165, 148, 253, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: rgba(165, 148, 253, 0.18);
    border-color: var(--purple-light);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 148, 253, 0.3);
}

.testimonial-nav-btn:active {
    transform: translateY(-1px) scale(0.96);
}

.testimonial-nav-btn:focus-visible {
    outline: 2px solid var(--purple-light);
    outline-offset: 3px;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    padding: 12px 6px 18px;
    margin: 0;
    touch-action: pan-y;
    user-select: none;
    box-sizing: border-box;
}

.testimonials-track {
    display: flex;
    align-items: flex-start;
    width: 100%;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-card-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    position: relative;
    padding: 6px 8px 14px;
    box-sizing: border-box;
    opacity: 0.4;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card-inner {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(20, 11, 36, 0.95) 0%, rgba(10, 4, 20, 0.95) 100%);
    border: 1px solid rgba(165, 148, 253, 0.22);
    background-clip: padding-box;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 26px;
    padding: 28px 32px 24px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}

.testimonial-card-slide:hover .testimonial-card-inner {
    border-color: rgba(165, 148, 253, 0.35);
    box-shadow: 0 15px 35px rgba(165, 148, 253, 0.12), 0 8px 24px rgba(0, 0, 0, 0.45);
}

.card-glow-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 10% 20%, rgba(165, 148, 253, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    width: 100%;
    flex-shrink: 0;
}

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    line-height: 1;
    vertical-align: middle;
}

.star-rating svg {
    display: block;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.project-tag-badge {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple-light);
    background: rgba(165, 148, 253, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(165, 148, 253, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.card-body-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
}

.quote-mark-icon {
    font-size: 60px;
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(165, 148, 253, 0.2);
    line-height: 0.5;
    height: 20px;
    margin-bottom: 6px;
    user-select: none;
    pointer-events: none;
    flex-shrink: 0;
}

.testimonial-quote-text {
    font-size: clamp(1.1rem, 2.1vw, 1.4rem);
    line-height: 1.6;
    font-weight: 500;
    color: #e2e8f0;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Compact Author Section to Give Quote Maximum Space */
.testimonial-author-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.author-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(165, 148, 253, 0.4);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(165, 148, 253, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(165, 148, 253, 0.25);
    box-sizing: border-box;
    padding: 4px;
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 50%;
}

.author-avatar-initials {
    font-size: 15px;
    font-weight: 800;
    color: var(--purple-light);
    letter-spacing: 1px;
}

.author-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
}

.author-company {
    color: var(--purple-light);
    font-weight: 600;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    outline: none;
}

.pagination-dot:hover {
    background: rgba(165, 148, 253, 0.6);
}

.pagination-dot.active {
    width: 36px;
    background: var(--purple-light);
    box-shadow: 0 0 15px rgba(165, 148, 253, 0.6);
}

.pagination-dot:focus-visible {
    outline: 2px solid var(--purple-light);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .testimonials-header-text {
        text-align: left;
    }

    .testimonials-header-text .heading-tag,
    .about-testimonials-section .heading-tag {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        transition: height 0.4s ease-out;
    }

    .testimonials-track {
        align-items: flex-start;
    }

    .testimonial-card-slide {
        height: auto;
    }

    .testimonials-header {
        flex-direction: row;
        /* Keep buttons on the right even on mobile */
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
        margin-bottom: 24px;
    }

    .testimonials-controls {
        margin-left: auto;
    }

    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
    }

    .testimonial-card-inner {
        height: auto;
        min-height: auto;
        padding: 20px 18px 16px;
        border-radius: 20px;
        gap: 16px;
    }

    .author-avatar-wrapper {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-role {
        font-size: 12px;
    }
}