/* =========================
   ROOT / GLOBAL
========================= */
:root {
    --prime-black: #050505;
    --prime-black-2: #0c0c0c;
    --prime-black-3: #121212;
    --prime-yellow: #f5c518;
    --prime-yellow-soft: rgba(245, 197, 24, 0.18);
    --prime-white: #ffffff;
    --prime-grey: #b7b7b7;
    --prime-grey-soft: rgba(255, 255, 255, 0.08);
    --prime-border: rgba(255, 255, 255, 0.12);
    --prime-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    --prime-radius: 22px;
    --prime-transition: all 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--prime-black);
    color: var(--prime-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
}

section {
    position: relative;
}

/* =========================
   FLOATING HEADER
========================= */
.prime-floating-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 9990;
    transition: transform 0.45s ease, opacity 0.35s ease;
    pointer-events: none;
}

.prime-floating-header .container-fluid,
.prime-floating-header-inner,
.prime-logo-link,
.prime-menu-toggle {
    pointer-events: auto;
}

.prime-floating-header.nav-hidden {
    transform: translateY(-145%);
    opacity: 0;
    pointer-events: none;
}

.prime-floating-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

/* =========================
   LOGO IMAGE
========================= */
.prime-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9991;
    transition: var(--prime-transition);
}

.prime-logo-link:hover {
    transform: translateY(-2px) scale(1.01);
}

.prime-logo-image {
    height: 80px;
    width: auto;
    max-width: 360px;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35))
        drop-shadow(0 10px 26px rgba(245, 197, 24, 0.06));
}

/* fallback if image is not yet uploaded */
.prime-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--prime-white);
    position: relative;
    z-index: 9991;
    transition: var(--prime-transition);
}

.prime-logo:hover {
    transform: translateY(-2px);
}

.prime-logo-mark {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, var(--prime-yellow) 0%, #ffd84d 55%, #c89600 100%);
    color: #000;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow:
        0 10px 25px rgba(245, 197, 24, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.prime-logo-text {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--prime-white);
}

/* =========================
   MENU BUTTON
========================= */
.prime-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 22px 15px 24px;
    border-radius: 999px;
    color: var(--prime-white);
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(245, 197, 24, 0.22);
    box-shadow:
        0 10px 30px rgba(245, 197, 24, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--prime-transition);
    position: relative;
    overflow: hidden;
    z-index: 9991;
    cursor: pointer;
}

.prime-menu-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(
        120deg,
        transparent 10%,
        rgba(255, 255, 255, 0.16) 48%,
        transparent 85%
    );
    transition: transform 0.65s ease;
}

.prime-menu-toggle:hover::before {
    transform: translateX(110%);
}

.prime-menu-toggle:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(245, 197, 24, 0.55);
    box-shadow:
        0 14px 40px rgba(245, 197, 24, 0.14),
        0 0 0 1px rgba(245, 197, 24, 0.14);
}

.prime-menu-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--prime-white);
}

.prime-menu-icon {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prime-menu-icon span {
    display: block;
    height: 2px;
    border-radius: 10px;
    background: var(--prime-yellow);
    transition: var(--prime-transition);
}

.prime-menu-icon span:nth-child(1) {
    width: 100%;
}

.prime-menu-icon span:nth-child(2) {
    width: 72%;
    margin-left: auto;
}

.prime-menu-icon span:nth-child(3) {
    width: 100%;
}

.prime-menu-toggle:hover .prime-menu-icon span:nth-child(2) {
    width: 100%;
}

.prime-menu-toggle:hover .prime-menu-icon span:nth-child(1),
.prime-menu-toggle:hover .prime-menu-icon span:nth-child(3) {
    transform: scaleX(0.92);
}

.prime-menu-toggle.menu-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(0.96) !important;
}

/* =========================
   SIDEBAR OVERLAY
========================= */
.prime-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10040;
}

.prime-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================
   SIDEBAR
========================= */
.prime-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    z-index: 10050;
    padding: 28px 24px 30px;
    background:
        radial-gradient(circle at top right, rgba(245, 197, 24, 0.14), transparent 24%),
        linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    pointer-events: auto;
}

