/* =========================================================
   POP SPACE LANDING PAGE
   Dedicated stylesheet for the POP Space WordPress page
   ========================================================= */

/* ======================================
   POP SPACE HERO
====================================== */

.pop-hero {
    position: relative;
    width: 100%;
    min-height: 765px;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: #231f20;
    padding: 0 !important;
}

/* Background video */
.pop-hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

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

    z-index: 0;
}

/* Overlay */
.pop-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(22, 14, 15, 0.92) 0%,
            rgba(22, 14, 15, 0.80) 20%,
            rgba(22, 14, 15, 0.40) 48%,
            rgba(175, 15, 15, 0.20) 72%,
            rgba(210, 20, 20, 0.48) 100%
        );
}

/* Main width container */
.pop-hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;
    height: 100%;

    min-height: 765px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 70px 24px 90px;
}

/* Text block */
.pop-hero-content {
    width: 100%;
    max-width: 610px;
}

/* Small pill */
.pop-hero-tag {
    display: inline-flex;
    align-items: center;

    padding: 8px 16px;

    margin-bottom: 32px;

    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 30px;

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    font-size: 13px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.5px;
}

/* Main heading */
.pop-hero h1 {
    margin: 0 0 24px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: clamp(48px, 4.3vw, 68px) !important;

    font-weight: 900 !important;

    line-height: 1.03 !important;

    letter-spacing: -1.5px;

    max-width: 610px;

    text-transform: none !important;
}

/* Red last line */
.pop-hero h1 span {
    color: #ed1c24 !important;
}

/* Description */
.pop-hero-lead {
    max-width: 560px;

    margin: 0 0 34px !important;

    color: #ffffff !important;

    font-size: 17px !important;

    line-height: 1.7 !important;

    font-weight: 400;
}

/* Buttons */
.pop-hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;
}

/* Common button */
.pop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;

    padding: 0 30px;

    border-radius: 6px;

    text-decoration: none !important;

    font-size: 15px;

    font-weight: 800;

    line-height: 1;

    transition: all 0.2s ease;
}

/* Red button */
.pop-btn-primary {
    background: #ed1c24 !important;

    color: #ffffff !important;

    border: 2px solid #ed1c24;
}

.pop-btn-primary:hover {
    background: #c91319 !important;
    border-color: #c91319;

    color: #ffffff !important;
}

/* Outline button */
.pop-btn-outline {
    background: rgba(0,0,0,0.16);

    color: #ffffff !important;

    border: 2px solid rgba(255,255,255,0.65);
}

.pop-btn-outline:hover {
    background: rgba(255,255,255,0.12);

    border-color: #ffffff;

    color: #ffffff !important;
}

/* Scroll indicator */
.pop-scroll-cue {
    position: absolute;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 5px;

    color: rgba(255,255,255,0.65);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;

    animation: popHeroScroll 2s ease-in-out infinite;
}

.pop-scroll-cue svg {
    width: 17px;
    height: 17px;
}

@keyframes popHeroScroll {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 7px);
    }
}

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

@media (max-width: 1024px) {

    .pop-hero {
        min-height: 700px;
    }

    .pop-hero-inner {
        min-height: 700px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .pop-hero-content {
        max-width: 580px;
    }

}

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

@media (max-width: 767px) {

    .pop-hero {
        min-height: 700px;
        height: auto;
    }

    .pop-hero-video {
        object-position: 60% center;
    }

    .pop-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(22,14,15,0.92) 0%,
                rgba(22,14,15,0.78) 65%,
                rgba(180,15,15,0.42) 100%
            );
    }

    .pop-hero-inner {
        min-height: 700px;

        padding:
            80px
            22px
            100px;
    }

    .pop-hero-tag {
        font-size: 10px;

        padding: 7px 12px;

        margin-bottom: 24px;
    }

    .pop-hero h1 {
        font-size: 43px !important;

        line-height: 1.05 !important;

        letter-spacing: -1px;
    }

    .pop-hero-lead {
        font-size: 15px !important;

        line-height: 1.6 !important;
    }

    .pop-hero-buttons {
        gap: 12px;
    }

    .pop-btn {
        min-height: 54px;

        padding: 0 22px;

        font-size: 14px;
    }

}

/* =========================
   POP SPACE TRUST BAR
========================= */

.pop-trustbar {
  background: #fbe1e0;
  padding: 24px 0;
}

