/* ===========================
       CSS VARIABLES & RESET
    =========================== */
:root {
    --yellow: #8b0000;
    --dark: #1a1a1a;
    --darker: #111111;
    --black: #0a0a0a;
    --dark2: #1a1a1a;
    --crimson: #8b0000;
    --crimson2: #a81010;
    --crimson3: #c41c1c;
    --blood: #6b0000;
    --silver: #c8c8c8;
    --silver2: #e8e8e8;
    --gold: #c8a84b;
    --gold2: #e8c878;
    --light-bg: #f5f0f0;
    --white: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 110%;
    background: #0a0a0a;
    scroll-behavior: smooth;
}

/* เพิ่มขนาดสำหรับ px-based text ทั่วทั้งเว็บ */
.topbar {
    font-size: 15px;
}

.nav-link-item {
    font-size: 16px;
}

.btn-solution {
    font-size: 15px;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
    color: var(--dark);
    position: relative;
    font-size: 16px;
    /* base size — html 110% จะ scale rem ขึ้นอีก */
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    display: block;
}

/* ===========================
       TOP BAR
    =========================== */
.topbar {
    background: var(--darker);
    color: #ccc;
    font-size: 14px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.35s ease;
}

/* topbar ถูก hidden แล้ว — navbar ชิดบนสุดเลย */
@media (min-width: 1200px) {
    .navbar-wrapper {
        top: 0 !important;
    }
}

.topbar a {
    color: #ccc;
}

.topbar a:hover {
    color: var(--yellow);
}

.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #444;
    border-radius: 50%;
    font-size: 12px;
    transition: all .2s;
}

.topbar .social a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}

.topbar-phone {
    color: #fff;
    font-weight: 600;
}

/* ===========================
       NAVBAR
    =========================== */
.navbar-wrapper {
    background: var(--darker);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    overflow: visible;
    transition: top 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1),
        padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* ชดเชย fixed navbar + topbar */
body {
    padding-top: 72px;
    /* navbar height เท่านั้น — logo ห้อยลงคลุม content */
}

@media (min-width: 1200px) {
    body {
        padding-top: 72px;
    }
}

.navbar-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
}

.brand-block {
    background: #fff0;
    padding: 5px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-block .logo-icon {
    width: 38px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-block span {
    font-weight: 800;
    font-size: 23px;
    letter-spacing: 1px;
    color: #000;
}

.nav-link-item {
    font-weight: 600;
    font-size: 15px;
    color: #ddd;
    padding: 0 14px;
    display: block;
    transition: color .2s;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: var(--yellow);
}

.btn-solution {
    background: transparent;
    border: 2px solid #aaa;
    color: #ddd;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    cursor: pointer;
    transition: all .2s;
}

.btn-solution:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 19px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color .2s;
}

.nav-icon-btn:hover {
    color: var(--yellow);
}

/* Hamburger */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: none;
}

.hamburger .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all .3s;
}

/* Drawer overlay */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 199;
}

.drawer-overlay.active {
    display: block;
}

/* Main nav desktop */
#mainNav {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

#mainNav > ul {
    display: flex;
    align-items: center;
}

/* Force all dropdown submenus — overridden in media queries */
ul.nav-dropdown-menu {
    position: absolute !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#mainNav .drawer-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-right: 12px;
}

.drawer-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
}

/* Mobile drawer */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    /* heroCarousel styles moved below */
    .vsw-next {
        right: 22px !important;
    }

    .vsw-prev {
        left: 22px !important;
    }

    #mainNav {
        position: fixed;
        top: 0;
        right: -310px;
        width: min(290px, 85vw);
        height: 100dvh;
        background: #181818;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 30px;
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 2000;
        box-shadow: -6px 0 40px rgba(0, 0, 0, .7);
        overflow-y: auto;
        overflow-x: hidden;
    }

    #mainNav.open {
        right: 0;
    }

    #mainNav > ul {
        flex-direction: column;
        width: 100%;
    }

    #mainNav > ul > li {
        width: 100%;
    }

    .nav-link-item {
        padding: 13px 28px;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        color: #eee;
    }

    .nav-link-item:hover {
        padding-left: 36px;
    }

    #mainNav .drawer-actions {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding: 20px 28px 0;
        gap: 14px;
    }

    .drawer-close {
        display: block;
    }
}


/* ══════════════════════════
       COLLAGE — percentage-based
       so it scales on every screen
    ══════════════════════════ */
.collage-wrap {
    position: relative;
    /* height driven by padding-bottom trick so it scales */
    width: 100%;
    padding-bottom: 110%;
    /* aspect ratio for desktop */
    max-height: 620px;
}

/* clamp height on large screens */
@media (min-width: 992px) {
    .collage-wrap {
        padding-bottom: 0;
        height: 620px;
    }
}

.collage-wrap img,
.call-badge,
.bracket-outer {
    position: absolute;
}

.collage-wrap img {
    object-fit: cover;
    display: block;
}

/* — Team photo: top-left — */
.img-team {
    top: 8%;
    left: 8%;
    width: 52%;
    height: 44%;
    z-index: 2;
}

/* — Call badge: overlaps right edge of team photo — */
.call-badge {
    top: 17%;
    left: 43%;
    z-index: 5;
    background: var(--dark);
    border-radius: 5px;
    padding: 4% 5%;
    display: flex;
    align-items: center;
    gap: 5%;
    width: 52%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.cb-icon {
    width: 18%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(.8rem, 2vw, 1.3rem);
    flex-shrink: 0;
}

.cb-label {
    font-size: clamp(.6rem, 1.3vw, .78rem);
    color: #aaa;
    margin-bottom: 2px;
}

.cb-phone {
    font-size: clamp(.85rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: var(--yellow);
    white-space: nowrap;
}

/* — Developer photo: middle-right — */
.img-dev {
    top: 32%;
    left: 47%;
    width: 50%;
    height: 50%;
    z-index: 3;
}

/* — Orange bracket corners — */
.bracket-outer {
    bottom: 3%;
    left: 8%;
    width: 33%;
    height: 36%;
    z-index: 1;
}

.bracket-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 38%;
    border-top: 6px solid var(--yellow);
    border-left: 6px solid var(--yellow);
}

.bracket-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 38%;
    height: 38%;
    border-bottom: 6px solid var(--yellow);
    border-right: 6px solid var(--yellow);
}

/* — Desk / wireframe photo: bottom — */
.img-desk {
    bottom: 0;
    left: 18%;
    width: 56%;
    height: 42%;
    z-index: 2;
}

/* Tablet 768–991 */
@media (max-width: 991.98px) {
    .collage-wrap {
        padding-bottom: 72%;
    }

    .content-col {
        padding-left: 0;
        margin-top: 40px;
    }

    .bracket-tl,
    .bracket-br {
        border-width: 5px;
    }
}

/* Mobile ≤ 575 */
@media (max-width: 575.98px) {
    .about-section {
        padding: 40px 0 60px;
    }

    /* ── เหลือรูปเดียว (img-team) บนมือถือ ── */
    .collage-wrap {
        padding-bottom: 70%;
        max-height: none;
    }

    .img-team {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 8px;
    }

    .img-dev,
    .img-desk,
    .bracket-outer {
        display: none !important;
    }

    .call-badge {
        top: auto !important;
        bottom: 12px !important;
        left: 50% !important;
        transform: translateX(-50%);
        width: 88% !important;
        padding: 10px 14px !important;
        gap: 10px !important;
        border-radius: 8px;
    }

    .cb-phone {
        font-size: 1rem;
    }

    /* content column */
    .section-heading {
        font-size: 30px;
    }

    .services-row {
        flex-direction: column;
        gap: 0;
    }

    .svc {
        padding-right: 0;
        padding-bottom: 16px;
    }

    .svc+.svc {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 16px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .award-badge {
        width: 100%;
        min-height: 130px;
        flex-direction: row;
        border-radius: 5px;
    }

    .trophy-icon {
        font-size: 2.2rem;
        flex: 0 0 90px;
    }

    .award-label {
        flex: 1;
        padding: 20px 16px;
        text-align: left;
        font-size: .85rem;
    }
}

/* Very small ≤ 380 */
@media (max-width: 380px) {
    .collage-wrap {
        padding-bottom: 75%;
    }

    .call-badge {
        width: 92% !important;
    }
}

/* ===========================
       HERO
    =========================== */
.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78) 40%, rgba(0, 0, 0, .38));
}

.hero-shape {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: rgba(0, 0, 0, .42);
    clip-path: polygon(0 0, 88% 0, 72% 100%, 0 100%);
}

.radar {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    opacity: .13;
    pointer-events: none;
}