.prime-sidebar.active {
    transform: translateX(0);
}

.prime-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 42px;
    position: relative;
    z-index: 10060;
}

.prime-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================
   CLOSE BUTTON - ICON ONLY FEEL
========================= */
.prime-sidebar-close {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    position: relative;
    z-index: 10070;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    transition: transform 0.28s ease;
}

.prime-sidebar-close::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(245, 197, 24, 0.14) 0%, rgba(245, 197, 24, 0.08) 45%, transparent 72%);
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.prime-sidebar-close::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 24, 0.22);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.prime-sidebar-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2.5px;
    background: #f5c518;
    border-radius: 10px;
    pointer-events: none;
    transition: background 0.25s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.prime-sidebar-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.prime-sidebar-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.prime-sidebar-close:hover {
    transform: scale(1.08) rotate(90deg);
}

.prime-sidebar-close:hover::before {
    opacity: 1;
    transform: scale(1);
}

.prime-sidebar-close:hover::after {
    opacity: 1;
    transform: scale(1);
}

.prime-sidebar-close:hover span {
    background: #ffd84d;
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.3);
}

.prime-sidebar-close:focus,
.prime-sidebar-close:active {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.prime-sidebar-close:active {
    transform: scale(0.94);
}

.prime-sidebar-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

.prime-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prime-nav-link,
.sidebar-link {
    position: relative;
    display: block;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: 1px solid transparent;
    overflow: hidden;
    transition: var(--prime-transition);
}

.prime-nav-link::before,
.sidebar-link::before {
    content: "";
    position: absolute;
    left: -140%;
    top: 0;
    width: 130%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(245, 197, 24, 0.18),
        rgba(255, 255, 255, 0.14),
        transparent
    );
    transition: left 0.65s ease;
}

.prime-nav-link::after,
.sidebar-link::after {
    content: "";
    position: absolute;
    inset: auto auto 0 22px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--prime-yellow), #fff1a6);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.prime-nav-link:hover,
.sidebar-link:hover {
    color: var(--prime-yellow);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 197, 24, 0.14);
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(245, 197, 24, 0.08);
}

.prime-nav-link:hover::before,
.sidebar-link:hover::before {
    left: 120%;
}

.prime-nav-link:hover::after,
.sidebar-link:hover::after {
    width: calc(100% - 44px);
}

.prime-sidebar-extra {
    margin-top: auto;
    padding: 22px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(245, 197, 24, 0.12);
}

.prime-sidebar-tagline {
    margin: 0;
    color: var(--prime-grey);
    font-size: 0.98rem;
    line-height: 1.8;
}

.prime-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 24px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(245, 197, 24, 0.2);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(245, 197, 24, 0.08);
    color: var(--prime-white);
    position: relative;
    overflow: hidden;
    transition: var(--prime-transition);
}

.prime-whatsapp-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(
        120deg,
        transparent 10%,
        rgba(255, 255, 255, 0.12) 48%,
        transparent 85%
    );
    transition: transform 0.7s ease;
}

.prime-whatsapp-cta:hover::before {
    transform: translateX(110%);
}

.prime-whatsapp-cta:hover {
    color: var(--prime-white);
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.45);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.36),
        0 0 36px rgba(245, 197, 24, 0.14);
}

.prime-whatsapp-cta-text {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.prime-whatsapp-cta-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(245, 197, 24, 0.16);
    border: 1px solid rgba(245, 197, 24, 0.22);
    color: var(--prime-yellow);
    font-size: 1.4rem;
    transition: var(--prime-transition);
}

.prime-whatsapp-cta:hover .prime-whatsapp-cta-icon {
    transform: translateX(4px) rotate(-8deg);
    background: rgba(245, 197, 24, 0.22);
}

/* =========================
   DEMO SECTIONS
========================= */
.demo-section {
    padding: 110px 0;
    background: #080808;
}

.section-dark {
    background: #111111;
}

.demo-section h2,
.prime-footer h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 0;
}