.pop-trustbar .panel-grid-cell {
  text-align: center;
}

.pop-trust-num {
  margin: 0 0 3px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #e2211c;
}

.pop-trust-label {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #231f20;
  font-weight: 600;
}

/* Remove unnecessary widget spacing */
.pop-trustbar .widget {
  margin-bottom: 0 !important;
}

/* Mobile */
@media (max-width: 780px) {
  .pop-trustbar {
    padding: 22px 20px;
  }

  .pop-trustbar .panel-grid-cell {
    margin-bottom: 18px !important;
  }

  .pop-trustbar .panel-grid-cell:last-child {
    margin-bottom: 0 !important;
  }
}

/* =========================================
   POP SPACE - FOUR PILLARS
========================================= */

/* Remove SiteOrigin spacing */
.pop-pillars-row,
.pop-pillars-row .panel-grid-cell,
.pop-pillars-row .widget,
.pop-pillars-row .textwidget,
.pop-pillars-row .siteorigin-widget-tinymce {
    margin: 0 !important;
    padding: 0 !important;
}

.pop-pillars-row .panel-grid-cell {
    width: 100% !important;
}

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

.pop-pillars-section {
    width: 100%;

    background: #ffffff;

    padding: 70px 24px 72px;

    box-sizing: border-box;
}

/* =========================================
   CENTERED CONTENT
========================================= */

.pop-pillars-container {
    width: 100%;

    max-width: 1140px;

    margin: 0 auto;

    box-sizing: border-box;
}

/* =========================================
   HEADER
========================================= */

.pop-pillars-header {
    text-align: center;

    margin-bottom: 44px;
}

.pop-pillars-tag {
    color: #e2211c;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.pop-pillars-header h2 {
    color: #231f20 !important;

    font-size: 32px !important;

    font-weight: 800 !important;

    line-height: 1.2 !important;

    margin: 0 0 13px !important;

    padding: 0 !important;
}

.pop-pillars-header p {
    color: #5a5a5a !important;

    font-size: 16px !important;

    line-height: 1.6 !important;

    margin: 0 !important;

    padding: 0 !important;
}

/* =========================================
   FOUR CARD GRID
========================================= */

.pop-pillars-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
}

/* =========================================
   CARD
========================================= */