.radar-circle {
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-circle:nth-child(1) {
    width: 100%;
    height: 100%;
}

.radar-circle:nth-child(2) {
    width: 66%;
    height: 66%;
}

.radar-circle:nth-child(3) {
    width: 33%;
    height: 33%;
}

.deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-subtitle {
    color: var(--yellow);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(48px, 7vw, 90px);
    line-height: .95;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-dots {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s;
}

.hero-dot.active {
    background: var(--yellow);
    transform: scale(1.4);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 3;
}

.stat-card {
    background: var(--yellow);
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:last-child {
    background: #e09600;
}

.stat-number {
    font-weight: 900;
    font-size: 39px;
    line-height: 1;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.stat-svg {
    margin-bottom: 4px;
}

/* Buttons */
.btn-yellow {
    background: var(--yellow);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    display: inline-block;
    transition: all .2s;
}

.btn-yellow:hover {
    background: #d49000;
    color: #000;
}

.btn-dark-outline {
    background: rgba(30, 30, 30, .8);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .3);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 32px;
    display: inline-block;
    transition: all .2s;
}

.btn-dark-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-black {
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    display: inline-block;
    transition: all .2s;
}

.btn-black:hover {
    background: var(--yellow);
    color: #000;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero-stats {
        position: relative;
        width: 100%;
    }

    .stat-card {
        flex: 1;
        padding: 20px;
    }
}

/* ===========================
       ABOUT SECTION
    =========================== */
.about-section {
    background: #fff;
    padding: 80px 0;
}

.about-img-frame {
    position: absolute;
    left: 30px;
    bottom: 40px;
    width: 200px;
    height: 200px;
    border: 6px solid var(--yellow);
    z-index: 0;
}

.about-img-top {
    position: relative;
    z-index: 2;
    width: 62%;
    margin-left: 8%;
}

.about-img-top img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-call-box {
    position: absolute;
    bottom: -24px;
    right: -30px;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    z-index: 4;
    min-width: 260px;
}

.about-call-icon {
    width: 52px;
    height: 52px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 23px;
    color: #fff;
}

.about-call-text {
    color: #fff;
    font-size: 14px;
}

.about-call-num {
    color: var(--yellow);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 1px;
}

.about-img-bot {
    position: relative;
    z-index: 3;
    width: 65%;
    margin-left: 32%;
    margin-top: 50px;
}

.about-img-bot img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-label-line {
    width: 36px;
    height: 2px;
    background: var(--yellow);
}

.section-label span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}

.about-h2 {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #111;
}

.about-p {
    color: #555;
    font-size: 16.5px;
    line-height: 2;
    margin-bottom: 10px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
    color: #fff;
}

.feature-title {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
}

.checklist li i {
    color: var(--yellow);
    font-size: 18px;
    flex-shrink: 0;
}

.trophy-card {
    background: var(--yellow);
    width: 140px;
    flex-shrink: 0;
}

.trophy-icon {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 53px;
    color: #fff;
}

.trophy-label {
    background: #2c2c2c;
    padding: 14px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    letter-spacing: .5px;
    line-height: 1.3;
}

/* ===========================
       PROJECTS SECTION
    =========================== */
.projects-section {
    background: #f4f4f4;
    padding: 80px 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-sublabel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-sublabel .line {
    width: 36px;
    height: 2px;
    background: var(--yellow);
}

.section-sublabel span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.section-h2 {
    font-weight: 800;
    font-size: 30px;
    color: #111;
    line-height: 1.2;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .35s;
    pointer-events: none;
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, .35);
}

.project-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    transform: translateY(100%);
    transition: all .35s ease;
}

.project-card:hover .project-label {
    background: var(--yellow);
    transform: translateY(0);
}

.project-label.active {
    background: var(--yellow);
    transform: translateY(0);
}

.project-label-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
}

.project-label-sub {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

.project-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 300;
    color: #111;
    opacity: 0;
    transition: opacity .3s;
}

.project-card:hover .project-plus {
    opacity: 1;
}

.project-card .project-plus.always {
    opacity: 1;
}

/* ===========================
       WHY GGN (STRENGTH) SECTION
    =========================== */
.strength-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.strength-watermark {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-weight: 900;
    font-size: clamp(80px, 14vw, 180px);
    color: rgba(255, 255, 255, .04);
    letter-spacing: 4px;
    user-select: none;
    line-height: 1;
    pointer-events: none;
}

.strength-h2 {
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
}

.strength-p {
    color: #aaa;
    font-size: 17px;
    max-width: 600px;
    line-height: 1.8;
}

.strength-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(.85);
}

.strength-group-title {
    font-weight: 800;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 10px;
}

.strength-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.strength-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chk {
    background: var(--yellow);
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 12px;
    color: #000;
}

.strength-list li span {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.strength-list li span strong {
    color: #fff;
}

.btn-contact {
    background: var(--yellow);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 30px;
    white-space: nowrap;
    transition: all .2s;
}

.btn-contact:hover {
    background: #d49000;
    color: #ffffff;
}

/* ═══════════════════════════════════
       ISO / HERO SECTION
    ═══════════════════════════════════ */
.iso-section {
    background: var(--black);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Wing-spread decorative lines */
.iso-section .wing-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.4), transparent);
    width: 60%;
    left: 20%;
}

.iso-section .wing-line.top {
    top: 0;
}

.iso-section .wing-line.bot {
    bottom: 0;
}

.iso-section .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: rgba(139, 0, 0, 0.3);
    top: -140px;
    right: -100px;
}

.orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(100, 0, 0, 0.25);
    bottom: -100px;
    left: -80px;
}

.orb-3 {
    width: 220px;
    height: 220px;
    background: rgba(180, 20, 20, 0.15);
    top: 30%;
    left: 35%;
}

/* subtle feather pattern on bg */
.iso-section .feather-bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
        rgba(139, 0, 0, 0.03) 0px,
        rgba(139, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 20px);
    pointer-events: none;
}

.iso-section .container {
    position: relative;
    z-index: 1;
}

/* Logo + title top bar */
.iso-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.iso-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(139, 0, 0, 0.7));
    animation: eagleGlow 3s ease-in-out infinite;
}

@keyframes eagleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 22px rgba(200, 30, 30, 0.9));
    }
}

.iso-brand-text h1 {
    font-weight: 800;
    font-size: 33px;
    color: white;
    letter-spacing: 6px;
    line-height: 1;
}

.iso-brand-text p {
    font-size: 12px;
    color: var(--crimson3);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.iso-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 0, 0, 0.18);
    border: 1px solid rgba(139, 0, 0, 0.45);
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--crimson3);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.iso-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(0.7)
    }
}

.iso-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 24px;
    padding: 40px 50px;
    backdrop-filter: blur(20px);
    display: inline-flex;
    align-items: center;
    gap: 36px;
    max-width: 580px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.iso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.8), transparent);
}

.iso-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.4), transparent);
}

.iso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 0, 0, 0.3);
}

.iso-shield {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--blood) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(139, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    gap: 3px;
}

.iso-shield .iso-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.iso-shield .iso-num {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: 21px;
    color: white;
    line-height: 1;
}

.iso-shield .iso-year {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.iso-info .tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--crimson3);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.iso-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 6px;
}

.iso-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* Stats */
.iso-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.iso-stat .num {
    font-family: 'Prompt', sans-serif;
    font-size: 39px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--crimson3), #e84040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.iso-stat .lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.iso-stat-divider {
    width: 1px;
    background: rgba(139, 0, 0, 0.3);
    height: 50px;
    margin: auto 0;
}

/* ═══════════════════════════════════
       SECTION HEADER
    ═══════════════════════════════════ */
.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--crimson2);
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 16px;
}

.section-head.light .section-eyebrow {
    color: var(--crimson3);
    background: rgba(139, 0, 0, 0.2);
    border-color: rgba(139, 0, 0, 0.4);
}

.section-head h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 800;
    font-size: 37px;
    color: var(--dark);
    line-height: 1.2;
}

.section-head.light h2 {
    color: white;
}

.section-head p {
    color: #7a6060;
    font-size: 17px;
    margin-top: 8px;
}

.section-head.light p {
    color: rgba(255, 255, 255, 0.35);
}

.title-line {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.title-line span {
    height: 3px;
    border-radius: 2px;
}

.title-line .l1 {
    width: 40px;
    background: var(--crimson);
}

.title-line .l2 {
    width: 12px;
    background: var(--gold);
}

.title-line .l3 {
    width: 6px;
    background: var(--silver);
}

/* ═══════════════════════════════════
       CLIENT SECTIONS
    ═══════════════════════════════════ */
.client-section {
    padding: 90px 0;
    position: relative;
}

.client-section.light-bg {
    background: var(--white);
}

.client-section.dark-bg {
    background: var(--black);
    overflow: hidden;
}

/* dark bg texture */
.dark-bg .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.dark-bg .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 0, 0, 0.2);
    top: -150px;
    right: -100px;
}

