/* =========================================
   SHINY SOLUTIONS — PUBLIC CSS
   Complete & Final Version
   ========================================= */

/* ══════════════════════════════════════════
   SMOOTH SCROLL FOUNDATION
   ══════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Custom Scrollbar ────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0D1B2A; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #006FFF 0%, #00C9A7 100%);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0050C8 0%, #00a88c 100%);
}
* { scrollbar-width: thin; scrollbar-color: #006FFF #0D1B2A; }

/* ── Scroll Progress Bar ─────────────────── */
#scrollProgressBar {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, #006FFF 0%, #00C9A7 50%, #FFB703 100%);
    background-size: 200% 100%;
    z-index: 99998;
    pointer-events: none;
    border-radius: 0 3px 3px 0;
    transition: width 0.08s linear;
    animation: progressShimmer 2s linear infinite;
}
#scrollProgressBar::after {
    content: '';
    position: absolute;
    right: -1px; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: #00C9A7; border-radius: 50%;
    box-shadow: 0 0 6px #00C9A7, 0 0 12px rgba(0,201,167,0.6);
}
@keyframes progressShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Back to Top ─────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #006FFF, #00C9A7);
    border: none; border-radius: 50%;
    color: white; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 9990;
    box-shadow: 0 6px 20px rgba(0,111,255,0.35);
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease,
                visibility 0.3s ease,
                transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease;
    outline: none;
}
#backToTop.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
#backToTop:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 28px rgba(0,111,255,0.5);
}
#backToTop:active { transform: scale(0.95); }

/* ── Scroll Reveal ───────────────────────── */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="down"]  { transform: translateY(-36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: translate(0) scale(1); }

[data-delay="100"]  { transition-delay: 0.10s !important; }
[data-delay="200"]  { transition-delay: 0.20s !important; }
[data-delay="300"]  { transition-delay: 0.30s !important; }
[data-delay="400"]  { transition-delay: 0.40s !important; }
[data-delay="500"]  { transition-delay: 0.50s !important; }
[data-delay="600"]  { transition-delay: 0.60s !important; }

/* ── GPU acceleration ────────────────────── */
.ss-navbar,
.ba-card, .blog-card, .team-card, .stat-card,
.service-card, .testimonial-card, .gallery-item,
.location-list-card, .differentiator-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

img { display: block; max-width: 100%; }
img[loading="lazy"] { min-height: 1px; }

a, button, .btn, .nav-link, .card, .gallery-filter-btn {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════ */
body.preloading { overflow: hidden; }

#preloader {
    position: fixed; inset: 0;
    z-index: 99999; background: #0D1B2A;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
        rgba(0,111,255,0.12) 0%, transparent 70%);
    animation: preloaderBg 4s ease-in-out infinite alternate;
}
@keyframes preloaderBg {
    0%   { transform: scale(1) translateY(0); opacity: 0.6; }
    100% { transform: scale(1.3) translateY(-30px); opacity: 1; }
}