.pop-pillar-card {
    background: #ffffff;

    border:
        1px solid #e4e4e4;

    border-radius: 10px;

    padding:
        32px
        24px;

    min-height: 325px;

    box-sizing: border-box;

    box-shadow:
        0 4px 16px rgba(0,0,0,0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pop-pillar-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 14px 30px rgba(0,0,0,0.10);
}

/* =========================================
   NUMBER
========================================= */

.pop-pillar-number {
    color: #e2211c;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

/* =========================================
   ICON
========================================= */

.pop-pillar-icon {
    width: 44px;

    height: 44px;

    color: #e2211c;

    margin-bottom: 17px;
}

.pop-pillar-icon svg {
    width: 44px;

    height: 44px;

    display: block;
}

/* =========================================
   TITLE
========================================= */

.pop-pillar-card h3 {
    color: #231f20 !important;

    font-size: 19px !important;

    font-weight: 700 !important;

    line-height: 1.3 !important;

    margin:
        0
        0
        8px !important;

    padding: 0 !important;
}

/* =========================================
   RED TAGLINE
========================================= */

.pop-pillar-tagline {
    color: #e2211c;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.45;

    margin-bottom: 9px;
}

/* =========================================
   DESCRIPTION
========================================= */

.pop-pillar-card > p {
    color: #5a5a5a !important;

    font-size: 14.5px !important;

    line-height: 1.58 !important;

    margin: 0 !important;

    padding: 0 !important;
}

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

@media (max-width: 960px) {

    .pop-pillars-section {
        padding:
            60px
            22px;
    }

    .pop-pillars-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

}

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

@media (max-width: 600px) {

    .pop-pillars-section {
        padding:
            50px
            18px;
    }

    .pop-pillars-header {
        margin-bottom: 32px;
    }

    .pop-pillars-tag {
        font-size: 11px;
    }

    .pop-pillars-header h2 {
        font-size:
            28px !important;
    }

    .pop-pillars-header p {
        font-size:
            14px !important;
    }

    .pop-pillars-grid {
        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .pop-pillar-card {
        min-height: 0;

        padding:
            28px
            22px;
    }

}

/* =========================================
   POP SPACE - SEE IT IN MOTION
========================================= */

/* Remove SiteOrigin spacing */
.pop-motion-row,
.pop-motion-row .panel-grid-cell,
.pop-motion-row .widget,
.pop-motion-row .textwidget,
.pop-motion-row .siteorigin-widget-tinymce {
    margin: 0 !important;
    padding: 0 !important;
}

.pop-motion-row .panel-grid-cell {
    width: 100% !important;
}

/* =========================================
   FULL WIDTH DARK SECTION
========================================= */

.pop-motion-section {
    width: 100%;
    background: #231f20;
    padding: 72px 24px 70px;
    box-sizing: border-box;
}

/* =========================================
   CONTENT CONTAINER

   Full background = browser width
   Actual content = maximum 1140px
========================================= */

.pop-motion-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================================
   SECTION HEADING
========================================= */

.pop-motion-header {
    width: 100%;
    text-align: center;
    margin: 0 0 44px;
}

/* THE PLATFORM */

.pop-motion-tag {
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin: 0 0 15px;
}

/* See It In Motion */

.pop-motion-header h2 {
    color: #ffffff !important;

    font-size: 32px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    margin: 0 0 13px !important;
    padding: 0 !important;

    text-align: center;
}

/* Description */

.pop-motion-header p {
    color: #c9c9c9 !important;

    font-size: 16px !important;
    font-weight: 400;

    line-height: 1.6 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center;
}

/* =========================================
   VIDEO GRID
========================================= */

.pop-motion-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}

/* =========================================
   VIDEO CARD
========================================= */

.pop-motion-card {
    width: 100%;

    background: #000000;

    border-radius: 12px;

    overflow: hidden;

    box-sizing: border-box;
}

/* =========================================
   VIDEO
========================================= */

.pop-motion-card video {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    margin: 0;
    padding: 0;

    border: 0;

    background: #000000;
}

/* =========================================
   VIDEO CAPTION
========================================= */

.pop-motion-caption {
    background: #161414;

    padding: 14px 18px 15px;

    box-sizing: border-box;
}

/* Caption title */

.pop-motion-caption h4 {
    color: #ffffff !important;

    font-size: 15.5px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    margin: 0 0 3px !important;
    padding: 0 !important;
}

/* Caption description */

.pop-motion-caption p {
    color: #b9b9b9 !important;

    font-size: 13px !important;
    font-weight: 400;

    line-height: 1.5 !important;

    margin: 0 !important;
    padding: 0 !important;
}

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

@media (max-width: 900px) {

    .pop-motion-section {
        padding: 60px 22px;
    }

    .pop-motion-header {
        margin-bottom: 36px;
    }

    .pop-motion-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

}

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

@media (max-width: 600px) {

    .pop-motion-section {
        padding: 50px 18px;
    }

    .pop-motion-header {
        margin-bottom: 32px;
    }

    .pop-motion-tag {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .pop-motion-header h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .pop-motion-header p {
        font-size: 14px !important;
    }

    .pop-motion-grid {
        gap: 18px;
    }

    .pop-motion-caption {
        padding: 14px 16px 15px;
    }

}

/* =========================================
   POP SPACE IN ACTION
========================================= */

/* Remove SiteOrigin spacing */
.pop-action-row,
.pop-action-row .panel-grid-cell,
.pop-action-row .widget,
.pop-action-row .textwidget,
.pop-action-row .siteorigin-widget-tinymce {
    margin: 0 !important;
    padding: 0 !important;
}

.pop-action-row .panel-grid-cell {
    width: 100% !important;
}

/* =========================================
   FULL SECTION
========================================= */

.pop-action-section {
    width: 100%;

    background: #f6f6f6;

    padding: 72px 24px 76px;

    box-sizing: border-box;
}

/* =========================================
   CENTERED CONTENT
========================================= */

.pop-action-container {
    width: 100%;

    max-width: 1140px;

    margin: 0 auto;

    box-sizing: border-box;
}

/* =========================================
   HEADER
========================================= */

.pop-action-header {
    text-align: center;

    margin: 0 0 44px;
}

.pop-action-tag {
    color: #e2211c;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.pop-action-header h2 {
    color: #231f20 !important;

    font-size: 32px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    margin: 0 0 13px !important;
    padding: 0 !important;
}

.pop-action-header p {
    color: #5a5a5a !important;

    font-size: 16px !important;
    font-weight: 400;

    line-height: 1.6 !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   3 COLUMN GRID
========================================= */

.pop-action-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}

/* =========================================
   CARD
========================================= */

.pop-action-card {
    background: #ffffff;

    border: 1px solid #e4e4e4;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.07);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;

    height: 100%;
}

.pop-action-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.14);
}

/* =========================================
   MEDIA
========================================= */

.pop-action-media {
    position: relative;

    height: 250px;

    overflow: hidden;

    background: #eaeaea;
}

.pop-action-media video,
.pop-action-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.pop-action-card:hover
.pop-action-media video,

.pop-action-card:hover
.pop-action-media img {
    transform: scale(1.08);
}

/* Dark gradient at bottom */

.pop-action-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,0.60) 100%
        );

    pointer-events: none;
}