.prime-footer {
    padding: 100px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .prime-floating-header {
        top: 18px;
    }

    .prime-logo-image {
        height: 110px;
        max-width: 300px;
    }

    .prime-logo-mark {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 14px;
        font-size: 1.1rem;
    }

    .prime-logo-text {
        font-size: 0.98rem;
    }

    .prime-menu-text {
        display: none;
    }

    .prime-menu-toggle {
        padding: 14px 15px;
    }

    .prime-sidebar {
        padding: 24px 18px 24px;
    }

    .prime-nav-link,
    .sidebar-link {
        font-size: 0.96rem;
        padding: 16px 18px;
    }

    .hero-section {
        padding-top: 190px;
    }
}

@media (max-width: 575.98px) {
    .prime-logo {
        gap: 10px;
    }

    .prime-logo-image {
        height: 90px;
        max-width: 240px;
    }

    .prime-logo-text {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
    }

    .prime-menu-toggle {
        border-radius: 16px;
    }

    .prime-sidebar-top {
        margin-bottom: 28px;
    }

    .prime-sidebar-close {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 50%;
    }

    .hero-section {
        padding-top: 165px;
        padding-bottom: 90px;
    }
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
    padding-top: 160px;
    padding-bottom: 90px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-glow {
    position: absolute;
    right: -140px;
    top: 12%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.22) 0%, rgba(245, 197, 24, 0.10) 35%, transparent 72%);
    filter: blur(28px);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    width: 100%;
    color: #fff;
}

.hero-title {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 500;
    color: #f5c518;
    letter-spacing: 0.04em;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-glow {
        width: 320px;
        height: 320px;
        right: -100px;
        top: 10%;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 92vh;
        padding-top: 135px;
        padding-bottom: 70px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    position: relative;
    padding: 120px 0 130px;
    background:
        radial-gradient(circle at left top, rgba(245, 197, 24, 0.06), transparent 28%),
        radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.03), transparent 24%),
        linear-gradient(180deg, #030303 0%, #080808 100%);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 70px;
}

/* =========================
   IMAGE COLUMN
========================= */
.about-image-column {
    position: relative;
}

.about-image-frame {
    position: relative;
    min-height: 620px;
    border-radius: 28px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
}

/* black blending shadows left and right */
.about-image-frame::before,
.about-image-frame::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.about-image-frame::before {
    left: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.82) 35%, transparent 100%);
}

.about-image-frame::after {
    right: 0;
    background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0.82) 35%, transparent 100%);
}

/* subtle top/bottom cinematic fade */
.about-image-frame .about-image-frame-top,
.about-image-frame .about-image-frame-bottom {
    display: none;
}

.about-image-frame::marker {
    display: none;
}

/* =========================
   TEXT COLUMN
========================= */
.about-content {
    max-width: 620px;
}

.about-kicker {
    margin: 0 0 18px;
    color: var(--prime-yellow);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-title {
    margin: 0 0 24px;
    font-size: clamp(2.4rem, 4.8vw, 4.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.about-text {
    margin: 0 0 22px;
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.78);
    max-width: 590px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* optional gold accent line under subtitle feel */
.about-content::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin-top: 30px;
    background: linear-gradient(90deg, var(--prime-yellow), rgba(245, 197, 24, 0.12));
    border-radius: 999px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
    .about-wrapper {
        gap: 50px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 560px;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 95px 0 105px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 520px;
    }

    .about-image-frame::before,
    .about-image-frame::after {
        width: 95px;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 80px 0 90px;
    }

    .about-kicker {
        font-size: 0.76rem;
        letter-spacing: 0.13em;
        margin-bottom: 14px;
    }

    .about-title {
        margin-bottom: 18px;
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .about-text {
        font-size: 0.97rem;
        line-height: 1.85;
        margin-bottom: 18px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 420px;
        border-radius: 22px;
    }

    .about-image-frame::before,
    .about-image-frame::after {
        width: 68px;
    }
}

/* =========================
   WHY CHOOSE US
========================= */
.why-choose-section {
    position: relative;
    padding: 60px 0 120px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.06), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 20%),
        linear-gradient(180deg, #020202 0%, #080808 100%);
}

/* centered heading outside */
.why-choose-head {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-choose-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.why-choose-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.3rem, 4.5vw, 4.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.why-choose-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.9;
}

/* shell */
.why-choose-shell {
    position: relative;
    padding: 32px;
    border-radius: 32px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.why-choose-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.08), transparent 24%);
    pointer-events: none;
}