.preloader-particles { position: absolute; inset: 0; overflow: hidden; }
.preloader-particles span {
    position: absolute; display: block; border-radius: 50%;
    animation: preloaderFloat linear infinite; opacity: 0;
}
.preloader-particles span:nth-child(1) { width:6px;height:6px;background:#00C9A7;left:15%;top:80%;animation-duration:8s;animation-delay:0s; }
.preloader-particles span:nth-child(2) { width:4px;height:4px;background:#006FFF;left:25%;top:90%;animation-duration:6s;animation-delay:1s; }
.preloader-particles span:nth-child(3) { width:8px;height:8px;background:rgba(0,201,167,0.5);left:70%;top:85%;animation-duration:9s;animation-delay:0.5s; }
.preloader-particles span:nth-child(4) { width:3px;height:3px;background:#FFB703;left:85%;top:75%;animation-duration:7s;animation-delay:2s; }
.preloader-particles span:nth-child(5) { width:5px;height:5px;background:#006FFF;left:40%;top:88%;animation-duration:10s;animation-delay:0.8s; }
.preloader-particles span:nth-child(6) { width:4px;height:4px;background:#00C9A7;left:55%;top:82%;animation-duration:7.5s;animation-delay:1.5s; }
.preloader-particles span:nth-child(7) { width:6px;height:6px;background:rgba(255,183,3,0.6);left:10%;top:70%;animation-duration:8.5s;animation-delay:3s; }
.preloader-particles span:nth-child(8) { width:3px;height:3px;background:#006FFF;left:90%;top:60%;animation-duration:6.5s;animation-delay:2.5s; }
.preloader-particles span:nth-child(9) { width:5px;height:5px;background:#00C9A7;left:60%;top:92%;animation-duration:9.5s;animation-delay:1.2s; }

@keyframes preloaderFloat {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.preloader-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0;
}

.preloader-logo {
    position: relative; width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}
.preloader-logo-ring {
    position: absolute; border-radius: 50%; border: 2px solid transparent;
}
.ring-outer {
    width:100px;height:100px;
    border-top-color:#006FFF; border-right-color:rgba(0,111,255,0.2);
    border-bottom-color:rgba(0,111,255,0.1); border-left-color:rgba(0,111,255,0.2);
    animation: preloaderSpin 2s linear infinite;
}
.ring-middle {
    width:76px;height:76px;
    border-top-color:rgba(0,201,167,0.3); border-right-color:#00C9A7;
    border-bottom-color:rgba(0,201,167,0.3); border-left-color:rgba(0,201,167,0.1);
    animation: preloaderSpin 1.5s linear infinite reverse;
}
.ring-inner {
    width:52px;height:52px;
    border-top-color:rgba(255,183,3,0.6); border-right-color:rgba(255,183,3,0.2);
    border-bottom-color:rgba(255,183,3,0.1); border-left-color:rgba(255,183,3,0.3);
    animation: preloaderSpin 1s linear infinite;
}
@keyframes preloaderSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.preloader-logo-icon {
    position: relative; z-index: 2;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #006FFF, #00C9A7);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    animation: preloaderIconPulse 2s ease-in-out infinite;
}
@keyframes preloaderIconPulse {
    0%,100% { box-shadow: 0 0 20px rgba(0,111,255,0.4), 0 0 40px rgba(0,201,167,0.15); transform: scale(1); }
    50%      { box-shadow: 0 0 40px rgba(0,111,255,0.7), 0 0 80px rgba(0,201,167,0.3); transform: scale(1.05); }
}

.preloader-brand { display:flex; align-items:center; gap:8px; margin-bottom:8px; animation: preloaderFadeUp 0.8s ease 0.3s both; }
.preloader-brand-shiny { font-family:'Sora',sans-serif; font-size:28px; font-weight:800; color:white; letter-spacing:-0.5px; }
.preloader-brand-solutions { font-family:'Sora',sans-serif; font-size:28px; font-weight:400; color:white; }

.preloader-tagline { font-size:12px; font-weight:500; color:rgba(255,255,255,0.4); letter-spacing:3px; text-transform:uppercase; margin-bottom:36px; animation: preloaderFadeUp 0.8s ease 0.5s both; }

.preloader-progress-wrap { display:flex; align-items:center; gap:12px; margin-bottom:24px; animation: preloaderFadeUp 0.8s ease 0.7s both; }
.preloader-progress-track { width:220px; height:3px; background:rgba(255,255,255,0.08); border-radius:10px; overflow:visible; position:relative; }
.preloader-progress-fill { height:100%; width:0%; background:linear-gradient(90deg,#006FFF,#00C9A7); border-radius:10px; transition:width 0.3s ease; position:relative; z-index:1; }
.preloader-progress-fill::after { content:''; position:absolute; right:-1px; top:50%; transform:translateY(-50%); width:8px; height:8px; background:#00C9A7; border-radius:50%; box-shadow:0 0 10px #00C9A7, 0 0 20px rgba(0,201,167,0.5); }
.preloader-progress-glow { position:absolute; inset:-2px; border-radius:10px; background:linear-gradient(90deg,transparent,rgba(0,201,167,0.15),transparent); animation: preloaderGlowSlide 1.5s ease infinite; }
@keyframes preloaderGlowSlide { 0% { transform:translateX(-100%); } 100% { transform:translateX(400%); } }
.preloader-progress-pct { font-size:13px; font-weight:700; color:#00C9A7; min-width:36px; font-family:'Sora',sans-serif; }

.preloader-dots { display:flex; gap:6px; animation: preloaderFadeUp 0.8s ease 0.9s both; }
.preloader-dots span { width:5px; height:5px; background:rgba(255,255,255,0.3); border-radius:50%; animation: preloaderDot 1.2s ease-in-out infinite; }
.preloader-dots span:nth-child(1) { animation-delay:0s; }
.preloader-dots span:nth-child(2) { animation-delay:0.2s; }
.preloader-dots span:nth-child(3) { animation-delay:0.4s; }
@keyframes preloaderDot {
    0%,80%,100% { transform:scale(1); background:rgba(255,255,255,0.2); }
    40%          { transform:scale(1.4); background:#00C9A7; }
}
@keyframes preloaderFadeUp { 0% { opacity:0; transform:translateY(20px); } 100% { opacity:1; transform:translateY(0); } }
#preloader.exit { animation: preloaderExit 0.8s cubic-bezier(0.77,0,0.18,1) forwards; }
@keyframes preloaderExit { 0% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(-30px); } }

/* ══════════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════════ */
:root {
    --primary:      #006FFF;
    --primary-dark: #0050C8;
    --secondary:    #00C9A7;
    --accent:       #FFB703;
    --dark:         #0D1B2A;
    --mid:          #3D5A80;
    --light:        #F4F8FF;
    --white:        #FFFFFF;
    --font-display: 'Sora', sans-serif;
    --font-body:    'Inter', sans-serif;
}

* { font-family: var(--font-body); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); }
body { background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ══════════════════════════════════════════
   WORLD CLASS NAVBAR
   ══════════════════════════════════════════ */
.ss-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background: rgba(13,27,42,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}
.ss-navbar.scrolled {
    background: rgba(13,27,42,0.98);
    border-bottom-color: rgba(255,255,255,0.09);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.ss-navbar .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.ss-navbar-spacer { height: 72px; }
.ss-nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 0;
}

/* ── Logo ────────────────────────────────── */
.ss-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 32px;
}
.ss-logo-mark {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 4px 18px rgba(0,111,255,0.45);
    flex-shrink: 0;
}
.ss-logo-mark svg { width: 36px; height: 36px; }
.ss-logo:hover .ss-logo-mark {
    transform: scale(1.12) rotate(-6deg);
}
.ss-logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}
.ss-logo-shiny {
    font-family: 'Sora', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}
.ss-logo-solutions {
    font-family: 'Sora', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

/* ── Desktop Nav Links ───────────────────── */
.ss-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}
.ss-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    border-radius: 8px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1px;
}
.ss-nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.07);
}
.ss-nav-link.active {
    color: #00C9A7;
    background: rgba(0,201,167,0.09);
}
.ss-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: linear-gradient(90deg, #006FFF, #00C9A7);
    border-radius: 10px;
}
.ss-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ── Dropdown ────────────────────────────── */
.ss-dropdown-wrap { position: relative; }

.ss-dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%; left: -20px; right: -20px;
    height: 20px;
    background: transparent;
    z-index: 99;
}
.ss-dropdown-wrap:hover .ss-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.ss-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 460px;
    background: #0d1f35;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    box-shadow: 0 28px 64px rgba(0,0,0,0.5),
                0 0 0 1px rgba(0,111,255,0.07),
                inset 0 1px 0 rgba(255,255,255,0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transition: opacity 0.22s ease,
                transform 0.22s ease,
                visibility 0.22s ease;
}
.ss-dropdown::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: #0d1f35;
    border-left: 1px solid rgba(255,255,255,0.09);
    border-top: 1px solid rgba(255,255,255,0.09);
    border-radius: 3px;
}
.ss-dropdown-wrap:hover .ss-dropdown,
.ss-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.ss-dropdown-wrap:not(:hover) .ss-dropdown {
    transition-delay: 0.18s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px);
}

/* Dropdown inner content */
.ss-dropdown-inner { padding: 10px; }
.ss-dropdown-header {
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 8px;
}
.ss-dropdown-header span {
    display: block;
    font-size: 10px; font-weight: 700;
    color: #00C9A7; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 3px;
}
.ss-dropdown-header p {
    font-size: 12px; color: rgba(255,255,255,0.35); margin: 0;
}
.ss-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.ss-dropdown-item {
    display: flex; align-items: flex-start;
    gap: 11px; padding: 11px 12px;
    border-radius: 12px; text-decoration: none;
    transition: background 0.18s ease;
}
.ss-dropdown-item:hover { background: rgba(0,111,255,0.12); }
.ss-dropdown-item:hover .ss-dropdown-item-icon {
    background: linear-gradient(135deg, #006FFF, #00C9A7);
    color: white; transform: scale(1.08);
}
.ss-dropdown-item-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #00C9A7;
    transition: all 0.2s ease; flex-shrink: 0;
}
.ss-dropdown-item-text span {
    display: block; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.88); margin-bottom: 2px; line-height: 1.3;
}
.ss-dropdown-item-text small {
    font-size: 11px; color: rgba(255,255,255,0.35);
    line-height: 1.4; display: block;
}
.ss-dropdown-footer {
    padding: 10px 14px 6px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 8px; display: flex; justify-content: flex-end;
}
.ss-dropdown-all {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: #006FFF;
    text-decoration: none; padding: 6px 12px;
    border-radius: 8px; transition: all 0.2s ease;
}
.ss-dropdown-all:hover { color: #00C9A7; background: rgba(0,111,255,0.08); }

/* ── Right Actions ───────────────────────── */
.ss-nav-actions {
    display: flex; align-items: center;
    gap: 8px; margin-left: auto; flex-shrink: 0;
}
.ss-phone-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease; white-space: nowrap;
}
.ss-phone-btn i { color: #00C9A7; font-size: 13px; }
.ss-phone-btn:hover {
    background: rgba(255,255,255,0.1); color: white;
    border-color: rgba(255,255,255,0.2);
}

/* Mobile call icon button */
.ss-call-icon-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.25);
    color: #00C9A7; font-size: 17px;
    align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease; flex-shrink: 0;
}
.ss-call-icon-btn:hover {
    background: #00C9A7; border-color: #00C9A7;
    color: white; transform: scale(1.05);
}

.ss-quote-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 10px;
    background: linear-gradient(135deg, #006FFF, #0050C8);
    color: white; font-size: 14px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0,111,255,0.35);
    position: relative; overflow: hidden;
}
.ss-quote-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.2s ease;
}
.ss-quote-btn:hover {
    color: white; transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,111,255,0.5);
}
.ss-quote-btn:hover::before { opacity: 1; }
.ss-quote-btn i { font-size: 14px; }