/* Category badge */

.pop-action-category {
    position: absolute;

    left: 16px;
    bottom: 14px;

    z-index: 2;

    background: #e2211c;

    color: #ffffff;

    font-size: 10.5px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    padding: 6px 11px;

    border-radius: 4px;
}

/* =========================================
   BODY
========================================= */

.pop-action-body {
    padding: 22px 22px 26px;
}

.pop-action-body h3 {
    color: #231f20 !important;

    font-size: 16.5px !important;
    font-weight: 700 !important;

    line-height: 1.35 !important;

    margin: 0 0 10px !important;
    padding: 0 !important;
}

.pop-action-body > p {
    color: #5a5a5a !important;

    font-size: 13.5px !important;

    line-height: 1.6 !important;

    margin: 0 0 15px !important;
    padding: 0 !important;
}

/* =========================================
   LOCATION
========================================= */

.pop-action-location {
    color: #8a8a8a;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.5;

    margin-bottom: 20px;
}

/* Do NOT use emoji pin */
.pop-action-location::before {
    content: "";
    display: none;
}

/* =========================================
   VIEW MORE BUTTON
========================================= */

.pop-action-link {
    display: inline-flex;

    align-items: center;

    padding: 0 !important;

    margin: 0;

    border: 0;

    background: transparent;

    color: #e2211c !important;

    font-family: inherit;

    font-size: 13.5px;

    font-weight: 700;

    line-height: 1.4;

    cursor: pointer;

    text-decoration: none;

    transition:
        transform 0.2s ease;
}

.pop-action-link:hover {
    transform: translateX(4px);

    color: #b8180f !important;
}

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

@media (max-width: 900px) {

    .pop-action-section {
        padding:
            60px
            22px;
    }

    .pop-action-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

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

@media (max-width: 650px) {

    .pop-action-section {
        padding:
            50px
            18px;
    }

    .pop-action-header {
        margin-bottom: 32px;
    }

    .pop-action-tag {
        font-size: 11px;
    }

    .pop-action-header h2 {
        font-size: 28px !important;
    }

    .pop-action-header p {
        font-size: 14px !important;
    }

    .pop-action-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .pop-action-media {
        height: 230px;
    }

}

/* =========================================
   POP SPACE PHOTO GALLERY / LIGHTBOX
========================================= */

.pop-gallery {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 999999;

    background: rgba(0,0,0,0.93);

    display: none;

    opacity: 0;

    transition: opacity 0.25s ease;
}

/* Open state */

.pop-gallery.pop-gallery-open {
    display: block;
    opacity: 1;
}

/* =========================================
   TOP BAR
========================================= */

.pop-gallery-top {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 5;

    background: rgba(20,20,20,0.75);

    border-bottom:
        1px solid rgba(255,255,255,0.05);
}

/* Title */

.pop-gallery-title {
    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.3;

    text-align: center;

    padding: 0 70px;
}

/* =========================================
   CLOSE BUTTON
========================================= */

.pop-gallery-close {
    position: absolute;

    right: 15px;
    top: 8px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid rgba(255,255,255,0.35);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 22px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pop-gallery-close:hover {
    background:
        rgba(255,255,255,0.18);

    border-color:
        rgba(255,255,255,0.65);
}

/* =========================================
   MAIN IMAGE AREA
========================================= */

.pop-gallery-main {
    position: absolute;

    top: 60px;
    bottom: 125px;

    left: 70px;
    right: 70px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.pop-gallery-main img {
    display: block;

    max-width: 78%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.45);
}

/* =========================================
   LEFT / RIGHT ARROWS
========================================= */

.pop-gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid rgba(255,255,255,0.30);

    border-radius: 50%;

    background:
        rgba(255,255,255,0.10);

    color: #ffffff;

    font-size: 30px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pop-gallery-arrow:hover {
    background:
        rgba(255,255,255,0.20);

    border-color:
        rgba(255,255,255,0.60);
}

.pop-gallery-prev {
    left: 12px;
}

.pop-gallery-next {
    right: 12px;
}

/* =========================================
   BOTTOM AREA
========================================= */

.pop-gallery-bottom {
    position: absolute;

    left: 0;
    bottom: 12px;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    z-index: 5;
}

/* Counter */

.pop-gallery-counter {
    color: rgba(255,255,255,0.90);

    font-size: 12px;

    font-weight: 600;

    line-height: 1;
}

/* =========================================
   THUMBNAILS
========================================= */

.pop-gallery-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: auto;
    max-width: 90vw;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 4px 6px;

    box-sizing: border-box;
}

.pop-gallery-thumb {
    width: 52px;
    height: 52px;

    min-width: 52px;

    flex: 0 0 52px;

    padding: 0 !important;
    margin: 0 !important;

    border: 2px solid transparent;

    border-radius: 4px;

    overflow: hidden;

    background: #222;

    cursor: pointer;

    opacity: 0.55;

    box-sizing: border-box;

    appearance: none;
    -webkit-appearance: none;
}

.pop-gallery-thumb img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}