.why-choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 22px;
}

/* main cards */
.why-card {
    position: relative;
    min-height: 220px;
    padding: 28px 26px 26px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.018) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.10), transparent 34%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.20);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-large {
    grid-row: 1 / span 2;
    min-height: 470px;
}

/* image card */
.why-card-image {
    padding: 0;
    background: #0b0b0b;
}

.why-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.22) 100%);
    z-index: 1;
}

.why-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 26px 26px;
}

/* icon */
.why-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.20), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(245, 197, 24, 0.20);
    color: var(--prime-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow:
        0 10px 24px rgba(245, 197, 24, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.why-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.85;
}

/* responsive */
@media (max-width: 1199.98px) {
    .why-feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 90px 0 100px;
    }

    .why-choose-head {
        margin-bottom: 36px;
    }

    .why-choose-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .why-card-large {
        grid-row: auto;
        min-height: 340px;
    }

    .why-card {
        min-height: auto;
    }

    .why-feature-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 75px 0 85px;
    }

    .why-choose-shell {
        padding: 16px;
        border-radius: 22px;
    }

    .why-choose-kicker {
        font-size: 0.75rem;
        letter-spacing: 0.14em;
    }

    .why-card,
    .why-card-content {
        padding: 22px 18px 20px;
    }

    .why-card-large {
        min-height: 300px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .why-feature-mini {
        padding: 18px 16px;
        border-radius: 18px;
    }
}

.why-feature-section {
    padding: 40px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.04), transparent 24%),
        linear-gradient(180deg, #040404 0%, #080808 100%);
}

.why-feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-feature-mini {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-feature-mini:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 197, 24, 0.18);
}

.why-feature-mini-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(245, 197, 24, 0.18);
    color: var(--prime-yellow);
    font-size: 1.05rem;
    font-weight: 700;
}

.why-feature-mini-text h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.why-feature-section {
    padding: 30px 0 30px !important;
}

.about-section {
    padding: 50px 0 110px !important;
}

.why-feature-mini-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .why-feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .why-feature-row {
        grid-template-columns: 1fr;
    }

    .why-feature-section {
        padding: 30px 0 70px;
    }

    .why-feature-mini {
        padding: 18px 16px;
        border-radius: 18px;
    }
}

/* =========================
   FLEET SECTION
========================= */
.fleet-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.05), transparent 24%),
        linear-gradient(180deg, #030303 0%, #080808 100%);
}

.fleet-head {
    max-width: 860px;
    margin: 0 auto 50px;
}

.fleet-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fleet-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.fleet-subtitle {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fleet-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.fleet-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.06);
}

.fleet-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.32) 100%);
}

.fleet-card-body {
    padding: 18px 18px 20px;
}

.fleet-card-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fleet-price-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.20);
    color: var(--prime-yellow);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* =========================
   FLEET MODAL
========================= */
.fleet-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fleet-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fleet-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fleet-modal-content {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 32px));
    margin: 60px auto;
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 197, 24, 0.08), transparent 25%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.fleet-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.fleet-modal-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2.5px;
    background: var(--prime-yellow);
    border-radius: 10px;
}

.fleet-modal-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fleet-modal-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fleet-modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.fleet-modal-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    min-height: 480px;
}

.fleet-modal-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.fleet-modal-kicker {
    margin: 0 0 10px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fleet-modal-info h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.fleet-modal-price {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.20);
    color: var(--prime-yellow);
    font-size: 0.95rem;
    font-weight: 700;
}

.fleet-modal-description {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.9;
}