.bg-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(100, 0, 0, 0.18);
    bottom: -100px;
    left: -80px;
}

/* Marquee → Swiper Client Logos */
.client-swiper-wrap {
    position: relative;
    padding: 12px 0;
}

.clientSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-swiper-wrap .swiper-button-prev,
.client-swiper-wrap .swiper-button-next {
    color: var(--crimson);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .85);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.client-swiper-wrap .swiper-button-prev::after,
.client-swiper-wrap .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.dark-bg .client-swiper-wrap .swiper-button-prev,
.dark-bg .client-swiper-wrap .swiper-button-next {
    background: rgba(40, 10, 10, .7);
    color: #e08080;
}

.client-swiper-wrap .swiper-pagination-bullet-active {
    background: var(--crimson);
}

/* Logo cards */
.logo-card {
    width: 100%;
    border: 2px solid rgba(139, 0, 0, 0.2);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px;
}

.logo-card:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 0, 0, 0.25);
    border-color: var(--crimson);
    z-index: 2;
}

.logo-card .lp {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: white;
    text-align: center;
    line-height: 1.3;
    padding: 10px;
}

/* dark version */
.dark-bg .logo-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: #fff;
}

.dark-bg .logo-card:hover {
    border-color: rgba(139, 0, 0, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Active pulse — disabled */

.logo-card .active-badge {
    display: none;
}

/* counters */
.client-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
}

.counter-item .big {
    font-family: 'Prompt', sans-serif;
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
}

.light-bg .counter-item .big {
    color: var(--dark);
}

.dark-bg .counter-item .big {
    background: linear-gradient(135deg, var(--crimson3), #e84040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-item .sm {
    font-size: 15px;
    color: #a08080;
    margin-top: 4px;
}

.dark-bg .counter-item .sm {
    color: rgba(255, 255, 255, 0.3);
}

.counter-div {
    width: 1px;
    height: 50px;
}

.light-bg .counter-div {
    background: rgba(139, 0, 0, 0.12);
}

.dark-bg .counter-div {
    background: rgba(139, 0, 0, 0.25);
}

/* ═══════════════════════════════════
       OFFICE SECTION
    ═══════════════════════════════════ */
.office-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.office-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 24px rgba(139, 0, 0, 0.07);
    border: 1px solid rgba(139, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(139, 0, 0, 0.18);
}

.office-map-wrap {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.office-map-wrap svg {
    width: 100%;
}

.map-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.65));
}

.office-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    font-size: 31px;
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.5));
    animation: pinBounce 2.5s ease-in-out infinite;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translate(-50%, -100%)
    }

    50% {
        transform: translate(-50%, -120%)
    }
}

.office-branch-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(139, 0, 0, 0.75);
    border: 1px solid rgba(200, 30, 30, 0.4);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.office-body {
    padding: 20px 22px 24px;
}

.office-body h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.office-meta {
    font-size: 14px;
    color: #a08080;
    margin-bottom: 14px;
}

.office-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--crimson2);
    text-decoration: none;
    padding: 7px 16px;
    border: 1.5px solid rgba(139, 0, 0, 0.3);
    border-radius: 100px;
    transition: all 0.25s;
}

.office-btn:hover {
    background: var(--crimson);
    color: white;
    border-color: var(--crimson);
    gap: 10px;
}