.pop-gallery-thumb:hover {
    opacity: 0.85;
}

.pop-gallery-thumb.active {
    opacity: 1;

    border-color: #e2211c;
}

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

@media (max-width: 700px) {

    .pop-gallery-title {
        font-size: 11px;

        padding:
            0
            55px;
    }

    .pop-gallery-main {
        top: 55px;

        bottom: 115px;

        left: 45px;
        right: 45px;
    }

    .pop-gallery-main img {
        max-width: 100%;

        max-height: 100%;
    }

    .pop-gallery-arrow {
        width: 32px;
        height: 32px;

        font-size: 26px;
    }

    .pop-gallery-prev {
        left: 6px;
    }

    .pop-gallery-next {
        right: 6px;
    }

    .pop-gallery-thumb {
        width: 44px;
        height: 44px;

        min-width: 44px;

        flex-basis: 44px;
    }

}

/* =========================================
   POP SPACE - REGIONAL REACH
========================================= */

/* Remove SiteOrigin spacing */
.pop-regional-row,
.pop-regional-row .panel-grid-cell,
.pop-regional-row .widget,
.pop-regional-row .textwidget,
.pop-regional-row .siteorigin-widget-tinymce {
    margin: 0 !important;
    padding: 0 !important;
}

.pop-regional-row .panel-grid-cell {
    width: 100% !important;
}

/* =========================================
   FULL SECTION
========================================= */

.pop-regional-section {
    width: 100%;

    background: #231f20;

    padding: 70px 24px 68px;

    box-sizing: border-box;
}

/* =========================================
   CONTENT WIDTH
========================================= */

.pop-regional-container {
    width: 100%;

    max-width: 1140px;

    margin: 0 auto;

    box-sizing: border-box;
}

/* =========================================
   SECTION HEADER
========================================= */

.pop-regional-header {
    text-align: center;

    margin-bottom: 44px;
}

.pop-regional-tag {
    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.2;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.pop-regional-header h2 {
    color: #ffffff !important;

    font-size: 32px !important;

    font-weight: 800 !important;

    line-height: 1.2 !important;

    margin: 0 0 12px !important;

    padding: 0 !important;
}

.pop-regional-header p {
    color: #c9c9c9 !important;

    font-size: 16px !important;

    line-height: 1.6 !important;

    margin: 0 !important;

    padding: 0 !important;
}

/* =========================================
   MAIN PANEL
========================================= */

.pop-regional-panel {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    padding: 58px 50px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(226,33,28,0.18),
            transparent 42%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(226,33,28,0.10),
            transparent 46%
        ),
        #181415;
}

/* Optional faint map image */
.pop-regional-panel::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        url("https://unicommarketing.com.my/wp-content/uploads/2026/08/sea-map-outline-scaled.png");

    background-repeat: no-repeat;

    background-position: center;

    background-size: contain;

    opacity: 0.055;

    pointer-events: none;
}