/* ── Mobile Toggle ───────────────────────── */
.ss-mobile-toggle {
    display: none;
    flex-direction: column; justify-content: center;
    align-items: flex-end; gap: 5px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 11px; cursor: pointer;
    padding: 11px; margin-left: 10px;
    transition: all 0.2s ease; flex-shrink: 0;
}
.ss-mobile-toggle span {
    display: block; height: 2px;
    background: white; border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: right center;
}
.ss-mobile-toggle span:nth-child(1) { width: 20px; }
.ss-mobile-toggle span:nth-child(2) { width: 14px; }
.ss-mobile-toggle span:nth-child(3) { width: 17px; }
.ss-mobile-toggle:hover { background: rgba(255,255,255,0.12); }
.ss-mobile-toggle.open span:nth-child(1) { transform: rotate(-45deg); width: 20px; }
.ss-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.ss-mobile-toggle.open span:nth-child(3) { transform: rotate(45deg); width: 20px; }

/* ── Mobile Menu ─────────────────────────── */
.ss-mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #08172a;
    border-top: 1px solid rgba(255,255,255,0.07);
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
    z-index: 8999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.ss-mobile-menu.open {
    max-height: 100svh; overflow-y: auto;
}
.ss-mobile-menu-inner { padding: 14px 18px 28px; }
.ss-mobile-links {
    display: flex; flex-direction: column; gap: 3px; margin-bottom: 18px;
}
.ss-mobile-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px; border-radius: 12px;
    color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 500;
    text-decoration: none; background: none; border: none;
    cursor: pointer; width: 100%; text-align: left;
    transition: all 0.2s ease; font-family: 'Inter', sans-serif;
    justify-content: space-between;
}
.ss-mobile-link:hover { color: white; background: rgba(255,255,255,0.06); }
.ss-mobile-link.active { color: #00C9A7; background: rgba(0,201,167,0.08); }
.ss-mobile-link i:first-child {
    color: #006FFF; font-size: 17px; width: 22px; flex-shrink: 0;
}
.ss-mobile-accordion-trigger {
    display: flex; justify-content: space-between; align-items: center;
}
.ss-mobile-accordion-trigger span {
    display: flex; align-items: center; gap: 12px;
}
.ss-mobile-chevron {
    font-size: 12px; transition: transform 0.25s ease;
    color: rgba(255,255,255,0.35) !important; width: auto !important;
}
.ss-mobile-accordion.open .ss-mobile-chevron { transform: rotate(180deg); }
.ss-mobile-accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease; padding-left: 14px;
}
.ss-mobile-accordion.open .ss-mobile-accordion-body { max-height: 500px; }
.ss-mobile-sub-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 10px;
    color: rgba(255,255,255,0.58); font-size: 14px;
    text-decoration: none; transition: all 0.2s ease;
    margin-bottom: 2px;
    border-left: 2px solid rgba(255,255,255,0.07);
}
.ss-mobile-sub-link:hover {
    color: white; background: rgba(255,255,255,0.05);
    border-left-color: #00C9A7;
}
.ss-mobile-sub-link i { font-size: 14px; color: #00C9A7; }
.ss-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.ss-mobile-phone {
    display: flex; align-items: center; justify-content: center;
    padding: 13px; border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: white; font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease;
}
.ss-mobile-phone:hover { background: rgba(255,255,255,0.1); color: white; }
.ss-mobile-phone i { color: #00C9A7; }
.ss-mobile-quote {
    display: flex; align-items: center; justify-content: center;
    padding: 14px; border-radius: 12px;
    background: linear-gradient(135deg, #006FFF, #0050C8);
    color: white; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(0,111,255,0.3);
}
.ss-mobile-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,111,255,0.45); color: white;
}
.ss-mobile-footer {
    display: flex; justify-content: center;
    gap: 18px; flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ss-mobile-footer span {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,0.32); font-weight: 500;
}
.ss-mobile-footer i { color: #00C9A7; }
.ss-mobile-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 8998; opacity: 0; visibility: hidden;
    transition: all 0.35s ease;
}
.ss-mobile-backdrop.show { opacity: 1; visibility: visible; }

/* ── Navbar Responsive ───────────────────── */
@media (min-width: 1400px) {
    .ss-logo-shiny,
    .ss-logo-solutions { font-size: 22px; }
    .ss-logo-mark { width: 44px; height: 44px; }
}
@media (max-width: 1199px) {
    .ss-phone-btn span { display: none; }
    .ss-phone-btn { padding: 9px 12px; }
    .ss-nav-link { padding: 8px 10px; font-size: 13px; }
    .ss-logo { margin-right: 18px; }
    .ss-logo-shiny, .ss-logo-solutions { font-size: 19px; }
}
@media (max-width: 991px) {
    .ss-nav-links, .ss-phone-btn { display: none; }
    .ss-mobile-toggle { display: flex; }
    .ss-call-icon-btn { display: flex; }
    .ss-quote-btn { padding: 9px 16px; font-size: 13px; }
    .ss-quote-btn span { display: inline; }
    .ss-logo { margin-right: 0; }
    .ss-logo-shiny, .ss-logo-solutions { font-size: 19px; }
}
@media (max-width: 575px) {
    .ss-quote-btn span { display: none; }
    .ss-quote-btn { padding: 9px 12px; }
    .ss-call-icon-btn { width: 38px; height: 38px; font-size: 15px; }
    .ss-logo-shiny, .ss-logo-solutions { font-size: 17px; }
    .ss-logo-mark { width: 36px; height: 36px; }
    .ss-logo-mark svg { width: 30px; height: 30px; }
    .ss-logo { gap: 9px; }
    .ss-mobile-footer { gap: 12px; }
    .ss-navbar .container { padding-left: 12px !important; padding-right: 12px !important; }
}
@media (max-width: 380px) {
    .ss-logo-shiny, .ss-logo-solutions { font-size: 15px; }
    .ss-logo-mark { width: 32px; height: 32px; }
    .ss-logo-mark svg { width: 26px; height: 26px; }
    .ss-logo { gap: 8px; }
}

/* ══════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════ */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    max-height: 960px;
    overflow: hidden;
}
.heroSwiper { width: 100%; height: 100%; }