/* ─── Logo gradient colors (all shifted to match GGN crimson palette) ─── */
.c1 {
    background: linear-gradient(135deg, #7b1010, #a81818)
}

.c2 {
    background: linear-gradient(135deg, #4a0808, #8b1414)
}

.c3 {
    background: linear-gradient(135deg, #6b0000, #9b1010)
}

.c4 {
    background: linear-gradient(135deg, #1a1a1a, #333333)
}

.c5 {
    background: linear-gradient(135deg, #5a0a0a, #8b1818)
}

.c6 {
    background: linear-gradient(135deg, #c8a84b, #a07030)
}

.c7 {
    background: linear-gradient(135deg, #8b1c1c, #c42424)
}

.c8 {
    background: linear-gradient(135deg, #3a0808, #6b1010)
}

.c9 {
    background: linear-gradient(135deg, #2a1414, #4a2020)
}

.c10 {
    background: linear-gradient(135deg, #8b0000, #b81010)
}

.c11 {
    background: linear-gradient(135deg, #5a1010, #8b1818)
}

.c12 {
    background: linear-gradient(135deg, #6b1818, #9b2020)
}

.c13 {
    background: linear-gradient(135deg, #c8a84b, #e8c060)
}

.c14 {
    background: linear-gradient(135deg, #4a0a0a, #7b1212)
}

.c15 {
    background: linear-gradient(135deg, #555555, #888888)
}

.c16 {
    background: linear-gradient(135deg, #8b1010, #c41c1c)
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .iso-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .iso-info {
        text-align: center;
    }

    .iso-stats {
        gap: 24px;
    }

    .iso-stat .num {
        font-size: 29px;
    }

    .section-head h2 {
        font-size: 27px;
    }

    .iso-brand-text h1 {
        font-size: 25px;
    }
}

/* ===========================
       VIDEO SWIPER SECTION
    =========================== */
.video-section {
    background: #f2f2f2;
    padding: 80px 0 90px;
}

.vcard {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .09);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vthumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.vthumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s, filter .3s;
    filter: brightness(.78);
}

.vthumb:hover img {
    transform: scale(1.05);
    filter: brightness(.55);
}

.vplay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 168, 0, .55);
    transition: transform .25s;
}

.vthumb:hover .vplay {
    transform: translate(-50%, -50%) scale(1.12);
}

.vplay i {
    color: #fff;
    font-size: 21px;
    margin-left: 4px;
}

.vdur {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
}

.vcontent {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vtags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vtag {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .5px;
}

.vtag.yellow {
    background: var(--yellow);
    color: #ffffff;
}

.vtag.dark {
    background: #222;
    color: #fff;
}

.vtag-brand {
    color: #aaa;
    font-size: 13px;
}

.vtitle {
    font-family: 'Noto Sans Thai', 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.5;
}

.vdesc {
    color: #666;
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0;
    font-family: 'Noto Sans Thai', sans-serif;
    flex: 1;
}

.vmeta {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 16px;
}

.vmeta span {
    color: #aaa;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.swiper-rel {
    position: relative;
}

.videoSwiper {
    padding-bottom: 56px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}

.vsw-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    transition: all .2s;
}

.vsw-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}

.vsw-prev {
    left: -22px;
}

.vsw-next {
    right: -22px;
}

/* Video Modal */
#videoModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#videoModal.active {
    display: flex;
}

.vmodal-inner {
    position: relative;
    width: 92%;
    max-width: 900px;
}

.vmodal-close {
    position: absolute;
    top: -46px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 31px;
    cursor: pointer;
}

#videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

#videoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vmodal-note {
    color: #888;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Noto Sans Thai', sans-serif;
}

/* ===========================
       FOOTER
    =========================== */
/* ---- Logo area ---- */
.footer-logo-area {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
}

.logo-box {
    border: 2px solid var(--ggn-border);
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-box svg,
.logo-box img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.anniversary-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.anniversary-badge .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ggn-gold);
    line-height: 1;
}

.anniversary-badge .anniversary-text {
    font-size: 0.5rem;
    color: var(--ggn-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.anniversary-badge .brand-text {
    font-size: 0.55rem;
    color: var(--ggn-gold);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---- Company info ---- */
.company-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ggn-dark);
    line-height: 1.35;
    margin-bottom: 2px;
}

.branch-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ggn-muted);
    margin-bottom: 4px;
}

.address {
    font-size: 0.75rem;
    color: var(--ggn-muted);
    line-height: 1.5;
}

/* ---- Section title ---- */
.section-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ggn-dark);
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--ggn-gold);
    display: inline-block;
}

/* ---- Hours ---- */
.hours-text {
    font-size: 0.8rem;
    color: var(--ggn-muted);
    line-height: 1.8;
}

/* ---- Social ---- */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icon:hover,
.social-icon:active {
    transform: translateY(-2px);
    opacity: 0.85;
    color: #fff;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.tiktok {
    background: #010101;
}

.social-icon.line {
    background: #06c755;
}

/* ---- Contact ---- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--ggn-muted);
    margin-bottom: 8px;
}

.contact-item i {
    color: var(--ggn-gold);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--ggn-muted);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--ggn-gold);
}

.contact-item .label {
    font-size: 0.68rem;
    color: #999;
}

/* ---- Mobile collapsible sections ---- */
.mobile-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    border-top: 1px solid var(--ggn-border);
    padding: 12px 0;
    text-align: left;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ggn-dark);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle i {
    transition: transform 0.25s;
    color: var(--ggn-gold);
}

.mobile-toggle.open i.bi-chevron-down {
    transform: rotate(180deg);
}

.collapsible-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.collapsible-body.open {
    max-height: 400px;
}

/* ---- Desktop: always show sections ---- */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none !important;
    }

    .collapsible-body {
        max-height: none !important;
        overflow: visible !important;
    }

    .section-title {
        display: inline-block !important;
    }
}

/* ---- Mobile ---- */
@media (max-width: 767.98px) {
    footer {
        padding: 20px 0 16px;
    }

    .footer-logo-area {
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .logo-box {
        width: 56px;
        height: 56px;
    }

    .logo-box svg,
    .logo-box img {
        width: 48px;
        height: 48px;
    }

    .anniversary-badge .number {
        font-size: 1.6rem;
    }

    .company-name {
        font-size: 0.82rem;
    }

    /* hide desktop section-title, show toggle button instead */
    .desktop-section-title {
        display: none;
    }

    .mobile-toggle {
        display: flex !important;
    }

    /* contact: make phone numbers tappable */
    .contact-item a[href^="tel"] {
        font-weight: 600;
        color: var(--ggn-dark);
    }

    .social-icons {
        margin-top: 10px;
    }
}

footer {
    background: linear-gradient(135deg, #1e1d1b 0%, #111111 100%);
    border-top: 3px solid var(--ggn-gold);
    color: #fff;
    padding: 28px 0 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

</style><style>

/* ══════════════════════════════
   MOBILE GLOBAL FIX
══════════════════════════════ */
@media (max-width: 991px) {

    /* กัน content ล้นจอ */
    * {
        box-sizing: border-box;
    }

    section,
    .container,
    .row,
    [class*="col-"] {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Navbar auto-hide เปิดใช้งานบน mobile ด้วย */

    /* Particles ลดความหนาแน่น */
    #particle-canvas {
        opacity: 0.2;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 72px;
    }

    /* navbar ชิดบนสุดบน mobile (ไม่มี topbar) */
    .navbar-wrapper {
        top: 0 !important;
    }

    /* ── Hero ── */
    .hero {
        min-height: 55vh;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 56px);
    }

    .hero-stats {
        display: none;
    }

    /* ── About section ── */
    .about-section .col-lg-6 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .content-col {
        margin-top: 24px;
    }

    .section-heading {
        font-size: 30px !important;
    }

    /* ── Typography ── */
    h2 {
        font-size: 30px !important;
        word-break: break-word;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* ── Topbar ── */
    .topbar {
        display: none;
    }

    /* ── Sections padding ── */
    section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    /* ── ISO section ── */
    .iso-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .iso-shield {
        margin: 0 auto 16px;
    }

    .iso-info {
        text-align: center !important;
    }

    /* ── Office cards ── */
    .office-card {
        margin-bottom: 16px;
    }

    /* ── Video cards ── */
    .vcard {
        flex-direction: column;
    }

    .vthumb {
        width: 100% !important;
        min-height: 180px;
    }

    /* ── Strength section ── */
    .strength-section .row>[class*="col-"] {
        margin-bottom: 20px;
    }

    /* ── Footer ── */
    footer .col-12 {
        margin-bottom: 20px;
    }

    /* ── Cursor ปิดบน touch ── */
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }

    /* ── Line draw ซ่อนบน mobile ── */
    #line-draw-container {
        display: none;
    }

    /* ── Back to top ── */
    #back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* ── Scroll progress ── */
    #scroll-progress {
        height: 2px;
    }
}

</style><style>

/* ══ FONT: Prompt ทั้งเว็บ ══ */
*,
*::before,
*::after {
    font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-h2,
.strength-h2,
.about-h2,
.brand-block span {
    font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
    word-break: break-word;
}

/* heading ภาษาไทยไม่ใช้ Barlow Condensed */
@media (max-width: 767px) {

    h1,
    h2,
    h3 {
        font-family: 'Prompt', 'Noto Sans Thai', sans-serif !important;
        letter-spacing: 0 !important;
    }
}




/* === HERO SECTION === */
.why-ggn-section {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 40%, #141010 100%);
    overflow: hidden;
}

.why-ggn-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-ggn-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 168, 75, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* === DECORATIVE GRID PATTERN === */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(139, 0, 0, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

/* === SECTION HEADING === */
.section-heading {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson3) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.35);
    animation: fadeSlideDown 0.8s ease-out both;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--silver2);
    line-height: 1.3;
    animation: fadeSlideDown 0.8s ease-out 0.15s both;
}

.section-heading h2 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--silver);
    font-weight: 300;
    margin-top: 12px;
    animation: fadeSlideDown 0.8s ease-out 0.3s both;
}

/* === FEATURE CARDS === */
.features-grid {
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 32px 16px;
    position: relative;
    animation: fadeSlideUp 0.7s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Icon Circle */
.icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a1010 0%, #3d1515 50%, var(--crimson) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow:
        0 8px 32px rgba(139, 0, 0, 0.3),
        0 2px 8px rgba(139, 0, 0, 0.2),
        inset 0 -4px 12px rgba(100, 0, 0, 0.3),
        inset 0 4px 12px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-circle i {
    font-size: 2.4rem;
    color: var(--gold);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Pulse ring */
.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(139, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Hover Effects */
.feature-card:hover .icon-circle {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 16px 48px rgba(139, 0, 0, 0.4),
        0 4px 16px rgba(139, 0, 0, 0.25),
        inset 0 -4px 12px rgba(100, 0, 0, 0.3),
        inset 0 4px 12px rgba(255, 255, 255, 0.08);
}

.feature-card:hover .icon-circle i {
    transform: scale(1.15);
    color: #fff;
}

.feature-card:hover .icon-ring {
    width: 150px;
    height: 150px;
    border-color: rgba(139, 0, 0, 0.35);
    animation: pulseRing 1.5s ease-out infinite;
}

/* Number badge */
.icon-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(200, 168, 75, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.feature-card:hover .icon-number {
    opacity: 1;
    transform: scale(1);
}

/* Card Text */
.feature-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--silver2);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--silver);
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-title {
    color: var(--gold);
}

.feature-card:hover .feature-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Connector Line between cards (desktop) */
.connector-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    display: none;
}

/* === BOTTOM TRUST BAR === */
.trust-bar {
    margin-top: 48px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 0.8s ease-out 0.8s both;
}

.trust-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 15, 15, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 0, 0, 0.25);
    padding: 14px 36px;
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.trust-bar-inner i {
    color: var(--gold);
    font-size: 1.2rem;
}

.trust-bar-inner span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--silver);
}

.trust-bar-inner strong {
    color: var(--gold);
    font-weight: 700;
}

/* === ANIMATIONS === */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Floating subtle animation for icons at rest */
.feature-card:nth-child(odd) .icon-circle {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(even) .icon-circle {
    animation: float 6s ease-in-out 1.5s infinite;
}

.feature-card:hover .icon-circle {
    animation: none;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .why-ggn-section {
        padding: 60px 0 80px;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .icon-ring {
        width: 100px;
        height: 100px;
    }

    .icon-circle i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .features-grid .col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feature-desc {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 30px;
    }

    .trust-bar-inner {
        padding: 12px 20px;
        gap: 8px;
    }
}

</style>< !-- ══════════════════════════════════════════ BRIGHT / WHITE THEME OVERRIDES ปรับสีเว็บให้สว่าง เน้นขาว ลดดำ ══════════════════════════════════════════ --><style>:root {
    --dark: #333333;
    --darker: #ffffff;
    --black: #f8f8f8;
    --dark2: #333333;
    --light-bg: #f9f6f6;
}

/* ── TOPBAR: hidden to match new design ── */
.topbar {
    display: none !important;
}

/* Fix body padding for navbar + hanging logo */
body {
    padding-top: 72px !important;
}

/* ── NAVBAR V2: dark transparent like reference ── */
.navbar-v2 {
    background: rgba(15, 15, 15, 0.92) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible !important;
}

.navbar-v2 .navbar-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 0;
    overflow: visible !important;
}

/* Logo circle — ห้อยลงมาจาก navbar */
.nav-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    background: radial-gradient(circle at 45% 40%, #FFFFFF 0%, #E8E8EC 60%, #D0D0D8 100%);
    height: 156px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 1px;
    margin-bottom: -36px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.35s ease;
    margin-right: 8px;
}

.nav-logo-circle:hover {
    border-color: var(--crimson);
    transform: scale(1.05);
}

.nav-logo-circle img {
    width: 122px;
    height: 122px;
    object-fit: contain;
}

/* ให้ navbar wrapper สูงพอรองรับโลโก้ห้อย */
.navbar-v2 {
    overflow: visible !important;
}

.navbar-v2 .navbar-inner {
    overflow: visible !important;
}

/* Center menu */
.nav-center-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.navbar-v2 .nav-link-item {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0 18px !important;
    transition: color 0.2s;
    position: relative;
}

.navbar-v2 .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--crimson);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-v2 .nav-link-item:hover {
    color: #fff !important;
}