.fleet-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--prime-yellow) 0%, #ffd84d 100%);
    color: #050505;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-modal-btn:hover {
    color: #050505;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(245, 197, 24, 0.22);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-modal-grid {
        grid-template-columns: 1fr;
    }

    .fleet-modal-image-wrap,
    .fleet-modal-image-wrap img {
        min-height: 340px;
    }
}

@media (max-width: 575.98px) {
    .fleet-section {
        padding: 85px 0 95px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-card-image {
        height: 240px;
    }

    .fleet-modal-content {
        width: min(100% - 20px, 1100px);
        margin: 20px auto;
        padding: 18px;
        border-radius: 22px;
    }

    .fleet-modal-close {
        width: 46px;
        height: 46px;
        top: 10px;
        right: 10px;
    }

    .fleet-modal-image-wrap,
    .fleet-modal-image-wrap img {
        min-height: 260px;
    }
}

/* =========================
   SERVICES + DESTINATIONS
========================= */
.services-destinations-section {
    position: relative;
    padding: 60px 0 120px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.05), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 20%),
        linear-gradient(180deg, #030303 0%, #090909 100%);
}

.services-destinations-head {
    max-width: 900px;
    margin: 0 auto 48px;
}

.services-destinations-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-destinations-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.services-destinations-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.services-destinations-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.sd-panel {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.sd-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.08), transparent 26%);
    pointer-events: none;
}

.sd-panel-top {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.sd-label {
    margin: 0 0 10px;
    color: var(--prime-yellow);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sd-title {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.sd-list {
    display: grid;
    gap: 18px;
}

.sd-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sd-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 197, 24, 0.18);
}

.sd-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(245, 197, 24, 0.18);
    color: var(--prime-yellow);
    font-size: 1.1rem;
    font-weight: 700;
}

.sd-text h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
}

.sd-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    line-height: 1.8;
}

/* destinations */
.destination-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.destination-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.destination-item:hover {
    transform: translateX(6px);
    border-color: rgba(245, 197, 24, 0.18);
}

.destination-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: var(--prime-yellow);
    box-shadow: 0 0 14px rgba(245, 197, 24, 0.35);
}

.destination-note {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    padding: 20px 18px;
    border-radius: 20px;
    background: rgba(245, 197, 24, 0.06);
    border: 1px solid rgba(245, 197, 24, 0.12);
}

.destination-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.8;
}

/* responsive */
@media (max-width: 991.98px) {
    .services-destinations-section {
        padding: 90px 0 100px;
    }

    .services-destinations-grid {
        grid-template-columns: 1fr;
    }

    .sd-panel {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .services-destinations-section {
        padding: 75px 0 85px;
    }

    .services-destinations-head {
        margin-bottom: 34px;
    }

    .sd-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .sd-title {
        font-size: 1.6rem;
    }

    .sd-card {
        padding: 16px;
        border-radius: 18px;
    }

    .sd-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .destination-item {
        padding: 14px 16px;
        font-size: 0.96rem;
    }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
    position: relative;
    padding: 60px 0 130px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.06), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 20%),
        linear-gradient(180deg, #020202 0%, #080808 100%);
    overflow: hidden;
}

.testimonials-head {
    max-width: 900px;
    margin: 0 auto 58px;
}

.testimonials-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.testimonials-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.3rem, 4.8vw, 4.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.testimonials-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

/* main layout */
.testimonials-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

/* featured large photo */
.testimonial-feature-photo {
    position: relative;
    min-height: 640px;
    border-radius: 34px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.testimonial-feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
}

.testimonial-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.65) 72%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.10) 0%, transparent 50%, rgba(0, 0, 0, 0.18) 100%);
}

.testimonial-feature-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.42);
    border: 1px solid rgba(245, 197, 24, 0.18);
    color: var(--prime-yellow);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonial-feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 34px 32px 30px;
}

