/* ==========================================================================
   EURO+ — Gallery Page Styles (Dark Premium Theme)
   ========================================================================== */

/* ----------------------------------------------
   HERO — particles / lines / circles
   ---------------------------------------------- */
.hero-fx { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-fx .fx-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(195,134,43,0.25);
}
.hero-fx .fx-circle.c1 { width: 280px; height: 280px; top: 8%; right: 8%; animation: drift 9s ease-in-out infinite; }
.hero-fx .fx-circle.c2 { width: 140px; height: 140px; bottom: 12%; left: 6%; animation: drift 7s ease-in-out infinite reverse; }
.hero-fx .fx-line {
  position: absolute; background: linear-gradient(90deg, transparent, rgba(195,134,43,0.4), transparent);
  height: 1px; width: 260px;
}
.hero-fx .fx-line.l1 { top: 30%; left: -40px; transform: rotate(-18deg); }
.hero-fx .fx-line.l2 { bottom: 22%; right: -60px; transform: rotate(14deg); }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* =========================================================
   EURO+ — PREMIUM AUTO PLAY BRAND VIDEO
   ========================================================= */

.gallery-video-section {
    position: relative;
    padding: var(--gap-section) 0;
    background: var(--void);
    overflow: hidden;
}

.gallery-video-section .section-head {
    max-width: 850px;
    margin: 0 auto 45px;
}

.gallery-video-section .section-head h2,
.gallery-video-section h2 {
    color: var(--white);
}

.gallery-video-section .video-intro {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* Video Container */
.gallery-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    aspect-ratio: 16 / 8.9;
    overflow: hidden;
    border-radius: 24px;
    background: #050403;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(195,134,43,0.2);

    isolation: isolate;
}

/* Video */
.gallery-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.01);
}

/* Premium dark overlay */
.gallery-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.55) 100%
        );

    z-index: 1;

    pointer-events: none;
}

/* Center Content */
.gallery-video-content {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;

    text-align: center;
    color: #fff;

    pointer-events: none;
}

.gallery-video-content .video-small-title {
    display: inline-block;

    margin-bottom: 14px;

    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.30em;
    text-transform: uppercase;

    color: var(--gold);
}

.gallery-video-content h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 500;

    color: #fff;

    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery-video-content h3 em {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* Muted badge */
.video-muted-badge {
    position: absolute;

    right: 22px;
    bottom: 22px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border-radius: 30px;

    background: rgba(0, 0, 0, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    font-family: var(--font-btn);
    font-size: 10px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-muted-badge i {
    color: var(--gold);
    font-size: 12px;
}


/* Premium gold border */
.gallery-video-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 4;

    border: 1px solid rgba(195,134,43,0.35);

    border-radius: 24px;

    pointer-events: none;
}


/* Hover effect */
.gallery-video-wrapper {
    transition:
        transform 0.6s var(--ease),
        box-shadow 0.6s var(--ease);
}

.gallery-video-wrapper:hover {
    transform: translateY(-6px);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(195,134,43,0.4);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .gallery-video-wrapper {
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }

    .gallery-video-wrapper::before {
        border-radius: 20px;
    }

    .gallery-video-content h3 {
        font-size: clamp(32px, 6vw, 52px);
    }
}


@media (max-width: 576px) {

    .gallery-video-section .section-head {
        margin-bottom: 28px;
    }

    .gallery-video-section .video-intro {
        font-size: 13px;
        line-height: 1.7;
    }

    .gallery-video-wrapper {
        aspect-ratio: 9 / 14;
        border-radius: 16px;
    }

    .gallery-video-wrapper::before {
        border-radius: 16px;
    }

    .gallery-video {
        object-fit: cover;
    }

    .gallery-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.45) 0%,
                rgba(0, 0, 0, 0.28) 45%,
                rgba(0, 0, 0, 0.75) 100%
            );
    }

    .gallery-video-content h3 {
        font-size: 34px;
    }

    .gallery-video-content .video-small-title {
        font-size: 9px;
        letter-spacing: 0.22em;
    }

    .video-muted-badge {
        right: 14px;
        bottom: 14px;

        padding: 7px 11px;

        font-size: 9px;
    }
}

/* ----------------------------------------------
   PREMIUM GALLERY FILTER
   ---------------------------------------------- */
.filter-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px;
  margin-bottom: 44px;
}
.filter-nav button {
  position: relative; background: none; border: none; cursor: pointer;
  font-family: var(--font-btn); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 8px 2px; transition: color .35s ease;
}
.filter-nav button::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-dark)
    );
  transform: translateX(-50%); transition: width .4s var(--ease);
}
.filter-nav button:hover {
    color: var(--gold);
}
.filter-nav button:hover::after { width: 60%; }
.filter-nav button.active { color: var(--white); font-weight: 600; }
.filter-nav button.active::after { width: 100%; }

/* ==========================
   PRODUCT SHOWCASE GALLERY
   ========================== */

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-showcase-card {
    background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 34px -18px rgba(0,0,0,0.55);
    border: 1px solid var(--line);
    transition: all 0.4s ease;
}