.navbar-v2 .nav-link-item:hover::after {
    transform: scaleX(1);
}

/* Right actions */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-request-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--crimson);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.4);
}

.btn-request-quote:hover {
    background: #a81010;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 0, 0, 0.5);
    color: #fff;
}

.nav-globe-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-globe-btn:hover {
    border-color: var(--crimson);
    color: #fff;
    background: rgba(139, 0, 0, 0.15);
}

/* Hamburger on dark nav */
.navbar-v2 .hamburger .bar {
    background: #fff;
}

/* ── Desktop #mainNav inside v2 ── */
@media (min-width: 992px) {
    .navbar-v2 #mainNav {
        display: flex;
        align-items: center;
        flex-grow: 1;
    }

    .navbar-v2 #mainNav .drawer-actions {
        display: none;
    }

    .navbar-v2 #mainNav .drawer-close {
        display: none;
    }
}

/* ── Mobile drawer for v2 ── */
@media (max-width: 991px) {
    .iso-brand {
        margin-bottom: 0px;
    }

    .navbar-v2 #mainNav {
        position: fixed;
        top: 0;
        right: -310px;
        width: min(290px, 85vw);
        height: 100dvh;
        background: #1a1a1a !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 30px;
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 2000;
        box-shadow: -6px 0 40px rgba(0, 0, 0, 0.7);
        overflow-y: auto;
    }

    .navbar-v2 #mainNav.open {
        right: 0;
    }

    .nav-center-menu {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .navbar-v2 .nav-link-item {
        padding: 14px 28px !important;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
        display: block;
    }

    .navbar-v2 .nav-link-item::after {
        display: none;
    }

    .navbar-v2 #mainNav .drawer-actions {
        display: flex;
        padding: 20px 28px;
    }

    .navbar-v2 .drawer-close {
        display: block;
        position: absolute;
        top: 14px;
        right: 16px;
        background: none;
        border: none;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }

    .nav-logo-circle {
        width: 102px;
        height: 102px;
        margin-top: 4px;
        margin-bottom: -20px;
    }

    .nav-logo-circle img {
        width: 84px;
        height: 84px;
    }
}

.navbar-wrapper.scrolled .nav-logo-circle {
    margin-top: 0;
    margin-bottom: 0;
    width: 66px;
    height: 66px;
    transition: all 0.35s ease;
}
}

/* ══════════════════════════════
       DROPDOWN MENU (navbar-v2)
   ══════════════════════════════ */

/* Dropdown container */
.nav-dropdown {
    position: relative;
}

/* Toggle arrow icon */
.navbar-v2 .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-v2 .dropdown-toggle::before {
    content: '';
    /* ซ่อน pseudo ของ nav-link-item เดิม */
}

.navbar-v2 .dropdown-toggle i.bi-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* ── Desktop Dropdown ── */
@media (min-width: 992px) {

    .nav-dropdown {
        position: relative;
    }

    /* Dropdown panel */
    .nav-dropdown > .nav-dropdown-menu {
        display: block !important;
        position: absolute !important;
        top: calc(100% + 18px) !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(8px) !important;
        min-width: 220px !important;
        background: rgba(20, 20, 20, 0.97) !important;
        backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        padding: 10px 0 !important;
        list-style: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(139, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        pointer-events: none !important;
    }

    /* Top arrow (triangle) */
    .nav-dropdown > .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: rgba(20, 20, 20, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Invisible bridge so hover gap doesn't close menu */
    .nav-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 22px;
        background: transparent;
    }

    /* Show on hover */
    .nav-dropdown:hover > .nav-dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
    }

    /* Dropdown items — block level, stacked vertically */
    .nav-dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .nav-dropdown-menu li a {
        display: block !important;
        padding: 11px 24px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        transition: all 0.2s ease !important;
        white-space: nowrap !important;
        position: relative !important;
    }

    .nav-dropdown-menu li a::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 3px !important;
        background: var(--crimson) !important;
        border-radius: 0 3px 3px 0 !important;
        transform: scaleY(0) !important;
        transition: transform 0.2s ease !important;
    }

    .nav-dropdown-menu li a:hover {
        color: #fff !important;
        background: rgba(139, 0, 0, 0.12) !important;
        padding-left: 28px !important;
    }

    .nav-dropdown-menu li a:hover::before {
        transform: scaleY(1) !important;
    }

    /* Separator between items */
    .nav-dropdown-menu li + li a {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* Crimson accent line bottom */
    .nav-dropdown > .nav-dropdown-menu::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--crimson), transparent);
        border-radius: 2px;
        opacity: 0.4;
    }

    /* Keep parent link highlighted while dropdown open */
    .nav-dropdown:hover > .nav-link-item {
        color: #fff !important;
    }

    .nav-dropdown:hover > .nav-link-item::after {
        transform: scaleX(1);
    }
}

/* ── Mobile Dropdown ── */
@media (max-width: 991px) {

    .nav-dropdown {
        width: 100%;
    }

    .navbar-v2 .nav-dropdown > .nav-link-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Chevron arrow for mobile */
    .navbar-v2 .nav-dropdown > .nav-link-item::before {
        content: '\F282';
        font-family: 'bootstrap-icons';
        font-size: 12px;
        margin-left: auto;
        transition: transform 0.3s ease;
        order: 2;
    }

    .navbar-v2 .nav-dropdown.open > .nav-link-item::before {
        transform: rotate(180deg);
    }

    /* Sub-menu hidden by default on mobile */
    .nav-dropdown > .nav-dropdown-menu {
        display: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: unset !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.25) !important;
        padding: 0 !important;
        list-style: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        pointer-events: auto !important;
        z-index: auto !important;
    }

    .nav-dropdown.open > .nav-dropdown-menu {
        display: block !important;
    }

    .nav-dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .nav-dropdown-menu li a {
        display: block !important;
        padding: 12px 28px 12px 44px !important;
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
        transition: all 0.2s ease !important;
        position: relative !important;
    }

    .nav-dropdown-menu li a::before {
        content: '–' !important;
        position: absolute !important;
        left: 28px !important;
        color: var(--crimson) !important;
        font-weight: 700 !important;
    }

    .nav-dropdown-menu li a:hover {
        color: #fff !important;
        background: rgba(139, 0, 0, 0.1) !important;
        padding-left: 50px !important;
    }
}

/* ── BODY ── */
body {
    color: #333;
    background: transparent;
}

/* ── ABOUT SECTION ── */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 168, 75, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── About Gallery: modern 2-image layout ── */
.about-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 0 20px 20px;
}

.about-img-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(139, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-secondary {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.04);
}

/* Experience badge */
.about-exp-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: #8b0000;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.1;
}

.exp-number {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.exp-number span {
    font-size: 22px;
    font-weight: 700;
}

.exp-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
    opacity: 0.9;
}

/* Call card */
.about-call-card {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #ffffff;
    border: 1px solid rgba(139, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-call-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(139, 0, 0, 0.12);
}

.acc-icon {
    width: 52px;
    height: 52px;
    background: #8b0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #fff;
}

.acc-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
}

.acc-phone {
    font-size: 20px;
    font-weight: 800;
    color: #8b0000;
    letter-spacing: 0.5px;
}

/* About gallery responsive */
@media (max-width: 991.98px) {
    .about-gallery {
        padding: 0;
    }

    .about-exp-badge {
        width: 100px;
        height: 100px;
    }

    .exp-number {
        font-size: 30px;
    }
}