.testimonial-label {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonial-feature-content blockquote {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: -0.02em;
    max-width: 760px;
}

.testimonial-person strong {
    display: block;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-person span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
}

/* right column stacked photo testimonials */
.testimonial-side-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.testimonial-photo-small {
    position: relative;
    min-height: 308px;
    border-radius: 28px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.testimonial-photo-small img {
    width: 100%;
    height: 100%;
    min-height: 308px;
    object-fit: cover;
    display: block;
}

.testimonial-small-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.60) 68%, rgba(0, 0, 0, 0.82) 100%);
}

.testimonial-small-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px 22px 22px;
}

.testimonial-mini-tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 197, 24, 0.10);
    border: 1px solid rgba(245, 197, 24, 0.16);
    color: var(--prime-yellow);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-small-content p {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-small-content span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
}

/* bottom strip */
.testimonials-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonials-strip-item {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.testimonials-strip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--prime-yellow);
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.28);
}

/* responsive */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 95px 0 105px;
    }

    .testimonials-showcase {
        grid-template-columns: 1fr;
    }

    .testimonial-feature-photo,
    .testimonial-feature-photo img {
        min-height: 520px;
    }

    .testimonial-side-stack {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    .testimonial-photo-small,
    .testimonial-photo-small img {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-section {
        padding: 80px 0 90px;
    }

    .testimonials-head {
        margin-bottom: 36px;
    }

    .testimonial-feature-photo,
    .testimonial-feature-photo img {
        min-height: 430px;
        border-radius: 24px;
    }

    .testimonial-photo-small,
    .testimonial-photo-small img {
        min-height: 240px;
        border-radius: 22px;
    }

    .testimonial-feature-content {
        padding: 24px 18px 20px;
    }

    .testimonial-small-content {
        padding: 20px 16px 18px;
    }

    .testimonial-feature-badge {
        top: 14px;
        right: 14px;
        padding: 8px 12px;
    }
}

/* =========================
   TESTIMONIAL HEADING
========================= */
.testimonials-head {
    position: relative;
    max-width: 950px;
    margin: 0 auto 26px;
}

.testimonials-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.testimonials-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.3rem, 4.8vw, 4.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.testimonials-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

/* =========================
   BUBBLE ROW BELOW HEADING
========================= */
.testimonials-bubble-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 46px;
}

.testimonials-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(245, 197, 24, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.testimonials-bubble::before {
    content: "“";
    margin-right: 8px;
    color: var(--prime-yellow);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.testimonials-bubble:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 24, 0.28);
    background: rgba(245, 197, 24, 0.08);
}

/* remove old absolute floating behavior */
.bubble-one,
.bubble-two,
.bubble-three,
.bubble-four,
.bubble-five {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    animation: none !important;
}

/* if old floating wrapper is still around, neutralize it */
.testimonials-head .testimonials-bubble {
    position: static;
}

/* responsive */
@media (max-width: 991.98px) {
    .testimonials-bubble-row {
        gap: 12px;
        margin-bottom: 36px;
    }

    .testimonials-bubble {
        padding: 14px 18px;
        font-size: 0.92rem;
    }
}