.product-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -24px rgba(0,0,0,0.65), 0 0 0 1px rgba(195,134,43,0.15);
    border-color: var(--gold);
}

.product-showcase-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--void);
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.05);
}

.product-showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,10,7,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-showcase-card:hover .product-showcase-overlay {
    opacity: 1;
}

.product-showcase-overlay a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.product-showcase-card:hover .product-showcase-overlay a {
    transform: scale(1);
}

.product-showcase-overlay a:hover {
    background: #fff;
    transform: scale(1.1);
}

.product-showcase-content {
    padding: 24px 24px 28px;
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(195,134,43,0.14);
    border: 1px solid rgba(195,134,43,0.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-showcase-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-showcase-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-showcase-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.product-showcase-meta span {
    font-size: 12px;
    color: rgba(241,233,220,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-showcase-meta span i {
    color: var(--gold);
    font-size: 14px;
}

.product-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-btn);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-showcase-btn:hover {
    color: var(--white);
    gap: 12px;
}

.product-showcase-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Tablet */
@media(max-width: 992px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile */
@media(max-width: 576px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-showcase-content {
        padding: 20px;
    }
    
    .product-showcase-content h4 {
        font-size: 16px;
    }
}

/* ----------------------------------------------
   FEATURED PROJECTS
   ---------------------------------------------- */
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 992px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 20px 50px -28px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.project-card:hover img { transform: scale(1.1); }
.project-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,10,7,0.94) 0%, rgba(12,10,7,0.4) 55%, rgba(12,10,7,0.08) 100%);
}
.project-card .project-info {
  position: absolute; inset: auto 0 0 0; padding: 24px 22px; z-index: 2;
  transform: translateY(34px); transition: transform .5s var(--ease);
}
.project-card:hover .project-info { transform: translateY(0); }
.project-card .project-loc {
  font-family: var(--font-btn); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.project-card h5 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.project-card p {
  color: rgba(255,255,255,0.7); font-size: 12.5px; margin: 0 0 16px;
  max-height: 0; opacity: 0; overflow: hidden; transition: all .5s var(--ease);
}
.project-card:hover p { max-height: 60px; opacity: 1; }
.project-card a.proj-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(
        140deg,
        var(--gold),
        var(--gold-dark)
    );
    color: var(--black); font-family: var(--font-btn); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 30px; opacity: 0; transform: translateY(10px);
  transition: all .5s var(--ease);
}
.project-card:hover a.proj-btn { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------
   BEFORE & AFTER
   ---------------------------------------------- */
.ba-wrap { max-width: 920px; margin: 0 auto; }
.ba-slider {
  position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px -36px rgba(0,0,0,0.6); user-select: none; cursor: ew-resize;
  border: 1px solid var(--line);
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap {
  position: absolute; inset: 0; width: 50%; overflow: hidden; z-index: 2;
  border-right: 2px solid var(--gold);
}
.ba-slider .ba-before-wrap img { width: var(--ba-img-w, 920px); max-width: none; height: 100%; }
.ba-tag {
  position: absolute; top: 20px; z-index: 3;
  font-family: var(--font-btn); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(12,10,7,0.8); color: #fff; padding: 8px 16px; border-radius: 30px;
  border: 1px solid rgba(195,134,43,0.3);
}
.ba-tag.tag-before { left: 20px; }
.ba-tag.tag-after { right: 20px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold);
  z-index: 4; transform: translateX(-50%); pointer-events: none;
}
.ba-handle::before {
  content: '\f337'; font-family: "Font Awesome 7 Free"; font-weight: 900;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
    color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.6);
}
.ba-caption { text-align: center; margin-top: 26px; }
.ba-caption p { color: var(--muted); }
.ba-caption i { color: var(--gold); font-size: 22px; margin: 0 14px; }

/* ----------------------------------------------
   PRODUCT IN REAL SPACES
   ---------------------------------------------- */
.space-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 992px) { .space-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .space-grid { grid-template-columns: 1fr; } }
.space-card {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1.05;
  box-shadow: 0 16px 40px -24px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}
.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.space-card:hover img { transform: scale(1.1); }
.space-card .glass-panel {
  position: absolute; inset: auto 10px 10px; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.22);
  opacity: 0; transform: translateY(14px); transition: all .45s var(--ease);
}
.space-card:hover .glass-panel { opacity: 1; transform: translateY(0); }
.space-card .glass-panel span {
  color: #fff; font-family: var(--font-btn); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ----------------------------------------------
   DECORATIVE SWIPER
   ---------------------------------------------- */
.decor-swiper { padding: 10px 6px 50px; }
.decor-slide-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.decor-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 56px -26px rgba(195,134,43,0.35);
  border-color: rgba(195,134,43,0.4);
}
.decor-slide-card .decor-img { aspect-ratio: 4/3; overflow: hidden; }
.decor-slide-card .decor-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.decor-slide-card:hover .decor-img img { transform: scale(1.08); }
.decor-slide-card .decor-body { padding: 20px 20px 24px; }
.decor-slide-card h5 { font-size: 16px; margin-bottom: 6px; color: var(--white); }
.decor-slide-card p { color: var(--muted); font-size: 13px; font-weight: 300; margin: 0; }
.decor-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.2); opacity: 1; }
.decor-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ----------------------------------------------
   360 EXPERIENCE
   ---------------------------------------------- */