@media (max-width: 575.98px) {
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    .about-img-main {
        grid-column: 1;
        grid-row: auto;
    }

    .about-img-main img {
        min-height: 240px;
    }

    .about-img-secondary {
        grid-column: 1;
        grid-row: auto;
    }

    .about-img-secondary img {
        min-height: 180px;
    }

    .about-call-card {
        grid-column: 1;
        grid-row: auto;
    }

    .about-exp-badge {
        top: auto;
        left: auto;
        right: 16px;
        bottom: auto;
        transform: none;
        position: absolute;
        top: 16px;
        right: 16px;
        left: auto;
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 26px;
    }

    .exp-text {
        font-size: 10px;
    }
}

.call-badge {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cb-label {
    color: #888;
}

.cb-phone {
    color: var(--crimson);
}

.about-call-box {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-call-text {
    color: #555;
}

.about-call-num {
    color: var(--crimson);
}

.feature-icon {
    background: var(--crimson);
    color: #fff;
}

.trophy-label {
    background: #f5f0f0;
    color: #333;
}

/* ── PROJECTS SECTION ── */
.projects-section {
    background: linear-gradient(180deg, #f8f6f6 0%, #f0ecec 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 168, 75, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.15), var(--crimson), rgba(139, 0, 0, 0.15), transparent);
}

/* Horizontal project cards */
.project-card-h {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.project-card-h:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139, 0, 0, 0.15);
}

.project-card-h img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card-h:hover img {
    transform: scale(1.06);
}

.pch-img-wrap {
    position: relative;
    overflow: hidden;
}

.pch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 40%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.project-card-h:hover .pch-overlay {
    background: linear-gradient(0deg, rgba(139, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%);
}

.pch-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(139, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.pch-content {
    position: relative;
    padding: 22px 24px;
    z-index: 2;
    background: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pch-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card-h:hover .pch-content::before {
    transform: scaleX(1);
}

.pch-text {}

.pch-title {
    font-weight: 700;
    font-size: 19px;
    color: #222;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.project-card-h:hover .pch-title {
    color: #8b0000;
}

.pch-sub {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

.pch-plus {
    width: 44px;
    height: 44px;
    background: #f5f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8b0000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-card-h:hover .pch-plus {
    background: #8b0000;
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 575.98px) {
    .project-card-h img {
        height: 180px;
    }

    .pch-title {
        font-size: 17px;
    }

    .pch-content {
        padding: 16px 18px;
    }
}

/* ── STRENGTH SECTION ── */
.strength-section {
    background: linear-gradient(135deg, #faf8f8 0%, #f5f0f0 50%, #f0eaea 100%) !important;
    position: relative;
    overflow: hidden;
}

.strength-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.strength-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.strength-watermark {
    color: rgba(139, 0, 0, 0.05);
}

.strength-h2 {
    color: #222 !important;
}

.strength-p {
    color: #666 !important;
}

.strength-img {
    filter: brightness(1);
}

.strength-group-title {
    color: #222 !important;
}

.strength-list li span {
    color: #555 !important;
}

.strength-list li span strong {
    color: #222 !important;
}

/* ══════════════════════════════════════
   ISO HERO SECTION — REDESIGNED
══════════════════════════════════════ */
.iso-hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a0808 40%, #120606 100%);
    text-align: center;
}

.iso-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.iso-hero-grid {
    display: none;
}

.iso-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.iso-hero-glow.g1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.25) 0%, transparent 70%);
    filter: blur(60px);
}

.iso-hero-glow.g2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(200, 168, 75, 0.12) 0%, transparent 70%);
    filter: blur(50px);
}

/* Badge */
.iso-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.35);
    border-radius: 100px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e08080;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.iso-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e06060;
    animation: pulse 2s infinite;
}

/* Title */
.iso-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.iso-hero-brand {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: 14px;
    color: #fff;
    text-shadow: 0 0 60px rgba(139, 0, 0, 0.4);
    line-height: 1;
}

.iso-hero-sub {
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
}

/* Card */
.iso-hero-card {
    max-width: 900px;
    margin: 0 auto 56px;
    background: linear-gradient(145deg, #1c0a0a 0%, #2a0e0e 50%, #180808 100%);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 28px;
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 0 rgba(139, 0, 0, 0.3),
        0 20px 60px rgba(139, 0, 0, 0.15),
        0 60px 120px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iso-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b0000, #c8a84b, #8b0000, transparent);
    border-radius: 2px;
}

.iso-hero-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.3), transparent);
}

.iso-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 0 rgba(139, 0, 0, 0.4),
        0 30px 80px rgba(139, 0, 0, 0.2),
        0 80px 140px rgba(0, 0, 0, 0.35);
}

.iso-hero-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Shield */
.iso-hero-shield {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.iso-hero-shield img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: linear-gradient(145deg, #8b0000, #5a0000);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 10px 36px rgba(139, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 100, 100, 0.15);
}

.iso-hero-shield-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #c8a84b;
    text-transform: uppercase;
}

/* Info */
.iso-hero-info {
    flex: 1;
    text-align: left;
}

.iso-hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(200, 168, 75, 0.8);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.iso-hero-h3 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.iso-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.iso-hero-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.iso-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
}

.iso-year-badge {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Big number */
.iso-hero-number {
    flex-shrink: 0;
    text-align: center;
    padding-left: 36px;
    border-left: 1px solid rgba(139, 0, 0, 0.3);
}

.iso-num-big {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #8b0000, #c8a84b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.iso-num-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Stats bar */
.iso-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.iso-hero-stat {
    text-align: center;
}

.iso-stat-num {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.iso-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

.iso-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.4), transparent);
}

/* Mobile */
@media (max-width: 767px) {
    .iso-hero-section {
        padding: 70px 0 60px;
    }

    .iso-hero-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .iso-hero-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .iso-hero-info {
        text-align: center;
    }

    .iso-hero-badges {
        justify-content: center;
    }

    .iso-hero-number {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(139, 0, 0, 0.3);
        padding-top: 24px;
    }

    .iso-hero-shield img {
        width: 120px;
        height: 120px;
    }

    .iso-hero-stats {
        gap: 24px;
    }

    .iso-stat-num {
        font-size: 28px;
    }

    .iso-hero-stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* ── SECTION HEADERS (generic) ── */
.section-head h2 {
    color: #222;
}

.section-head p {
    color: #888;
}

.section-head.light h2 {
    color: #222 !important;
}

.section-head.light p {
    color: #888 !important;
}

.section-head.light .section-eyebrow {
    color: var(--crimson2) !important;
    background: rgba(139, 0, 0, 0.06) !important;
    border-color: rgba(139, 0, 0, 0.18) !important;
}

.section-eyebrow {
    color: var(--crimson2);
    background: rgba(139, 0, 0, 0.06);
    border-color: rgba(139, 0, 0, 0.15);
}

/* ── CLIENT SECTION light ── */
.client-section.light-bg {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.client-section.light-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(200, 168, 75, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.client-section.light-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.3), var(--gold), rgba(200, 168, 75, 0.3), transparent);
}

.light-bg .counter-item .big {
    color: #222;
}

.counter-item .sm {
    color: #888;
}

.light-bg .counter-div {
    background: rgba(139, 0, 0, 0.1);
}

/* ── CLIENT SECTION dark -> elegant light ── */
.client-section.dark-bg {
    background: linear-gradient(135deg, #1a0808 0%, #2a0e0e 40%, #1a0a0a 100%) !important;
    position: relative;
    overflow: hidden;
}

.client-section.dark-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(139, 0, 0, 0.08) 1px, transparent 0);
    background-size: 50px 50px;
    pointer-events: none;
}

.dark-bg .section-head.light h2 {
    color: #fff !important;
}

.dark-bg .section-head.light p {
    color: rgba(255, 255, 255, 0.5) !important;
}

.dark-bg .section-head.light .section-eyebrow {
    color: var(--crimson3) !important;
    background: rgba(139, 0, 0, 0.2) !important;
    border-color: rgba(139, 0, 0, 0.4) !important;
}

.dark-bg .bg-grid {
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.05) 1px, transparent 1px) !important;
}

.bg-glow-1 {
    background: rgba(139, 0, 0, 0.2) !important;
}

.bg-glow-2 {
    background: rgba(100, 0, 0, 0.15) !important;
}

.dark-bg .counter-item .big {
    background: linear-gradient(135deg, var(--crimson3), #e84040) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.dark-bg .counter-item .sm {
    color: rgba(255, 255, 255, 0.4) !important;
}

.dark-bg .counter-div {
    background: rgba(139, 0, 0, 0.25) !important;
}

.dark-bg .logo-card {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: #fff !important;
}

.dark-bg .logo-card:hover {
    border-color: rgba(139, 0, 0, 0.4) !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

/* ── OFFICE SECTION ── */
.office-section {
    background: linear-gradient(180deg, #faf7f7 0%, #f5f0f0 50%, #faf7f7 100%);
    position: relative;
    overflow: hidden;
}

.office-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(200, 168, 75, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.office-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.12), var(--crimson), rgba(139, 0, 0, 0.12), transparent);
}

.office-card {
    background: #ffffff;
}

.office-body h5 {
    color: #222;
}

.office-meta {
    color: #888;
}

.map-gradient-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 0.7));
}