@media (max-width: 575.98px) {
    .testimonials-head {
        margin-bottom: 20px;
    }

    .testimonials-bubble-row {
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .testimonials-bubble {
        padding: 12px 16px;
        font-size: 0.88rem;
    }
}

/* =========================
   CTA SHOWCASE
========================= */
.cta-showcase-section {
    padding: 60px 0 120px;
    background: linear-gradient(180deg, #030303 0%, #080808 100%);
}

.cta-showcase-shell {
    background: #000000;
    border-radius: 32px;
    padding: 28px 28px 34px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cta-showcase-topline {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin-bottom: 28px;
}

.cta-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.45fr;
    grid-template-areas:
        "title title large"
        "smallrow smallrow large"
        "lower lower lower";
    gap: 18px 18px;
    align-items: start;
}

/* =========================
   TITLE
========================= */
.cta-showcase-title-wrap {
    grid-area: title;
    max-width: 620px;
}

.cta-showcase-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 5.2vw, 5.2rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

/* =========================
   LARGE IMAGE
========================= */
.cta-showcase-large-card {
    grid-area: large;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    min-height: 520px;
}

.cta-showcase-large-card img {
    width: 100%;
    height: 90%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

/* =========================
   SMALL IMAGE ROW
========================= */
.cta-showcase-small-row {
    grid-area: smallrow;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-self: end;
}

.cta-showcase-small-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    min-height: 220px;
}

.cta-showcase-small-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.cta-showcase-large-card::after,
.cta-showcase-small-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

/* =========================
   TAGS
========================= */
.cta-showcase-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.cta-showcase-tag-large {
    left: 16px;
    bottom: 16px;
}

/* =========================
   LOWER ROW
========================= */
.cta-showcase-lower-row {
    grid-area: lower;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr 0.8fr;
    gap: 28px;
    align-items: center;
    padding-top: 10px;
}

.cta-showcase-subtitle-wrap {
    max-width: 320px;
}

.cta-showcase-subtitle {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.cta-showcase-text-wrap {
    max-width: 620px;
}

.cta-showcase-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.85;
}

/* =========================
   BUTTON
========================= */
.cta-showcase-action-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 64px;
    padding: 16px 30px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(245, 197, 24, 0.22);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 10px 28px rgba(245, 197, 24, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.cta-showcase-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(245, 197, 24, 0.42);
    box-shadow:
        0 16px 36px rgba(245, 197, 24, 0.14),
        0 0 0 1px rgba(245, 197, 24, 0.12);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
    .cta-showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title large"
            "smallrow large"
            "lower lower";
    }

    .cta-showcase-lower-row {
        grid-template-columns: 1fr 1.2fr 0.8fr;
    }
}

@media (max-width: 991.98px) {
    .cta-showcase-shell {
        border-radius: 26px;
        padding: 22px 22px 28px;
    }

    .cta-showcase-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "large"
            "smallrow"
            "lower";
    }

    .cta-showcase-large-card,
    .cta-showcase-large-card img {
        min-height: 320px;
    }

    .cta-showcase-small-card,
    .cta-showcase-small-card img {
        min-height: 220px;
    }

    .cta-showcase-lower-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-showcase-action-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .cta-showcase-section {
        padding: 85px 0 95px;
    }

    .cta-showcase-shell {
        border-radius: 22px;
        padding: 16px 16px 22px;
    }

    .cta-showcase-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .cta-showcase-small-row {
        grid-template-columns: 1fr;
    }

    .cta-showcase-large-card,
    .cta-showcase-large-card img {
        min-height: 260px;
        border-radius: 22px;
    }

    .cta-showcase-small-card,
    .cta-showcase-small-card img {
        min-height: 220px;
        border-radius: 20px;
    }

    .cta-showcase-btn {
        min-width: 100%;
    }
}

/* =========================
   FOOTER
========================= */
.prime-footer {
    position: relative;
    padding: 90px 0 28px;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 24, 0.05), transparent 24%),
        linear-gradient(180deg, #030303 0%, #080808 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prime-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 34px;
    padding-bottom: 34px;
}

.prime-footer-col {
    min-width: 0;
}

.prime-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.prime-footer-logo {
    width: auto;
    height: 78px;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.prime-footer-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.97rem;
    line-height: 1.9;
    max-width: 340px;
}

.prime-footer-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.prime-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prime-footer-links li {
    margin-bottom: 12px;
}

.prime-footer-links a,
.prime-footer-contact-item a,
.prime-footer-socials a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.prime-footer-links a:hover,
.prime-footer-contact-item a:hover,
.prime-footer-socials a:hover {
    color: var(--prime-yellow);
}

.prime-footer-contact-item {
    margin-bottom: 16px;
}

.prime-footer-contact-item p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.8;
}