.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 7s ease-out;
    will-change: transform;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.swiper-slide { position: relative; height: 100%; }

.hero-slide-overlay {
    position: absolute; inset: 0;
    background: rgba(13,27,42,0.72);
}

.hero-slide-content {
    position: absolute; inset: 0;
    z-index: 2;
    display: flex; align-items: center;
    padding-top: 90px; padding-bottom: 60px;
}
.hero-slide-content .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,201,167,0.15);
    border: 1px solid rgba(0,201,167,0.4);
    color: #00C9A7; padding: 8px 20px;
    border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 100%;
}
.hero-badge-dot {
    width: 8px; height: 8px; background: #00C9A7;
    border-radius: 50%; flex-shrink: 0;
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(1.4); }
}

/* Hero Heading */
.hero-heading {
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 24px;
    font-family: 'Sora', sans-serif;
    letter-spacing: -1px;
}
.hero-heading-white { color: #ffffff; display: block; }
.hero-heading-teal {
    display: block;
    background: linear-gradient(135deg, #00C9A7 0%, #006FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subheading */
.hero-subheading {
    font-size: 17px; color: rgba(255,255,255,0.78);
    line-height: 1.75; max-width: 540px;
    margin-bottom: 36px; font-weight: 400;
}

/* Hero Buttons */
.hero-btns {
    display: flex; flex-direction: row;
    align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 40px;
}
.hero-btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #006FFF, #0050C8);
    color: white; padding: 16px 32px; border-radius: 12px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,111,255,0.35);
    white-space: nowrap; border: 2px solid transparent;
}
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(0,111,255,0.5); color: white;
}
.hero-btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); color: white;
    padding: 16px 32px; border-radius: 12px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); white-space: nowrap;
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
    color: white; transform: translateY(-3px);
}