/* ── VIDEO SECTION ── */
.video-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f6 50%, #f4f0f0 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
        transparent,
        transparent 60px,
        rgba(139, 0, 0, 0.012) 60px,
        rgba(139, 0, 0, 0.012) 61px);
    pointer-events: none;
}

.video-section::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(139, 0, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.vcard {
    background: #ffffff;
}

/* ── WHY GGN SECTION: dark -> light ── */
.why-ggn-section {
    background: linear-gradient(135deg, #7a0000 0%, #8b0000 30%, #9a0505 60%, #7a0000 100%) !important;
    position: relative;
}

.why-ggn-section::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(200, 168, 75, 0.08) 0%, transparent 50%) !important;
}

.why-ggn-section::after {
    background: none !important;
}

.pattern-overlay {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
    background-size: 40px 40px, 80px 80px, 80px 80px !important;
}

.section-heading h2 {
    color: #fff !important;
}

.section-heading h2 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.feature-title {
    color: #fff !important;
}

.feature-card:hover .feature-title {
    color: var(--gold) !important;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}

.icon-circle {
    background: #ffffff !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle i {
    color: #8b0000 !important;
}

.icon-ring {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.trust-bar-inner {
    background: rgba(107, 0, 0, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

.trust-bar-inner span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.trust-bar-inner strong {
    color: var(--gold) !important;
}

.section-badge {
    background: linear-gradient(135deg, #6b0000 0%, #a01010 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, #1a1818 0%, #0f0e0e 50%, #1a1515 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(139, 0, 0, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── BUTTONS ── */
.btn-black {
    background: var(--crimson);
    color: #fff;
}

.btn-black:hover {
    background: #a81010;
    color: #fff;
}

.btn-yellow {
    background: var(--crimson);
    color: #fff;
}

.btn-yellow:hover {
    background: #a81010;
    color: #fff;
}

.btn-dark-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: #ccc;
}

.btn-dark-outline:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
    background: var(--crimson) !important;
}

/* ── BACK TO TOP ── */
#back-to-top {
    background: var(--crimson) !important;
    color: #fff !important;
}

/* ── PARTICLES: lighter on bright bg ── */
#particle-canvas {
    opacity: 0.15;
}

/* ── CUSTOM CURSOR: darker for visibility on white ── */
#cursor-dot {
    background: var(--crimson) !important;
}

#cursor-ring {
    border-color: var(--crimson) !important;
}






/* ═══ HERO CAROUSEL — IMAGE ONLY ═══ */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 92vh;
    min-height: 520px;
    max-height: 900px;
}

@media (max-width: 767px) {

    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item {
        height: 62vh;
        min-height: 320px;
    }
}

/* Crossfade */
#heroCarousel .carousel-item {
    opacity: 0;
    transition: opacity 1.1s ease !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#heroCarousel .carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Ken Burns wrapper */
.slide-img-wrap {
    position: absolute;
    inset: -6%;
    overflow: hidden;
}

.slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    display: block;
}

@keyframes kb-zoom-in {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.0);
    }
}

@keyframes kb-pan-right {
    from {
        transform: scale(1.1) translateX(-3%);
    }

    to {
        transform: scale(1.05) translateX(3%);
    }
}

@keyframes kb-pan-up {
    from {
        transform: scale(1.12) translateY(3%);
    }

    to {
        transform: scale(1.04) translateY(-2%);
    }
}

.carousel-item.active.kb-1 .slide-img-wrap img {
    animation: kb-zoom-in 7s ease-out forwards;
}

.carousel-item.active.kb-2 .slide-img-wrap img {
    animation: kb-pan-right 7s ease-out forwards;
}

.carousel-item.active.kb-3 .slide-img-wrap img {
    animation: kb-pan-up 7s ease-out forwards;
}

.carousel-item:not(.active) .slide-img-wrap img {
    animation: none;
}

/* Progress strips */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10;
    display: flex;
}

.progress-strip {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden;
}

.progress-strip+.progress-strip {
    border-left: 1px solid rgba(0, 0, 0, .25);
}

.progress-strip-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8b0000, #c8a84b);
}

.progress-strip.ps-active .progress-strip-fill {
    animation: ps-fill var(--dur, 6500ms) linear forwards;
}

@keyframes ps-fill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Dot indicators */
.carousel-dots {
    position: absolute;
    right: 28px;
    bottom: 18px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 767px) {
    .carousel-dots {
        right: 12px;
        bottom: 12px;
        flex-direction: row;
    }
}

.cdot {
    width: 5px;
    height: 28px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
}

.cdot.active {
    background: #8b0000;
    height: 44px;
    box-shadow: 0 0 10px rgba(139, 0, 0, .7);
}

@media (max-width: 767px) {
    .cdot {
        width: 18px;
        height: 4px;
    }

    .cdot.active {
        width: 34px;
        height: 4px;
    }
}

/* Prev / Next arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .3) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15) !important;
    border-radius: 50% !important;
    opacity: 0;
    transition: opacity .3s, background .2s, transform .2s !important;
    margin: 0 18px;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #8b0000 !important;
    border-color: #8b0000 !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* Flash on transition */
@keyframes hero-flash {
    from {
        opacity: .1;
    }

    to {
        opacity: 0;
    }
}

.slide-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
}

.slide-flash.flashing {
    animation: hero-flash .3s ease-out forwards;
}









/* ===== Hero Banner Section ===== */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1579912009006-950a625ed963?q=80&w=1920&auto=format&fit=crop') center center / cover no-repeat;
}

/* Dark overlay */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 10, 0.78);
    z-index: 1;
}

/* Content sits above overlay */
.page-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Large bold heading */
.page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

/* Breadcrumb */
.page-banner .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.page-banner .breadcrumb-item a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
}

.page-banner .breadcrumb-item a:hover {
    color: #ffffff;
}

/* ">" separator */
.page-banner .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    color: #999999;
    padding: 0 0.5rem;
}

/* Active breadcrumb in orange */
.page-banner .breadcrumb-item.active {
    color: #e8491d;
    font-weight: 500;
}





/*
           ABOUT PAGE — ทุก class ใช้ prefix "ab-"
           ใช้ !important เฉพาะจุดที่ต้อง override main_styles.css
        */

/* ================================
           TIMELINE
        ================================ */
.ab-tl-sec {
    padding: 80px 0 !important;
    background: #f7f7f8 !important;
    position: relative !important;
}

.ab-head {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.ab-head .ab-sub {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: #e34e26 !important;
    margin-bottom: 16px !important;
}

.ab-head .ab-sub .ab-ln {
    width: 28px !important;
    height: 2px !important;
    background: #e34e26 !important;
    display: inline-block !important;
}

.ab-head h2 {
    font-family: 'Noto Serif Thai', serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    background: none !important;
}

/* Wrapper */
.ab-tl-wrap {
    position: relative !important;
    padding: 0 50px !important;
    overflow: hidden !important;
}

/* Arrows */
.ab-tl-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.ab-tl-arrow:hover {
    background: #e34e26 !important;
    border-color: #e34e26 !important;
    color: #fff !important;
}

.ab-tl-arrow.ab-left {
    left: 0 !important;
}

.ab-tl-arrow.ab-right {
    right: 0 !important;
}

.ab-tl-arrow.ab-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Scroll area */
.ab-tl-scroll {
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 10px 0 30px !important;
    cursor: grab !important;
    scrollbar-width: none !important;
}

.ab-tl-scroll::-webkit-scrollbar {
    display: none !important;
}

.ab-tl-scroll.ab-grabbing {
    cursor: grabbing !important;
}

/* Track */
.ab-tl-track {
    display: flex !important;
    position: relative !important;
    min-width: max-content !important;
    padding: 0 20px !important;
    height: 520px !important;
}

/* Horizontal line */
.ab-tl-track::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-50%) !important;
    z-index: 0 !important;
}