/* Make content sit above map */
.pop-regional-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr
        1fr;

    gap: 66px;
}

/* =========================================
   LABELS
========================================= */

.pop-regional-label {
    color: #9a9a9a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.6px;

    line-height: 1.2;

    text-transform: uppercase;

    margin-bottom: 24px;
}

.pop-regional-label-red {
    color: #e2211c;
}

/* =========================================
   LEFT - CURRENT FOOTPRINT
========================================= */

.pop-regional-stat {
    display: flex;

    align-items: flex-end;

    gap: 16px;

    margin-bottom: 30px;
}

.pop-regional-number {
    color: #ffffff;

    font-size: 86px;

    font-weight: 900;

    line-height: 0.82;

    letter-spacing: -3px;
}

.pop-regional-number-label {
    color: #c9c9c9;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;

    padding-bottom: 7px;
}

/* Markets */

.pop-regional-market-list {
    display: flex;

    flex-direction: column;
}

.pop-regional-market {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}

.pop-regional-market:last-child {
    border-bottom: 0;
}

.pop-regional-market svg {
    width: 15px;

    height: 15px;

    flex: 0 0 15px;

    color: #e2211c;
}

/* =========================================
   RIGHT - PARTNER
========================================= */

.pop-regional-partner h3 {
    color: #ffffff !important;

    font-size: 25px !important;

    font-weight: 800 !important;

    line-height: 1.25 !important;

    margin: 0 0 26px !important;

    padding: 0 !important;
}

/* Country grid */

.pop-regional-country-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    column-gap: 20px;
}

.pop-regional-country {
    color: #d8d8d8;

    font-size: 14.5px;

    font-weight: 600;

    line-height: 1.4;

    padding: 10px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

/* More text */

.pop-regional-more {
    color: #8a8a8a;

    font-size: 12.5px;

    font-style: italic;

    line-height: 1.5;

    margin: 12px 0 26px;
}

/* Note */

.pop-regional-partner-note {
    color: #c9c9c9 !important;

    font-size: 14px !important;

    line-height: 1.5 !important;

    margin: 0 0 24px !important;
}

/* Button */

.pop-regional-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    border:
        1.5px solid rgba(255,255,255,0.40);

    border-radius: 6px;

    color: #ffffff !important;

    background: transparent;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pop-regional-button:hover {
    background:
        rgba(226,33,28,0.15);

    border-color:
        #e2211c;

    color: #ffffff !important;
}

/* =========================================
   FOOTNOTE
========================================= */

.pop-regional-footnote {
    color: #9a9a9a !important;

    text-align: center;

    font-size: 12.5px !important;

    font-style: italic;

    line-height: 1.5 !important;

    margin:
        28px
        0
        0 !important;
}

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

@media (max-width: 900px) {

    .pop-regional-section {
        padding:
            60px
            22px;
    }

    .pop-regional-panel {
        padding:
            44px
            28px;
    }

    .pop-regional-grid {
        grid-template-columns:
            1fr;

        gap: 44px;
    }

    .pop-regional-number {
        font-size: 68px;
    }

}

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

@media (max-width: 600px) {

    .pop-regional-section {
        padding:
            50px
            18px;
    }

    .pop-regional-header {
        margin-bottom: 32px;
    }

    .pop-regional-tag {
        font-size: 11px;
    }

    .pop-regional-header h2 {
        font-size: 28px !important;
    }

    .pop-regional-header p {
        font-size: 14px !important;
    }

    .pop-regional-panel {
        border-radius: 16px;

        padding:
            34px
            22px;
    }

    .pop-regional-number {
        font-size: 62px;
    }

    .pop-regional-market {
        font-size: 16px;
    }

    .pop-regional-country-grid {
        grid-template-columns:
            1fr;
    }

    .pop-regional-partner h3 {
        font-size: 23px !important;
    }

    .pop-regional-button {
        width: 100%;
    }

}

/* =========================================
   POP SPACE - CONTACT CTA
========================================= */

/* Remove SiteOrigin spacing */
.pop-contact-row,
.pop-contact-row .panel-grid-cell,
.pop-contact-row .widget,
.pop-contact-row .textwidget,
.pop-contact-row .siteorigin-widget-tinymce {
    margin: 0 !important;
    padding: 0 !important;
}

.pop-contact-row .panel-grid-cell {
    width: 100% !important;
}

/* =========================================
   FULL SECTION
========================================= */

.pop-contact-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #231f20 0%,
            #7B211D 40%,
            #b8180f 63%,
            #581E1D 100%
        );

    padding: 68px 24px;

    box-sizing: border-box;
}