/* Trust Strip */
.hero-trust {
    display: flex; flex-direction: row;
    align-items: center; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.75); font-size: 14px;
    font-weight: 500; white-space: nowrap;
}
.hero-trust-item i { color: #00C9A7; font-size: 17px; flex-shrink: 0; }

/* Hero Pagination */
.hero-pagination {
    position: absolute !important; bottom: 32px !important;
    left: 50% !important; transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important; gap: 8px;
    align-items: center; width: auto !important;
}
.hero-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.4); border-radius: 50px;
    opacity: 1; transition: all 0.35s ease; cursor: pointer; margin: 0 !important;
}
.hero-pagination .swiper-pagination-bullet-active {
    width: 32px; background: #00C9A7; border-radius: 50px;
}

/* Nav Arrows */
.hero-nav-prev, .hero-nav-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 52px; height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px; cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
.hero-nav-prev:hover, .hero-nav-next:hover {
    background: #006FFF; border-color: #006FFF;
    transform: translateY(-50%) scale(1.08);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 32px; right: 40px; z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: rgba(255,255,255,0.45);
    font-size: 10px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
    animation: scrollAnim 2.2s ease infinite; transform-origin: top;
}
@keyframes scrollAnim {
    0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
    45%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
    55%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* Hero Responsive */
@media (min-width: 1400px) {
    .hero-heading { font-size: 82px; }
    .hero-subheading { font-size: 18px; max-width: 580px; }
}
@media (min-width: 992px) and (max-width: 1399px) {
    .hero-heading { font-size: clamp(44px, 5vw, 70px); }
}
@media (max-width: 991px) {
    .hero-nav-prev, .hero-nav-next { display: none; }
    .hero-scroll-indicator { display: none; }
    .hero-heading { font-size: clamp(38px, 6vw, 56px); }
    .hero-subheading { font-size: 15px; }
    .hero-btns { gap: 12px; }
    .hero-btn-primary, .hero-btn-secondary { padding: 14px 26px; font-size: 14px; }
    .hero-trust { gap: 20px; }
}
@media (max-width: 767px) {
    .hero-slider-section { height: 100svh; min-height: 600px; max-height: 860px; }
    .hero-slide-content { padding-top: 85px; padding-bottom: 80px; align-items: flex-start; }
    .hero-slide-content .container { padding-left: 24px !important; padding-right: 24px !important; }
    .hero-heading { font-size: clamp(32px, 8vw, 48px); letter-spacing: -0.5px; }
    .hero-subheading { font-size: 14px; line-height: 1.7; margin-bottom: 28px; max-width: 100%; }
    .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%; padding: 15px 20px; font-size: 15px;
        justify-content: center; border-radius: 12px;
    }
    .hero-trust { gap: 16px; flex-wrap: wrap; }
    .hero-trust-item { font-size: 12px; }
    .hero-badge { font-size: 12px; padding: 7px 16px; max-width: calc(100vw - 48px); }
}
@media (max-width: 480px) {
    .hero-slide-content .container { padding-left: 20px !important; padding-right: 20px !important; }
    .hero-heading { font-size: 30px; }
    .hero-badge { font-size: 11px; padding: 6px 14px; }
    .hero-subheading { font-size: 13px; }
}
@media (max-width: 380px) {
    .hero-slide-content .container { padding-left: 16px !important; padding-right: 16px !important; }
    .hero-heading { font-size: 28px; }
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════ */
.float-quote-btn {
    position: fixed; bottom: 30px; right: 24px;
    background: linear-gradient(135deg, var(--secondary), #00a88c);
    color: white; padding: 14px 22px;
    border-radius: 50px; font-weight: 700; font-size: 14px;
    text-decoration: none; z-index: 9999;
    box-shadow: 0 8px 30px rgba(0,201,167,0.4);
    transition: all 0.3s;
    animation: floatBounce 2s ease-in-out 5s 3;
}
.float-quote-btn:hover {
    transform: translateY(-4px); color: white;
    box-shadow: 0 12px 35px rgba(0,201,167,0.5);
}
.float-call-btn {
    position: fixed; bottom: 30px; left: 24px;
    background: var(--primary);
    color: white; width: 54px; height: 54px;
    border-radius: 50%; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,111,255,0.4);
    transition: all 0.3s;
}
.float-call-btn:hover { transform: translateY(-3px); color: white; }
@keyframes floatBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); }
.footer-heading { color: white; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: var(--secondary); }
.footer-bottom { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom a:hover { color: var(--secondary) !important; }
.social-btn {
    width: 36px; height: 36px; background: rgba(255,255,255,0.08);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 16px; text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); color: white; }

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════ */
.section-badge {
    display: inline-block;
    background: rgba(0,111,255,0.1); color: var(--primary);
    padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.section-badge-light { color: white; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.2; }
.section-subtitle { font-size: 17px; color: #64748b; line-height: 1.7; }
.bg-light-blue { background-color: var(--light); }
.py-6 { padding-top: 80px; padding-bottom: 80px; }
.bg-dark-section { background: linear-gradient(135deg, #0D1B2A, #1a3a5c); }

/* ══════════════════════════════════════════
   BEFORE / AFTER SLIDER
   ══════════════════════════════════════════ */
.ba-card {
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1); background: white;
}
.before-after-container {
    position: relative; overflow: hidden;
    cursor: ew-resize; aspect-ratio: 4/3; user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img {
    width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 10; margin: 0; padding: 0;
}
.ba-handle {
    position: absolute; top: 0; bottom: 0;
    left: 50%; transform: translateX(-50%);
    width: 3px; background: white; z-index: 5;
    pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.ba-handle::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px; background: white; border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 6;
}
.ba-handle::after {
    content: '↔'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px; color: #006FFF; font-weight: 700; z-index: 7;
    pointer-events: none;
}
.ba-label {
    position: absolute; top: 12px; padding: 4px 12px;
    border-radius: 50px; font-size: 12px; font-weight: 700;
    z-index: 6; pointer-events: none;
}
.ba-label-before { left: 12px; background: rgba(0,0,0,0.6); color: white; }
.ba-label-after  { right: 12px; background: #006FFF; color: white; }
.ba-caption {
    padding: 16px 20px; background: white;
    border-top: 1px solid #f1f5f9;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.ba-caption h6 { font-weight: 700; color: #0D1B2A; margin: 0; font-size: 15px; flex: 1; }
.ba-caption span { font-size: 12px; color: #94a3b8; }
.db-badge {
    background: rgba(0,201,167,0.1); color: #00a88c !important;
    padding: 2px 8px; border-radius: 50px; font-size: 11px; font-weight: 600;
}

/* ══════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, #0D1B2A, #1a3a5c);
    padding: 90px 0 70px;
}
.page-hero-title { font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: white; margin-bottom: 16px; }
.page-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.gallery-filter-btn {
    padding: 8px 22px; border-radius: 50px;
    border: 2px solid #e2e8f0; background: white;
    color: #475569; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: #006FFF; border-color: #006FFF; color: white;
}
.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item-inner { position: relative; overflow: hidden; border-radius: 12px; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info h6 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.gallery-cat-badge { background: rgba(255,255,255,0.2); color: white; padding: 2px 10px; border-radius: 50px; font-size: 11px; }
.gallery-zoom-btn {
    position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
    background: rgba(255,255,255,0.2); border: none; border-radius: 50%;
    color: white; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; backdrop-filter: blur(4px);
}
.gallery-zoom-btn:hover { background: #006FFF; }
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999; display: none;
    align-items: center; justify-content: center;
}
.gallery-lightbox.show { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-content {
    position: relative; z-index: 1; max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center;
}
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox-caption { color: white; margin-top: 12px; font-size: 15px; font-weight: 600; }
.lightbox-close {
    position: fixed; top: 20px; right: 20px; width: 44px; height: 44px;
    background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
    color: white; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
}
.lightbox-close:hover { background: #E63946; }
.lightbox-prev, .lightbox-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; background: rgba(255,255,255,0.15);
    border: none; border-radius: 50%; color: white; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: #006FFF; }

@media (max-width: 1199px) { .gallery-grid { columns: 3; } }
@media (max-width: 767px)  { .gallery-grid { columns: 2; } }
@media (max-width: 480px)  { .gallery-grid { columns: 1; } }

/* ══════════════════════════════════════════
   CTA CARDS
   ══════════════════════════════════════════ */
.cta-card {
    background: linear-gradient(135deg, #006FFF, #0050C8);
    border-radius: 24px; padding: 48px;
}
.cta-title { font-size: 30px; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-subtitle { color: rgba(255,255,255,0.8); margin: 0; }
.btn-accent {
    background: linear-gradient(135deg, #FFB703, #f59e0b);
    border: none; color: #0D1B2A; font-weight: 700;
    border-radius: 10px; padding: 14px 28px;
    transition: all 0.3s; text-decoration: none;
    display: inline-flex; align-items: center;
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,183,3,0.4); color: #0D1B2A;
}
.btn-outline-white-cta {
    background: transparent; border: 2px solid rgba(255,255,255,0.5);
    color: white; font-weight: 600; border-radius: 10px; padding: 14px 28px;
    transition: all 0.3s; text-decoration: none;
    display: inline-flex; align-items: center;
}
.btn-outline-white-cta:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
@media (max-width: 991px) { .cta-card { padding: 32px 24px; } .cta-title { font-size: 22px; } }
@media (max-width: 575px) { .cta-card { padding: 24px 16px; } .cta-title { font-size: 20px; } }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonial-card-full {
    background: white; border-radius: 18px;
    border: 1px solid #e2e8f0; padding: 28px;
    transition: all 0.3s; display: flex; flex-direction: column;
}
.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,111,255,0.1); border-color: #006FFF;
}

/* ══════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════ */
.pagination { gap: 4px; }
.page-link { border-radius: 8px !important; border: 1px solid #e2e8f0; color: #475569; }
.page-item.active .page-link { background: #006FFF; border-color: #006FFF; }

/* ══════════════════════════════════════════
   RECAPTCHA
   ══════════════════════════════════════════ */
.recaptcha-section { padding: 16px 0; border-top: 1px solid #f1f5f9; }
.recaptcha-wrap {
    display: inline-block; padding: 8px;
    background: #f8faff; border: 1.5px solid #e2e8f0; border-radius: 12px;
}
.recaptcha-error {
    margin-top: 8px; padding: 10px 14px;
    background: rgba(230,57,70,0.08);
    border: 1px solid rgba(230,57,70,0.2);
    border-radius: 10px; color: #E63946; font-size: 14px;
    display: flex; align-items: center;
}