/* Glow */
.ab-tl-track::after {
    content: '' !important;
    position: absolute !important;
    top: calc(50% - 2px) !important;
    left: -100px !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(90deg, transparent, #ff6b3d, transparent) !important;
    border-radius: 2px !important;
    animation: ab-glow 5s linear infinite !important;
    opacity: 0.5 !important;
    z-index: 0 !important;
}

@keyframes ab-glow {
    0% {
        left: -100px
    }

    100% {
        left: calc(100% + 100px)
    }
}

/* Item */
.ab-tl-item {
    width: 230px !important;
    min-width: 230px !important;
    margin: 0 12px !important;
    height: 520px !important;
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    opacity: 1 !important;
}

.ab-tl-item.ab-down {
    justify-content: flex-start !important;
    padding-top: 253px !important;
}

.ab-tl-item.ab-down .ab-tl-card {
    margin-top: 30px !important;
}

.ab-tl-item.ab-up {
    justify-content: flex-end !important;
    padding-bottom: 253px !important;
}

.ab-tl-item.ab-up .ab-tl-card {
    margin-bottom: 30px !important;
}

/* Dot */
.ab-tl-dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #e34e26 !important;
    position: relative !important;
    z-index: 3 !important;
    box-shadow: 0 0 0 4px #f7f7f8, 0 0 0 6px rgba(227, 78, 38, 0.25) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.ab-tl-item:hover .ab-tl-dot {
    box-shadow: 0 0 0 4px #f7f7f8, 0 0 0 6px rgba(227, 78, 38, 0.5), 0 0 16px rgba(227, 78, 38, 0.2) !important;
    transform: scale(1.25) !important;
}

/* Stem */
.ab-tl-item.ab-down .ab-tl-dot::before {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 2px !important;
    height: 22px !important;
    background: rgba(227, 78, 38, 0.4) !important;
}

.ab-tl-item.ab-up .ab-tl-dot::before {
    content: '' !important;
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 2px !important;
    height: 22px !important;
    background: rgba(227, 78, 38, 0.4) !important;
}

/* Pulse */
.ab-tl-dot::after {
    content: '' !important;
    position: absolute !important;
    top: -7px !important;
    left: -7px !important;
    right: -7px !important;
    bottom: -7px !important;
    border-radius: 50% !important;
    border: 1.5px solid #e34e26 !important;
    opacity: 0 !important;
    animation: ab-pulse 3s ease-out infinite !important;
}

@keyframes ab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.45
    }

    100% {
        transform: scale(2.2);
        opacity: 0
    }
}

/* Card */
.ab-tl-card {
    width: 210px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 20px 18px 16px !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
    opacity: 1 !important;
}

.ab-tl-card::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #e34e26, #ff6b3d) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.ab-tl-item.ab-down .ab-tl-card::after {
    top: 0 !important;
}

.ab-tl-item.ab-up .ab-tl-card::after {
    bottom: 0 !important;
}

.ab-tl-item:hover .ab-tl-card::after {
    opacity: 1 !important;
}

.ab-tl-item:hover .ab-tl-card {
    border-color: rgba(227, 78, 38, 0.3) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1) !important;
}

.ab-tl-card .ab-year {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #e34e26 !important;
    margin-bottom: 10px !important;
    background: none !important;
}

.ab-tl-card .ab-year::before {
    content: '' !important;
    width: 18px !important;
    height: 2.5px !important;
    background: #e34e26 !important;
    border-radius: 2px !important;
    display: inline-block !important;
}

.ab-tl-card .ab-desc {
    font-size: 14px !important;
    font-weight: 300 !important;
    color: #555 !important;
    line-height: 1.75 !important;
}

.ab-scroll-hint {
    text-align: center !important;
    padding: 10px 0 0 !important;
    color: #e34e26 !important;
    font-size: 14px !important;
    opacity: 0.6 !important;
}

/* ================================
           VISION & MISSION
        ================================ */
.ab-vm-sec {
    padding: 80px 0 !important;
    background: #ffffff !important;
}

.ab-vm-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

.ab-vm-head {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.ab-vm-head .ab-vm-sub {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: #e34e26 !important;
    margin-bottom: 16px !important;
}

.ab-vm-head .ab-vm-sub .ab-vm-ln {
    width: 28px !important;
    height: 2px !important;
    background: #e34e26 !important;
    display: inline-block !important;
}

.ab-vm-head h2 {
    font-family: 'Noto Serif Thai', serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    background: none !important;
}

.ab-vm-head .ab-vm-div {
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(135deg, #e34e26, #ff6b3d) !important;
    margin: 0 auto !important;
    border-radius: 3px !important;
}

/* Block */
.ab-vm-block {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-bottom: 40px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    opacity: 1 !important;
}

.ab-vm-block:hover {
    border-color: rgba(227, 78, 38, 0.25) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

.ab-vm-block.ab-reverse {
    direction: rtl !important;
}

.ab-vm-block.ab-reverse>* {
    direction: ltr !important;
}

.ab-vm-block::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(135deg, #e34e26, #ff6b3d) !important;
    z-index: 2 !important;
}

.ab-vm-block.ab-reverse::before {
    left: auto !important;
    right: 0 !important;
}

/* Image */
.ab-vm-img {
    position: relative !important;
    overflow: hidden !important;
    min-height: 320px !important;
}

.ab-vm-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.ab-vm-badge {
    position: absolute !important;
    bottom: 18px !important;
    right: 18px !important;
    z-index: 3 !important;
    width: 46px !important;
    height: 46px !important;
    background: linear-gradient(135deg, #e34e26, #ff6b3d) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Noto Serif Thai', serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.ab-vm-block.ab-reverse .ab-vm-badge {
    right: auto !important;
    left: 18px !important;
}

/* Placeholder */
.ab-vm-ph {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ab-vm-ph.ab-v1 {
    background: linear-gradient(135deg, #f0e8e0, #e8ddd4, #f5f0eb) !important;
}

.ab-vm-ph.ab-v2 {
    background: linear-gradient(135deg, #eae6e2, #e0d8d0, #f0ebe6) !important;
}

.ab-vm-phi {
    text-align: center !important;
    z-index: 1 !important;
}

.ab-vm-phi svg {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 8px !important;
    opacity: 0.25 !important;
    stroke: #e34e26 !important;
}

.ab-vm-phi span {
    display: block !important;
    font-size: 13px !important;
    opacity: 0.4 !important;
    color: #999 !important;
}

/* Text */
.ab-vm-txt {
    padding: 44px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    background: #fff !important;
}

.ab-vm-txt .ab-vm-tag {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #e34e26 !important;
    margin-bottom: 8px !important;
}

.ab-vm-txt h3 {
    font-family: 'Noto Serif Thai', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 16px !important;
    line-height: 1.35 !important;
    background: none !important;
}

.ab-vm-txt h3::after {
    content: '' !important;
    display: block !important;
    width: 36px !important;
    height: 2.5px !important;
    background: linear-gradient(135deg, #e34e26, #ff6b3d) !important;
    border-radius: 2px !important;
    margin-top: 12px !important;
}

.ab-vm-txt p {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #555 !important;
    line-height: 1.9 !important;
}

.ab-vm-txt .ab-vm-deco {
    position: absolute !important;
    top: 28px !important;
    right: 32px !important;
    font-family: 'Noto Serif Thai', serif !important;
    font-size: 4.5rem !important;
    line-height: 1 !important;
    color: rgba(227, 78, 38, 0.06) !important;
    pointer-events: none !important;
    user-select: none !important;
}

/* ================================
           RESPONSIVE
        ================================ */
@media (max-width: 768px) {
    .ab-tl-sec {
        padding: 50px 0 !important;
    }

    .ab-head h2 {
        font-size: 1.6rem !important;
    }

    .ab-tl-wrap {
        padding: 0 30px !important;
    }

    .ab-tl-track {
        height: 450px !important;
    }

    .ab-tl-item {
        height: 450px !important;
        width: 190px !important;
        min-width: 190px !important;
    }

    .ab-tl-item.ab-down {
        padding-top: 218px !important;
    }

    .ab-tl-item.ab-up {
        padding-bottom: 218px !important;
    }

    .ab-tl-card {
        width: 175px !important;
        padding: 16px 14px 13px !important;
    }

    .ab-tl-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .ab-vm-sec {
        padding: 50px 0 !important;
    }

    .ab-vm-inner {
        padding: 0 20px !important;
    }

    .ab-vm-head h2 {
        font-size: 1.6rem !important;
    }

    .ab-vm-block {
        grid-template-columns: 1fr !important;
    }

    .ab-vm-block.ab-reverse {
        direction: ltr !important;
    }

    .ab-vm-block::before {
        width: 100% !important;
        height: 4px !important;
    }

    .ab-vm-img {
        min-height: 200px !important;
    }

    .ab-vm-ph {
        min-height: 200px !important;
    }

    .ab-vm-txt {
        padding: 28px 24px !important;
    }

    .ab-vm-txt h3 {
        font-size: 1.3rem !important;
    }
}