/* subtle red glow */
.pop-contact-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 72% 20%,
            rgba(226,33,28,0.34),
            transparent 48%
        );

    pointer-events: none;
}

/* =========================================
   CENTERED CONTENT
========================================= */

.pop-contact-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1140px;

    margin: 0 auto;
}

/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.pop-contact-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: center;
}

/* =========================================
   LEFT
========================================= */

.pop-contact-label {
    color: rgba(255,255,255,0.82);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.2;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.pop-contact-copy h2 {
    color: #ffffff !important;

    font-size: clamp(30px, 3vw, 40px) !important;

    font-weight: 900 !important;

    line-height: 1.08 !important;

    letter-spacing: -0.5px;

    margin: 0 0 18px !important;

    padding: 0 !important;
}

.pop-contact-copy p {
    color: rgba(255,255,255,0.88) !important;

    font-size: 16px !important;

    line-height: 1.6 !important;

    max-width: 470px;

    margin: 0 !important;

    padding: 0 !important;
}

/* =========================================
   RIGHT CARD LIST
========================================= */

.pop-contact-cards {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

/* common card */
.pop-contact-card {
    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 100px;

    padding: 24px 28px;

    border-radius: 16px;

    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

/* =========================================
   WHATSAPP CARD
========================================= */

.pop-contact-card-primary {
    background: #ffffff;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.20);
}

.pop-contact-card-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 22px 48px rgba(0,0,0,0.27);
}

/* =========================================
   EMAIL CARD
========================================= */

.pop-contact-card-secondary {
    background: rgba(255,255,255,0.01);

    border:
        1.5px solid rgba(255,255,255,0.40);
}

.pop-contact-card-secondary:hover {
    background:
        rgba(255,255,255,0.05);

    border-color:
        rgba(255,255,255,0.65);
}

/* =========================================
   ICON
========================================= */

.pop-contact-icon {
    width: 44px;

    height: 44px;

    flex: 0 0 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.pop-contact-card-primary .pop-contact-icon {
    background: #e2211c;

    color: #ffffff;
}

.pop-contact-card-secondary .pop-contact-icon {
    background:
        rgba(255,255,255,0.12);

    color: #ffffff;
}

.pop-contact-icon svg {
    width: 21px;

    height: 21px;

    display: block;
}

/* =========================================
   CARD TEXT
========================================= */

.pop-contact-card-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.pop-contact-card-title {
    font-size: 17px;

    font-weight: 800;

    line-height: 1.3;
}

.pop-contact-card-value {
    font-size: 14.5px;

    font-weight: 600;

    line-height: 1.4;
}

/* White card */
.pop-contact-card-primary
.pop-contact-card-title {
    color: #231f20;
}

.pop-contact-card-primary
.pop-contact-card-value {
    color: #5a5a5a;
}

/* Transparent card */
.pop-contact-card-secondary
.pop-contact-card-title {
    color: #ffffff;
}

.pop-contact-card-secondary
.pop-contact-card-value {
    color: rgba(255,255,255,0.80);
}

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

@media (max-width: 900px) {

    .pop-contact-section {
        padding:
            60px
            22px;
    }

    .pop-contact-grid {
        grid-template-columns:
            1fr;

        gap: 36px;
    }

    .pop-contact-copy p {
        max-width: 600px;
    }

}

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

@media (max-width: 600px) {

    .pop-contact-section {
        padding:
            50px
            18px;
    }

    .pop-contact-label {
        font-size: 10.5px;
    }

    .pop-contact-copy h2 {
        font-size: 31px !important;
    }

    .pop-contact-copy h2 br {
        display: none;
    }

    .pop-contact-copy p {
        font-size: 14.5px !important;
    }

    .pop-contact-card {
        padding:
            20px
            18px;

        min-height: 90px;

        gap: 15px;
    }

    .pop-contact-icon {
        width: 40px;

        height: 40px;

        flex-basis: 40px;
    }

    .pop-contact-icon svg {
        width: 19px;

        height: 19px;
    }

    .pop-contact-card-title {
        font-size: 15px;
    }

    .pop-contact-card-value {
        font-size: 13px;
    }

}