.prime-footer-contact-label {
    display: inline-block;
    color: var(--prime-yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.prime-footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prime-footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.prime-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    line-height: 1.7;
}

.prime-footer-separator {
    margin: 0 10px;
    opacity: 0.4;
}

.prime-footer-credit {
    color: var(--prime-yellow);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prime-footer-credit:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(245, 197, 24, 0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .prime-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }

    .prime-footer-logo {
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .prime-footer {
        padding: 75px 0 24px;
    }

    .prime-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 18px;
    }

    .prime-footer-logo {
        height: 60px;
        max-width: 200px;
    }

    .prime-footer-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .prime-footer-text,
    .prime-footer-contact-item p,
    .prime-footer-links a,
    .prime-footer-contact-item a,
    .prime-footer-socials a {
        font-size: 0.92rem;
    }
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */
/* =========================
   FOOTER SOCIAL ICONS (FIXED HORIZONTAL)
========================= */
.prime-footer-socials {
    display: flex;
    flex-direction: row; /* FORCE horizontal */
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.prime-footer-social-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(245, 197, 24, 0.18);
    color: var(--prime-yellow);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prime-footer-social-icon:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.38);
    box-shadow:
        0 12px 28px rgba(245, 197, 24, 0.12),
        0 0 0 1px rgba(245, 197, 24, 0.10);
}

/* =========================
   FLOATING WHATSAPP (HOVER TEXT)
========================= */
.prime-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10050;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(245, 197, 24, 0.20), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(245, 197, 24, 0.22);
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(245, 197, 24, 0.08);
    transition: all 0.3s ease;
}

/* icon always visible */
.prime-floating-whatsapp-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #f5c518 0%, #ffd84d 100%);
    color: #050505;
    font-size: 1.5rem;
    box-shadow:
        0 10px 24px rgba(245, 197, 24, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* TEXT HIDDEN BY DEFAULT */
.prime-floating-whatsapp-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0;
    transition: all 0.3s ease;
}

/* SHOW TEXT ON HOVER */
.prime-floating-whatsapp:hover {
    padding: 10px 16px 10px 10px;
}

.prime-floating-whatsapp:hover .prime-floating-whatsapp-text {
    max-width: 160px;
    opacity: 1;
    margin-left: 10px;
}

/* hover lift */
.prime-floating-whatsapp:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 24, 0.42);
}

/* mobile: always icon only */
@media (max-width: 575.98px) {
    .prime-floating-whatsapp-text {
        display: none !important;
    }
}

/* mobile */
@media (max-width: 575.98px) {
    .prime-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 10px;
        border-radius: 50%;
    }

    .prime-floating-whatsapp-text {
        display: none;
    }

    .prime-floating-whatsapp-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.3rem;
    }
}

/* =========================
   UGANDA COVERAGE SECTION
========================= */
.uganda-coverage-section {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #050505;
}

.uganda-coverage-map-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.uganda-coverage-map-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uganda-coverage-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.48) 68%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.uganda-coverage-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 20px;
    padding: 90px 6vw;
}

/* left text */
.uganda-coverage-content {
    max-width: 760px;
}

.uganda-coverage-kicker {
    margin: 0 0 14px;
    color: var(--prime-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.uganda-coverage-title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 760px;
}

.uganda-coverage-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.95;
    max-width: 640px;
}

/* right car */
.uganda-coverage-car-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =========================
   RIGHT CAR (BIGGER + CLEAN)
========================= */
.uganda-coverage-car {
    width: min(120%, 900px); /* bigger than container */
    max-width: 950px;
    height: auto;
    display: block;
    object-fit: contain;

    /* push slightly out for premium look */
    transform: translateY(24px) translateX(40px);

    filter:
        drop-shadow(0 26px 48px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 40px rgba(245, 197, 24, 0.12));
}

/* responsive */
@media (max-width: 991.98px) {
    .uganda-coverage-section,
    .uganda-coverage-inner {
        min-height: auto;
    }

    .uganda-coverage-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 80px 24px;
        text-align: center;
    }

    .uganda-coverage-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .uganda-coverage-title,
    .uganda-coverage-text {
        max-width: 100%;
    }

    .uganda-coverage-car-wrap {
        justify-content: center;
    }

    .uganda-coverage-car {
        max-width: 620px;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .uganda-coverage-inner {
        padding: 70px 16px;
    }

    .uganda-coverage-title {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .uganda-coverage-text {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .uganda-coverage-car {
        max-width: 100%;
    }
}