.viewer-360 { position: relative; }
.viewer-360 .product-visual-frame { cursor: grab; }
.viewer-360 .product-visual-frame:active { cursor: grabbing; }
.viewer-360 .product-visual-frame img { transition: transform .1s linear; }

/* ----------------------------------------------
   VIDEO GALLERY
   ---------------------------------------------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; cursor: pointer;
  box-shadow: 0 18px 44px -26px rgba(0,0,0,0.65);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease);
}
.video-card:hover { transform: translateY(-8px); }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-card:hover img { transform: scale(1.08); }
.video-card::after { content: ''; position: absolute; inset: 0; background: rgba(12,10,7,0.5); }
.video-card .video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px;
  transition: all .4s var(--ease);
}
.video-card:hover .video-play { background: var(--gold);
    color: var(--black); transform: translate(-50%, -50%) scale(1.1); }
.video-card .video-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 3;
  color: #fff; font-family: var(--font-btn); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.video-card .video-cat {
  position: absolute; top: 14px; left: 16px; z-index: 3;
  background: rgba(195,134,43,0.9);
    color: var(--black); font-size: 9.5px; font-family: var(--font-btn);
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}

/* ----------------------------------------------
   HARDWARE SHOWCASE
   ---------------------------------------------- */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .hardware-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .hardware-grid { grid-template-columns: 1fr; } }

.hardware-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .4s var(--ease);
}
.hardware-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(195,134,43,0.3);
  transform: translateY(-6px);
}
.hardware-card .hardware-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(195,134,43,0.15);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin: 0 auto 16px; transition: all .4s var(--ease);
}
.hardware-card:hover .hardware-icon { background: var(--gold); color: var(--black); }
.hardware-card .hardware-image {
  aspect-ratio: 3/3; overflow: hidden; border-radius: 12px; margin-bottom: 14px;
}
.hardware-card .hardware-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hardware-card:hover .hardware-image img { transform: scale(1.05); }
.hardware-card h6 { color: #fff; font-size: 16px; margin-bottom: 4px; font-weight: 600; }
.hardware-card p { color: rgba(255,255,255,0.6); font-size: 12.5px; margin: 0; }

/* ----------------------------------------------
   INSTAGRAM INSPIRED GRID
   ---------------------------------------------- */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
@media (max-width: 992px) { .insta-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 576px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
.insta-item { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-item:hover img { transform: scale(1.12); }
.insta-item .insta-overlay {
  position: absolute; inset: 0; background: rgba(12,10,7,0.6);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  opacity: 0; transition: opacity .4s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-item .insta-overlay button {
  background: none; border: none; color: #fff; font-size: 19px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-btn); font-size: 10px;
}
.insta-item .insta-overlay button i { font-size: 19px; transition: transform .3s var(--ease), color .3s ease; }
.insta-item .insta-overlay button.liked i { color: var(--gold); transform: scale(1.25); }
.insta-item .insta-overlay button:hover i { color: var(--gold); }

/* ----------------------------------------------
   STATS
   ---------------------------------------------- */
#gallery-stats { position: relative; overflow: hidden; }
#gallery-stats .stats-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
#gallery-stats .container-xl { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-item b {
  font-size: clamp(36px, 4.5vw, 52px);
  color: #fff;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}
.stat-item span {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ----------------------------------------------
   TESTIMONIALS
   ---------------------------------------------- */
.testimonial-swiper .testimonial-card {
  background: rgba(255,255,255,0.05);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-swiper .testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-swiper .testimonial-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-swiper .testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-swiper .testimonial-author .author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold);
    color: var(--black);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.testimonial-swiper .testimonial-author b { color: #fff; display: block; font-size: 14px; }
.testimonial-swiper .testimonial-author span { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ----------------------------------------------
   CTA
   ---------------------------------------------- */
#cta { position: relative; }
#cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,10,7,0.85) 0%, rgba(12,10,7,0.75) 50%, rgba(12,10,7,0.95) 100%);
}
#cta .container-xl { position: relative; z-index: 2; }

/* ----------------------------------------------
   RESPONSIVE OVERRIDES
   ---------------------------------------------- */
@media (max-width: 992px) {
  .project-grid { gap: 20px; }
}
@media (max-width: 768px) {
  .filter-nav { gap: 8px 18px; }
  .filter-nav button { font-size: 10.5px; }
  .ba-slider { aspect-ratio: 4/3; }
  .video-grid { gap: 18px; }
}
@media (max-width: 576px) {
  .insta-grid { gap: 4px; }
  .project-card { aspect-ratio: 4/5; }
  .ba-caption i { display: block; margin: 8px auto; }
  .ba-slider { aspect-ratio: 1/1; }
}

html, body { max-width: 100%; overflow-x: hidden; }