/* ----------------------------------------------------
   BENSALEM NEW - CUSTOM DESIGN SYSTEM & LAYOUT
   Colors: Primary (#222b60), Secondary (#fbaa19)
   Typography: Poppins Font Family
   ---------------------------------------------------- */

/* Google Fonts Import in case of absolute local fallback */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Font Overrides */
    --bs-font-sans-serif: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    
    /* Primary Color Overrides (#222b60) */
    --bs-primary: #002b86;
    --bs-primary-rgb: 34, 43, 96;
    --bs-primary-hover: #1a2150;
    --bs-primary-light: #eaebf3;

    /* Secondary Color Overrides (#fbaa19) */
    --bs-secondary: #fbaa19;
    --bs-secondary-rgb: 251, 170, 25;
    --bs-secondary-hover: #e09610;
    
    /* Body & Link Colors */
    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: var(--bs-secondary);
    
    /* Dark / Light / Neutral themes matching the palette */
    --color-dark-deep: #030d2e;
    --color-light-bg: #f8fafc;
    --color-border: #e2e8f0;
}

/* ====================================================
   PAGE PRELOADER
   ==================================================== */

#pagePreloader {
    position: fixed;
    inset: 0;
    background: var(--color-dark-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

#pagePreloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader-logo {
    height: 64px;
    width: auto;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.65; transform: scale(0.96); }
    50%       { opacity: 1;    transform: scale(1);    }
}

.preloader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--bs-secondary);
    border-radius: 50%;
    animation: preloaderSpin 0.85s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* Base Body Styles */
html {
    overflow-x: hidden;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--color-light-bg);
    color: #334155;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    color: var(--bs-secondary);
    letter-spacing: -0.02em;
}

/* Custom Scrollbar for Premium Look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

/* Selection Highlight */
::selection {
    background-color: rgba(8, 138, 199, 0.2);
    color: var(--bs-secondary);
}

/* ----------------------------------------------------
   LAYOUT: Centered 90% Viewport Container
   ---------------------------------------------------- */
.container-90 {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

/* ====================================================
   HEADER & NAVBAR
   ==================================================== */

#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: transform 0.35s ease;
}

#mainNav {
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.nav-transparent {
    background: transparent;
}

#mainNav.scrolled {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 24px rgba(34, 43, 96, 0.10);
}

/* Logo — img fallback (preloader / offcanvas) */
.nav-logo {
    height: 84px;
    width: auto;
    display: block;
}

/* Inline SVG nav logo */
.nav-logo-svg {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

/* Smooth fill transition on white paths */
.nav-logo-svg .logo-w {
    transition: fill 0.4s ease;
}

/* On scroll: shrink logo */
#mainNav.scrolled .nav-logo-svg {
    height: 68px;
}

/* On scroll: white paths become primary blue; amber stays unchanged */
#mainNav.scrolled .nav-logo-svg .logo-w {
    fill: var(--bs-primary) !important;
}

/* Nav Links */
#mainNav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    position: relative;
    transition: color 0.25s ease;
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--bs-secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #fff;
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown toggle chevron */
#mainNav .navbar-nav .dropdown-toggle::after {
    border: none;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.25s;
}

#mainNav .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown Menu — base (mobile / click-open) */
#mainNav .dropdown-menu {
    background: var(--bs-primary);
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    min-width: 200px;
}

/* Desktop hover dropdown — override Bootstrap's display:none with opacity/visibility */
@media (min-width: 992px) {
    #mainNav .navbar-nav .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease,
                    visibility 0s linear 0.22s;
        margin-top: 1px;        
    }

    #mainNav .navbar-nav .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.22s ease, transform 0.22s ease,
                    visibility 0s linear 0s;
    }
}

#mainNav .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 9px 22px;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

#mainNav .dropdown-item:hover,
#mainNav .dropdown-item:focus {
    color: #fff;
    background: rgba(251, 170, 25, 0.12);
    padding-left: 28px;
}


/* "Get in touch" CTA Button */
.btn-get-in-touch {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;
    padding: 9px 26px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-get-in-touch:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251, 170, 25, 0.35);
}

/* Nav links turn primary blue on white nav */
#mainNav.scrolled .navbar-nav .nav-link {
    color: var(--bs-primary);
}

#mainNav.scrolled .navbar-nav .nav-link:hover,
#mainNav.scrolled .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
}

/* Hamburger lines turn dark on white nav */
#mainNav.scrolled .nav-hamburger {
    border-color: rgba(34, 43, 96, 0.35);
}

#mainNav.scrolled .nav-hamburger span {
    background: var(--bs-primary);
}

/* Get in touch button on scrolled */
#mainNav.scrolled .btn-get-in-touch {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

#mainNav.scrolled .btn-get-in-touch:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

/* Hamburger (mobile) */
.nav-hamburger {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 7px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ====================================================
   MOBILE OFFCANVAS NAV
   ==================================================== */

.mobile-nav-offcanvas {
    background: var(--color-dark-deep);
    width: min(320px, 92vw) !important;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.06);
}

/* Header row */
.mob-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    min-height: 66px;
}

.mob-nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.mob-nav-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.mob-nav-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.mob-nav-close svg  { width: 18px; height: 18px; }

/* Scrollable body */
.mob-nav-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.mob-nav-body::-webkit-scrollbar { width: 4px; }
.mob-nav-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

/* Nav list */
.mob-nav { padding: 8px 0; }
.mob-nav__list { list-style: none; padding: 0; margin: 0; }
.mob-nav__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-nav__item:last-child { border-bottom: none; }

/* Regular link */
.mob-nav__link {
    display: flex; align-items: center;
    padding: 0 20px;
    min-height: 52px;
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.78);
    text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s;
}
.mob-nav__link:hover   { color: #fff; background: rgba(255,255,255,0.04); }
.mob-nav__link.active  { color: var(--bs-secondary); font-weight: 600; }

/* Accordion toggle */
.mob-nav__toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0 20px;
    min-height: 52px;
    background: none; border: none; cursor: pointer;
    font-size: 0.95rem; font-weight: 500; font-family: inherit;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.02em; text-align: left;
    transition: color 0.2s, background 0.2s;
}
.mob-nav__toggle:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mob-nav__item--group.is-open > .mob-nav__toggle {
    color: var(--bs-secondary);
    background: rgba(251,170,25,0.06);
}

/* Chevron icon */
.mob-nav__chevron {
    width: 16px; height: 16px;
    flex-shrink: 0;
    transition: transform 0.28s ease;
    opacity: 0.5;
}
.mob-nav__item--group.is-open > .mob-nav__toggle .mob-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Sub-menu — collapsed by default, expands via max-height transition */
.mob-nav__sub {
    list-style: none; padding: 0; margin: 0;
    max-height: 0; overflow: hidden;
    background: rgba(0,0,0,0.18);
    transition: max-height 0.32s ease;
}
.mob-nav__item--group.is-open > .mob-nav__sub { max-height: 400px; }

.mob-nav__sub-link {
    display: flex; align-items: center; gap: 10px;
    padding: 0 20px 0 36px;
    min-height: 46px;
    font-size: 0.875rem; font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-left: 2px solid rgba(251,170,25,0.2);
    margin-left: 20px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.mob-nav__sub-link::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(251,170,25,0.45);
    flex-shrink: 0;
}
.mob-nav__sub-link:hover  { color: #fff; border-left-color: rgba(251,170,25,0.55); background: rgba(255,255,255,0.03); }
.mob-nav__sub-link.active { color: var(--bs-secondary); font-weight: 600; border-left-color: var(--bs-secondary); }

/* Footer area */
.mob-nav-foot {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
    flex-shrink: 0;
}

.mob-nav-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 20px;
    background: var(--bs-secondary);
    color: var(--color-dark-deep);
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 50px;
    margin-bottom: 16px;
    transition: background 0.2s, transform 0.2s;
}
.mob-nav-cta:hover { background: #ffc233; transform: translateY(-1px); color: var(--color-dark-deep); }
.mob-nav-cta svg  { width: 15px; height: 15px; flex-shrink: 0; }

.mob-nav-contact { display: flex; flex-direction: column; gap: 10px; }
.mob-nav-contact a {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.mob-nav-contact a:hover { color: rgba(255,255,255,0.85); }
.mob-nav-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-swiper,
.hero-section .swiper {
    height: 100%;
    width: 100%;
}

/* Slide Base */
.hero-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Background lives on ::before so transform:scale() won't affect Swiper's slide layout */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: scale(1);
}

.hero-slide--1::before { background-image: url('../img/banner01.jpg'); }
.hero-slide--2::before { background-image: url('../img/banner02.jpg'); }
.hero-slide--3::before { background-image: url('../img/banner03.jpg'); }
.hero-slide--4::before { background-image: url('../img/banner04.jpg'); }

/* Ken Burns — each slide has a unique zoom-in movement */

/* Slide 1: zoom in from center */
@keyframes heroZoom1 {
    from { transform: scale(1.15) translate(0, 0); }
    to   { transform: scale(1)    translate(0, 0); }
}

/* Slide 2: zoom in + pan right (moves left→right) */
@keyframes heroZoom2 {
    from { transform: scale(1.15) translateX(-4%); }
    to   { transform: scale(1)    translateX(0);   }
}

/* Slide 3: zoom in + pan left (moves right→left) */
@keyframes heroZoom3 {
    from { transform: scale(1.15) translateX(4%); }
    to   { transform: scale(1)    translateX(0);  }
}

/* Slide 4: zoom in + pan up (moves bottom→top) */
@keyframes heroZoom4 {
    from { transform: scale(1.15) translateY(4%); }
    to   { transform: scale(1)    translateY(0);  }
}

.hero-slide--1::before,
.hero-slide--2::before,
.hero-slide--3::before,
.hero-slide--4::before { transform-origin: center center; }

.swiper-slide-active .hero-slide--1::before { animation: heroZoom1 7s ease-out forwards; }
.swiper-slide-active .hero-slide--2::before { animation: heroZoom2 7s ease-out forwards; }
.swiper-slide-active .hero-slide--3::before { animation: heroZoom3 7s ease-out forwards; }
.swiper-slide-active .hero-slide--4::before { animation: heroZoom4 7s ease-out forwards; }

/* Overlay — primary → secondary gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(115deg, rgba(34, 43, 96, 0.10) 0%, rgba(251, 170, 25, 0.10) 100%);
}

.hero-slide--1 .hero-overlay,
.hero-slide--2 .hero-overlay,
.hero-slide--3 .hero-overlay,
.hero-slide--4 .hero-overlay {
    background: linear-gradient(115deg, rgba(34, 43, 96, 0.10) 0%, rgba(251, 170, 25, 0.10) 100%);
}

/* Slide Content positioning */
.hero-slide .container-90 {
    position: relative;
    z-index: 2;
}

/* Slide Content — full width, two-column layout */
.slide-content {
    width: 100%;
}

/* Heading 75% wide, description below it pushed right */
.slide-body {
    margin-bottom: 44px;
}

.slide-body__left {
    max-width: 75%;
    margin-bottom: 20px;
}

.slide-body__right {
    max-width: 42%;
    margin-left: auto;
}

/* Accent colour for highlighted words in heading */
.slide-accent {
    color: var(--bs-secondary);
}

/* ---- Slide Animation System ---- */
.slide-content .slide-body__left,
.slide-content .slide-body__right,
.slide-content .slide-cta {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-content.slide-animate .slide-body__left {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.10s;
}

.slide-content.slide-animate .slide-body__right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.30s;
}

.slide-content.slide-animate .slide-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.50s;
}

/* Slide Heading */
.slide-heading {
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0;
}

/* Slide Description */
.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
}

/* Slide CTA Buttons */
.slide-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.btn-slide-primary,
.btn-slide-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    padding: 13px 30px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
}

.btn-slide-primary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 170, 25, 0.35);
}

.btn-slide-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Swiper Pagination ---- */
.hero-pagination {
    bottom: 36px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.38);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.35s ease;
    margin: 0 5px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--bs-secondary);
    width: 30px;
    border-radius: 4px;
}


/* ---- Circular Scroll Badge ---- */
.hero-scroll-badge {
    position: absolute;
    right: 4%;
    bottom: 12%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

.hero-scroll-badge__ring {
    position: absolute;
    inset: 0;
    animation: rotateBadge 12s linear infinite;
}

.hero-scroll-badge__arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (max-width: 991.98px) {
    .slide-body {
        margin-bottom: 32px;
    }
    .slide-body__left {
        max-width: 100%;
    }
    .slide-body__right {
        max-width: 60%;
        margin-left: auto;
    }
    .slide-heading {
        font-size: clamp(1.75rem, 5.5vw, 2.8rem);
    }
    .hero-scroll-badge {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .slide-heading {
        font-size: 1.7rem;
        line-height: 1.18;
        text-align: center;
    }
    .slide-desc {
        font-size: 1rem;
    }
    .btn-slide-primary,
    .btn-slide-outline {
        padding: 11px 22px;
        font-size: 0.85rem;
    }
    .slide-cta {
        gap: 12px;
        justify-content: center;
    }
    .hero-section {
        min-height: 100svh;
    }
}

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

.services-section {
    padding: 100px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}

.services-title {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: var(--bs-primary);
    margin: 0;
}

.services-title span {
    color: var(--bs-secondary);
}

/* ---- Cards Row ---- */
.services-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.service-card {
    flex: 1;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 36px 26px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    border-color: rgba(34, 43, 96, 0.22);
    box-shadow: 0 24px 64px rgba(34, 43, 96, 0.12);
    transform: translateY(-6px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Icon Box */
.service-card__icon {
    width: 58px;
    height: 58px;
    border: 1.5px solid var(--bs-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--bs-primary);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: var(--bs-primary);
    color: #fff;
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
}

/* Title */
.service-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* Description — clamped to 2 lines */
.service-card__desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Learn More Link */
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.service-card__link:hover {
    gap: 10px;
    color: var(--bs-primary);
}

.service-card__link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.service-card__link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 72px 0;
    }
    .services-row {
        flex-wrap: wrap;
    }
    .service-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 56px 0;
    }
    .service-card {
        flex: 0 0 100%;
    }
}

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

.about-section {
    position: relative;
    background: var(--color-dark-deep);
    padding: 110px 0;
    overflow: hidden;
}

/* Primary diagonal gradient overlay */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
        rgba(34, 43, 96, 0.92) 0%,
        rgba(3, 13, 46, 0.96) 55%,
        rgba(3, 13, 46, 0.80) 100%);
    z-index: 0;
}

/* Secondary amber radial glow — top-right */
.about-section::after {
    content: '';
    position: absolute;
    top: -130px;
    right: -80px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.16) 0%, transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.about-section .container-90 {
    position: relative;
    z-index: 1;
}

/* Two-column layout */
.about-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* ---- Left column ---- */
.about-left {
    flex: 0 0 48%;
    max-width: 48%;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 14px;
}

.about-title {
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
}

.about-title span {
    color: var(--bs-secondary);
}

.about-desc {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.85;
    margin-bottom: 38px;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 34px;
    border: 1.5px solid var(--bs-secondary);
    border-radius: 4px;
    color: var(--bs-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    background: var(--bs-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 170, 25, 0.28);
}

.btn-about-cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.btn-about-cta:hover svg {
    transform: translateX(4px);
}

/* ---- Right column ---- */
.about-right {
    flex: 1;
}

/* 2×2 feature grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.about-feature {
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.35s ease;
    position: relative;
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Amber corner accent on hover */
.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--bs-secondary);
    transition: height 0.35s ease;
    border-radius: 0 0 2px 0;
}

.about-feature:hover::before {
    height: 100%;
}

/* Icon box */
.about-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(251, 170, 25, 0.30);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--bs-secondary);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.about-feature:hover .about-feature__icon {
    background: rgba(251, 170, 25, 0.10);
    border-color: var(--bs-secondary);
}

.about-feature__icon svg {
    width: 22px;
    height: 22px;
}

.about-feature__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-feature__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.68;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .about-section {
        padding: 80px 0;
    }
    .about-inner {
        flex-direction: column;
        gap: 52px;
    }
    .about-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .about-right {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 60px 0;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

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

.process-section {
    padding: 110px 0;
    background: var(--color-light-bg);
    position: relative;
}

/* Section header */
.process-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 72px;
}

.process-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}

.process-title {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 14px;
}

.process-title span {
    color: var(--bs-secondary);
}

.process-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Steps row ---- */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* Single dashed line threading through all badge centers */
.process-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(34, 43, 96, 0.20) 0px,
        rgba(34, 43, 96, 0.20) 8px,
        transparent 8px,
        transparent 18px
    );
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

/* Step number badge */
.process-step__badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-step__badge {
    background: var(--bs-secondary);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(251, 170, 25, 0.35);
}

.process-step__badge span {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

/* Step icon box */
.process-step__icon {
    width: 58px;
    height: 58px;
    background: var(--bs-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--bs-primary);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .process-step__icon {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-3px);
}

.process-step__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Step title */
.process-step__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.process-step:hover .process-step__title {
    color: var(--bs-secondary);
}

/* Step description */
.process-step__desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.68;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 40px 0;
    }
    .process-step {
        flex: 0 0 33.333%;
    }
    /* Redraw line for 3-column layout */
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .process-section {
        padding: 72px 0;
    }
    .process-step {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .process-step {
        flex: 0 0 100%;
    }
}

/* ====================================================
   OUR CLIENTS SECTION
   ==================================================== */

.our-clients-section {
    overflow: hidden;
    background: #fff;
}

/* Header — soft primary-to-secondary light gradient */
.clients-header {
    padding: 90px 0 70px;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(234, 235, 243, 0.65) 0%,
        rgba(255, 255, 255, 1) 45%,
        rgba(251, 170, 25, 0.07) 100%);
    position: relative;
}

/* Subtle top border accent */
.clients-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(34, 43, 96, 0.18) 30%,
        rgba(251, 170, 25, 0.35) 60%,
        transparent);
}

.clients-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}

.clients-title {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 14px;
}

.clients-title span {
    color: var(--bs-secondary);
}

.clients-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Carousel strip ---- */
.clients-carousel {
    padding: 44px 0 60px;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%);
}

/* Pause on hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* Scrolling track — contains 2× the logos for seamless loop */
.clients-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: clientsScroll 50s linear infinite;
}

@keyframes clientsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-20%); }
}

/* Individual logo cell */
.client-logo {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    /* height: 150px; */
    /* width: auto; */
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.35s ease, transform 0.35s ease;
    display: block;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .clients-header {
        padding: 70px 0 52px;
    }
    .client-logo {
        padding: 0 28px;
    }
    .client-logo img {
        height: 34px;
    }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    position: relative;
    padding: 110px 0 80px;
    background: var(--color-dark-deep);
    overflow: hidden;
}

/* Decorative radial glows */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 43, 134, 0.30) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container-90 {
    position: relative;
    z-index: 1;
}

/* ---------- Section header ---------- */
.testi-header {
    text-align: center;
    margin-bottom: 56px;
}

.testi-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    background: rgba(251, 170, 25, 0.12);
    border: 1px solid rgba(251, 170, 25, 0.3);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 18px;
}

.testi-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testi-title span {
    color: var(--bs-secondary);
}

.testi-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Swiper overrides ---------- */
.testimonial-swiper {
    padding-bottom: 56px !important;
    overflow: visible !important;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

/* ---------- Testimonial card ---------- */
.testi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 38px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.testi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,43,134,0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 170, 25, 0.25);
}

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

/* Animated top accent line */
.testi-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 20px 20px 0 0;
    transition: right 0.45s ease;
}

.testi-card:hover::after {
    right: 0;
}

/* ---------- Quote mark ---------- */
.testi-card__quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--bs-secondary);
    opacity: 0.85;
    margin-bottom: 12px;
    margin-top: -10px;
}

/* ---------- Testimonial text ---------- */
.testi-text {
    font-size: 0.93rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Read-more states injected by initTestiReadMore() */
.testi-text.is-clamped {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testi-read-more {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-secondary);
    cursor: pointer;
    display: none;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.testi-read-more.is-visible {
    display: inline-block;
}

.testi-read-more:hover {
    opacity: 0.75;
}

/* ---------- Star rating ---------- */
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testi-stars svg {
    width: 16px;
    height: 16px;
    color: var(--bs-secondary);
    flex-shrink: 0;
}

/* ---------- Divider ---------- */
.testi-card__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* ---------- Author ---------- */
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testi-author__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--av, var(--bs-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.10);
    letter-spacing: 0.05em;
}

.testi-author__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testi-author__name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testi-author__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Pagination ---------- */
.testi-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: 100px;
    transition: background 0.3s ease, width 0.35s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--bs-secondary);
    width: 28px;
}

/* ---------- Navigation buttons ---------- */
.testi-nav-wrap {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.testi-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.testi-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testi-nav-btn:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
    transform: scale(1.08);
}

.testi-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 80px 0 60px;
    }
    .testi-card {
        padding: 30px 26px 26px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 70px 0 56px;
    }
    .testi-header {
        margin-bottom: 40px;
    }
    .testi-card {
        padding: 28px 22px 22px;
    }
    .testi-card__quote {
        font-size: 3.5rem;
    }
}

/* ============================================================
   TECHNOLOGIES SECTION
   ============================================================ */
.tech-section {
    padding: 110px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid background texture */
.tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,43,134,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Corner gradient fades to hide the pattern at edges */
.tech-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #fff 80%);
    pointer-events: none;
    z-index: 0;
}

.tech-section .container-90 {
    position: relative;
    z-index: 1;
}

/* ---------- Section header ---------- */
.tech-header {
    text-align: center;
    margin-bottom: 56px;
}

.tech-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: var(--bs-primary-light);
    border: 1px solid rgba(0, 43, 134, 0.15);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 18px;
}

.tech-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tech-title span {
    color: var(--bs-primary);
}

.tech-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Technology grid ---------- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

/* ---------- Technology card ---------- */
.tech-item {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 12px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    cursor: default;
}

/* Hover top accent bar */
.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 16px 16px 0 0;
    transition: right 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 43, 134, 0.10);
    border-color: rgba(0, 43, 134, 0.25);
}

.tech-item:hover::before {
    right: 0;
}

/* ---------- Icon ---------- */
.tech-item__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-item__icon i {
    font-size: 3rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-item__icon i {
    transform: scale(1.12);
}

/* ---------- Label ---------- */
.tech-item__name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 991.98px) {
    .tech-section {
        padding: 80px 0;
    }
    .tech-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }
}

@media (max-width: 767.98px) {
    .tech-section {
        padding: 70px 0;
    }
    .tech-header {
        margin-bottom: 40px;
    }
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .tech-item {
        padding: 20px 8px 16px;
        gap: 10px;
        border-radius: 12px;
    }
    .tech-item__icon i {
        font-size: 2.4rem;
    }
}

@media (max-width: 479.98px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--color-dark-deep);
}

/* Top gradient accent bar */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--bs-secondary) 0%,
        var(--bs-primary) 35%,
        var(--bs-primary) 65%,
        var(--bs-secondary) 100%);
    z-index: 2;
}

/* Decorative background gradient overlay */
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 43, 134, 0.22) 0%,
        transparent 55%,
        rgba(251, 170, 25, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient glow orbs */
.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-glow--primary {
    top: -180px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 43, 134, 0.28) 0%, transparent 65%);
}

.footer-glow--secondary {
    bottom: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.13) 0%, transparent 65%);
}

/* ---------- Main content ---------- */
.footer-main {
    padding: 90px 0 64px;
    position: relative;
    z-index: 1;
}

/* ---------- Brand column ---------- */
.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo {
    height: 60px;
    display: block;
}

.footer-brand__tagline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 16px;
}

.footer-brand__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    max-width: 360px;
}

/* ---------- Social icons ---------- */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease,
                color 0.3s ease, transform 0.28s ease;
    flex-shrink: 0;
}

.footer-social span[data-icon] svg,
.footer-social span[data-icon] > * {
    width: 17px;
    height: 17px;
    display: block;
}

.footer-social:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
    transform: translateY(-4px) scale(1.06);
}

/* ---------- Widget title ---------- */
.footer-widget__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
}

/* ---------- Footer links ---------- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a::before {
    content: '›';
    color: var(--bs-secondary);
    font-size: 1.1em;
    line-height: 1;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--bs-secondary);
    transform: translateX(5px);
}

/* ---------- Footer contact ---------- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-contact li + li {
    margin-top: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: var(--bs-secondary);
}

.footer-contact__icon {
    width: 38px;
    height: 38px;
    background: rgba(251, 170, 25, 0.10);
    border: 1px solid rgba(251, 170, 25, 0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bs-secondary);
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-contact__icon span[data-icon] svg,
.footer-contact__icon span[data-icon] > * {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-contact li:hover .footer-contact__icon {
    background: rgba(251, 170, 25, 0.18);
    transform: scale(1.08);
}

/* ---------- Centered footer layout ---------- */
.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.footer-socials--centered {
    justify-content: center;
}

.footer-contact--horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin: 0;
}

.footer-contact--horizontal li + li {
    margin-top: 0;
}

.footer-contact--horizontal li {
    align-items: center;
}

@media (max-width: 600px) {
    .footer-contact--horizontal {
        display: none;
    }
    .footer-socials--centered {
        padding-top: 24px;
    }
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom__inner p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
}

.footer-bottom__inner p .heart {
    color: var(--bs-secondary);
}

.footer-bottom__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom__links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom__links a:hover {
    color: var(--bs-secondary);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 70px 0 50px;
    }
    .footer-brand__desc {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 0 0 42px;
    }
    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom__links {
        justify-content: center;
    }
}

/* -----------------------------------------------
   BACK TO TOP
----------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 98px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bs-primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease;
    z-index: 990;
    box-shadow: 0 4px 18px rgba(0, 43, 134, 0.4);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    box-shadow: 0 6px 22px rgba(251, 170, 25, 0.45);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

/* -----------------------------------------------
   WHATSAPP FLOAT
----------------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 991;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.9; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.wa-float svg {
    width: 28px;
    height: 28px;
}

.wa-float__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #111827;
    color: #f9fafb;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 7px 13px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.wa-float__label::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #111827;
}

.wa-float:hover .wa-float__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ============================================================
   INNER PAGE — SHARED COMPONENTS
   ============================================================ */

/* ---- Page Hero (compact inner banner) ---- */
.page-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-dark-deep) 0%, #0a1840 55%, #001266 100%);
    overflow: hidden;
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 43, 134, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero__breadcrumb a:hover { color: var(--bs-secondary); }

.page-hero__sep { opacity: 0.4; }

.page-hero__breadcrumb span:last-child { color: var(--bs-secondary); font-weight: 600; }

/* ---- Inner Section wrapper ---- */
.inner-section {
    padding: 90px 0;
    background: #fff;
}

.inner-section--alt {
    background: var(--color-light-bg);
}

/* ---- Shared eyebrow / title ---- */
.inner-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    margin-bottom: 10px;
}

.inner-title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1.22;
    margin-bottom: 20px;
}

.inner-title span { color: var(--bs-secondary); }

.section-head-center {
    text-align: center;
    margin-bottom: 52px;
}

.section-head-center .inner-title { margin-bottom: 0; }

/* ============================================================
   ABOUT PAGE — WHO WE ARE
   ============================================================ */
.story-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.story-content p {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 16px;
}

.story-content p:last-child { margin-bottom: 0; }

/* Stats panel */
.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.stat-card {
    background: var(--bs-primary);
    border-radius: 16px;
    padding: 28px 20px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 43, 134, 0.3);
}

.stat-card:nth-child(even) {
    background: var(--bs-secondary);
}

.stat-card__number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-card:nth-child(even) .stat-card__number { color: #1a1a1a; }

.stat-card__plus {
    font-size: 1.6rem;
    font-weight: 800;
}

.stat-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
}

.stat-card:nth-child(even) .stat-card__label { color: rgba(0, 0, 0, 0.6); }

/* ============================================================
   ABOUT PAGE — VISION & MISSION
   ============================================================ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.vm-card {
    border-radius: 20px;
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
}

.vm-card--vision {
    background: var(--color-dark-deep);
    color: #fff;
}

.vm-card--mission {
    background: var(--bs-primary);
    color: #fff;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.vm-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(251, 170, 25, 0.15);
    border: 1.5px solid rgba(251, 170, 25, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    margin-bottom: 22px;
}

.vm-card__icon svg { width: 26px; height: 26px; }

.vm-card__heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.vm-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 22px;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.vm-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--bs-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
}

/* ============================================================
   ABOUT PAGE — CORE VALUES
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 26px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 43, 134, 0.1);
    border-color: transparent;
}

.value-card:hover::after { transform: scaleX(1); }

.value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--bs-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    margin-bottom: 18px;
    transition: background 0.3s, color 0.3s;
}

.value-card:hover .value-card__icon {
    background: var(--bs-primary);
    color: #fff;
}

.value-card__icon svg { width: 24px; height: 24px; }

.value-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.value-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ABOUT PAGE — COMPANY POLICIES
   ============================================================ */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.policy-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px 26px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 43, 134, 0.09);
}

.policy-card__num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--bs-secondary);
    background: rgba(251, 170, 25, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.policy-card__title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.policy-card__text {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   INNER PAGE — CTA STRIP
   ============================================================ */
.inner-cta-strip {
    padding: 72px 0;
    background: linear-gradient(120deg, var(--bs-primary) 0%, #001a6e 100%);
    position: relative;
    overflow: hidden;
}

.inner-cta-strip::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.inner-cta-strip__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.inner-cta-strip__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.inner-cta-strip__text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.inner-cta-strip__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cta-primary {
    padding: 12px 28px;
    background: var(--bs-secondary);
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: #ffc23a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 170, 25, 0.4);
    color: #1a1a1a;
}

.btn-cta-outline {
    padding: 11px 26px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    color: #fff;
}

/* ============================================================
   INNER PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .story-wrap    { grid-template-columns: 1fr 280px; gap: 48px; }
    .values-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
    .inner-section { padding: 72px 0; }
    .story-wrap    { grid-template-columns: 1fr; gap: 40px; }
    .story-stats   { position: static; grid-template-columns: repeat(4, 1fr); }
    .vm-grid       { grid-template-columns: 1fr; gap: 20px; }
    .vm-card       { padding: 34px 28px; }
    .policies-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .page-hero          { padding: 120px 0 60px; }
    .page-hero__title   { font-size: 1.9rem; }
    .inner-section      { padding: 56px 0; }
    .inner-title        { font-size: 1.65rem; }
    .section-head-center { margin-bottom: 36px; }
    .story-stats        { grid-template-columns: repeat(2, 1fr); }
    .values-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .policies-grid      { grid-template-columns: 1fr; }
    .inner-cta-strip    { padding: 56px 0; }
    .inner-cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .inner-cta-strip__text h3 { font-size: 1.5rem; }
}

@media (max-width: 575.98px) {
    .page-hero         { padding: 100px 0 48px; }
    .page-hero__title  { font-size: 1.65rem; }
    .values-grid       { grid-template-columns: 1fr; }
    .stat-card         { padding: 22px 14px 18px; }
    .stat-card__number { font-size: 2rem; }
    .vm-card           { padding: 28px 22px; }
    .value-card        { padding: 24px 20px 20px; }
    .policy-card       { padding: 24px 20px 20px; }
    .btn-cta-primary,
    .btn-cta-outline   { width: 100%; text-align: center; justify-content: center; }
    .inner-cta-strip__actions { width: 100%; flex-direction: column; }
}

/* ============================================================
   HEADER RESPONSIVE SCALING
   ============================================================ */

/* Base nav-actions — always flex-shrink-0 so it never gets squeezed */
.nav-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tablet landscape (≤991px) — collapse hidden, hamburger takes over */
@media (max-width: 991.98px) {
    #mainNav { padding: 12px 0; }
    #mainNav.scrolled { padding: 4px 0; }

    /* Pin logo left, hamburger right — reliable regardless of Bootstrap utilities */
    #mainNav .container-90 {
        justify-content: space-between !important;
        flex-wrap: nowrap;
    }

    /* Collapsed nav: hidden, no space taken */
    #mainNav .navbar-collapse {
        display: none !important;
        margin: 0 !important;
    }

    /* Nav-actions always at far right */
    .nav-actions {
        margin-left: auto;
    }

    .nav-logo-svg { height: 58px; }
    #mainNav.scrolled .nav-logo-svg { height: 50px; }

    .nav-hamburger {
        width: 40px;
        height: 40px;
        gap: 5px;
        flex-shrink: 0;
    }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
    #mainNav { padding: 10px 0; }

    .nav-logo-svg { height: 52px; }
    #mainNav.scrolled .nav-logo-svg { height: 46px; }

    .container-90 { padding-left: 16px; padding-right: 16px; }
}

/* Small phones (≤575px) */
@media (max-width: 575.98px) {
    #mainNav { padding: 8px 0; }

    .nav-logo-svg { height: 56px; }
    #mainNav.scrolled .nav-logo-svg { height: 48px; }

    .nav-hamburger { width: 38px; height: 38px; gap: 4px; }
    .nav-hamburger span { width: 18px; }

    .mobile-nav-offcanvas { width: 100vw !important; }
    .mobile-nav-offcanvas .offcanvas-body  { padding: 16px; }
    .mobile-nav-offcanvas .offcanvas-header { padding: 14px 16px; }
}

/* Extra small phones (≤375px) */
@media (max-width: 375px) {
    .nav-logo-svg { height: 56px; }
    #mainNav.scrolled .nav-logo-svg { height: 48px; }

    .nav-hamburger { width: 36px; height: 36px; }
    .nav-hamburger span { width: 16px; }

    .container-90 { padding-left: 12px; padding-right: 12px; }
}

/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================================ */

/* ---- 1200px — large tablet / small laptop ---- */
@media (max-width: 1199.98px) {
    .container-90 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ---- 991px — tablet landscape ---- */
@media (max-width: 991.98px) {
    /* Hero */
    .slide-body__left  { max-width: 100%; }
    .slide-body__right { max-width: 70%; margin-left: 0; }
    .slide-desc        { font-size: 1.05rem; }

    /* Section headings common */
    .services-title,
    .process-title,
    .testi-title,
    .tech-title,
    .clients-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }

    /* About features — keep 2 cols on tablet */
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process header margin */
    .process-header {
        margin-bottom: 52px;
    }

    /* Clients header */
    .clients-header {
        padding: 60px 0 48px;
    }
}

/* ---- 767px — tablet portrait / large phone ---- */
@media (max-width: 767.98px) {
    /* Hero */
    .slide-body__left  { max-width: 100%; }
    .slide-body__right { display: none; }
    .slide-cta         { justify-content: flex-start; gap: 10px; }
    .hero-pagination   { bottom: 22px !important; }

    /* Section shared padding */
    .services-section,
    .about-section,
    .process-section,
    .tech-section {
        padding: 64px 0;
    }
    .testimonials-section {
        padding: 64px 0 48px;
    }

    /* Services header */
    .services-header  { margin-bottom: 40px; }
    .services-title   { font-size: 1.75rem; }

    /* Service card */
    .service-card {
        padding: 30px 24px 26px;
    }

    /* About */
    .about-title   { font-size: 1.75rem; }
    .about-desc    { font-size: 0.9rem; }
    .about-inner   { gap: 40px; }
    .about-feature { padding: 20px 18px 18px; }

    /* Process */
    .process-header  { margin-bottom: 40px; }
    .process-title   { font-size: 1.75rem; }
    .process-subtitle { font-size: 0.88rem; }

    /* Clients */
    .clients-title    { font-size: 1.75rem; }
    .clients-subtitle { font-size: 0.88rem; }

    /* Testi */
    .testi-title    { font-size: 1.75rem; }
    .testi-subtitle { font-size: 0.88rem; }
    .testi-text     { font-size: 0.9rem; }

    /* Tech */
    .tech-title    { font-size: 1.75rem; }
    .tech-subtitle { font-size: 0.88rem; }

    /* Footer */
    .footer-logo   { max-height: 44px; }
    .footer-socials { gap: 8px; }
    .footer-social  { width: 38px; height: 38px; }

    /* Floating buttons */
    .wa-float       { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .wa-float svg   { width: 24px; height: 24px; }
    .wa-float__label { display: none; }
    .back-to-top    { width: 40px; height: 40px; bottom: 84px; right: 20px; }
    .back-to-top svg { width: 17px; height: 17px; }
}

/* ---- 575px — phone ---- */
@media (max-width: 575.98px) {
    /* Hero */
    .slide-body__right { margin-top: 12px; }
    .slide-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .btn-slide-primary,
    .btn-slide-outline {
        width: 100%;
        justify-content: center;
    }

    /* About features — 1 col on phones */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process-header {
        padding: 0 8px;
    }

    /* Service cards */
    .service-card {
        padding: 26px 20px 22px;
    }
    .service-card__title { font-size: 1.05rem; }
    .service-card__desc  { font-size: 0.84rem; }

    /* Testimonial card */
    .testi-card {
        padding: 24px 18px 20px;
    }
    .testi-card__quote { font-size: 3rem; }
    .testi-text        { font-size: 0.85rem; }
    .testi-author__name { font-size: 0.85rem; }
    .testi-author__role { font-size: 0.75rem; }

    /* Footer bottom */
    .footer-bottom__inner {
        gap: 10px;
    }
    .footer-bottom__inner p {
        font-size: 0.85rem;
    }

    /* Floating — very small phones */
    .wa-float    { width: 46px; height: 46px; bottom: 16px; right: 16px; }
    .back-to-top { width: 38px; height: 38px; bottom: 76px; right: 16px; }
}

/* ---- 480px — small phone ---- */
@media (max-width: 479.98px) {
    .container-90 {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section headings */
    .services-title,
    .about-title,
    .process-title,
    .clients-title,
    .testi-title,
    .tech-title {
        font-size: 1.55rem;
    }

    /* Process step */
    .process-step__title { font-size: 0.85rem; }
    .process-step__desc  { font-size: 0.76rem; }

    /* Clients header */
    .clients-header { padding: 48px 0 36px; }
    .clients-subtitle { font-size: 0.83rem; }

    /* Tech grid — tighten items */
    .tech-item__name { font-size: 0.68rem; }
}

/* ============================================================
   TEAM PAGE
   ============================================================ */

/* ---- Section subtitle ---- */
.inner-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---- Team grid ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

/* ---- Team card ---- */
.team-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 43, 134, 0.11);
    border-color: rgba(0, 43, 134, 0.22);
}

/* ---- Photo area ---- */
.team-card__photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3.5;
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__photo {
    transform: scale(1.06);
}

/* Overlay on hover */
.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 13, 46, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

/* Social icons in overlay */
.team-card__social {
    display: flex;
    gap: 10px;
}

.team-card__social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.team-card__social-link:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    transform: translateY(-3px);
}

.team-card__social-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ---- Card body ---- */
.team-card__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-card__exp {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bs-secondary);
    background: rgba(251, 170, 25, 0.1);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 12px;
    width: fit-content;
}

.team-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 4px;
    line-height: 1.2;
}

.team-card__role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.team-card__bio {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 18px;
    flex: 1;
}

/* Skill tags */
.team-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.team-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--bs-primary);
    background: var(--bs-primary-light);
    border: 1px solid rgba(0, 43, 134, 0.12);
    border-radius: 100px;
    padding: 4px 11px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease;
}

.team-tag:hover {
    background: var(--bs-primary);
    color: #fff;
}

/* ============================================================
   JOIN US SECTION
   ============================================================ */

/* ---- Join benefits grid ---- */
.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
    margin-bottom: 56px;
}

/* ---- Join card ---- */
.join-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 18px 18px 0 0;
    transition: right 0.4s ease;
}

.join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 43, 134, 0.09);
    border-color: rgba(0, 43, 134, 0.2);
}

.join-card:hover::before {
    right: 0;
}

.join-card__icon {
    width: 52px;
    height: 52px;
    background: var(--bs-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--bs-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.join-card__icon svg {
    width: 24px;
    height: 24px;
}

.join-card:hover .join-card__icon {
    background: var(--bs-primary);
    color: #fff;
}

.join-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 10px;
}

.join-card__desc {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Open positions CTA ---- */
.join-cta {
    background: linear-gradient(135deg, var(--color-dark-deep) 0%, var(--bs-primary) 100%);
    border-radius: 20px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}

.join-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 170, 25, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.join-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.join-cta__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25;
}

.join-cta__text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 480px;
    line-height: 1.7;
}

.join-cta__actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .join-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .team-grid  { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
    .join-grid  { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
    .join-cta   { padding: 36px 28px; }
    .join-cta__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .join-cta__actions { width: 100%; flex-direction: column; }
}

@media (max-width: 575.98px) {
    .team-card__body { padding: 20px 20px 22px; }
    .join-card       { padding: 24px 20px 22px; }
    .join-cta        { padding: 28px 20px; }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

/* ---- Section wrapper ---- */
.pf-section { padding: 90px 0 100px; }

/* ---- Filter tabs ---- */
.pf-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 48px 0 52px;
}

.pf-filter {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #64748b;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 100px;
    padding: 9px 22px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pf-filter:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.pf-filter.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 43, 134, 0.22);
}

/* ---- Portfolio grid ---- */
.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---- Portfolio card ---- */
.pf-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, opacity 0.3s ease;
}

.pf-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 56px rgba(0, 43, 134, 0.11);
    border-color: rgba(0, 43, 134, 0.2);
}

.pf-card--hidden {
    display: none;
}

/* ---- Thumbnail area ---- */
.pf-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%);
}

.pf-card__thumb img:not(.pf-card__logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card__thumb img:not(.pf-card__logo) {
    transform: scale(1.07);
}

/* Project logo — top-left of thumb */
.pf-card__logo-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.pf-card__logo {
    display: block;
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Hover overlay with "View Live" button */
.pf-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 46, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.32s ease;
    backdrop-filter: blur(2px);
}

.pf-card:hover .pf-card__overlay {
    opacity: 1;
}

.pf-card__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bs-secondary);
    color: var(--color-dark-deep);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 22px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transform: translateY(10px);
    transition: background 0.25s ease, transform 0.3s ease;
}

.pf-card:hover .pf-card__live {
    transform: translateY(0);
}

.pf-card__live:hover {
    background: #fff;
}

.pf-card__live svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Card body ---- */
.pf-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pf-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* Category badge */
.pf-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 11px;
}

.pf-badge--webdesign {
    background: rgba(0, 43, 134, 0.1);
    color: var(--bs-primary);
}

.pf-badge--webdev {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.pf-badge--seo {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.pf-badge--mobileapp {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* Business type tag */
.pf-card__type {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}

.pf-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 8px;
    line-height: 1.25;
}

.pf-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.72;
    margin-bottom: 16px;
    flex: 1;
}

/* Live URL link */
.pf-card__url {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.pf-card__url:hover {
    color: var(--bs-secondary);
}

.pf-card__url svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ---- Empty state ---- */
.pf-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: #94a3b8;
    text-align: center;
}

.pf-empty svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.pf-empty p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .pf-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (max-width: 991.98px) {
    .pf-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-section { padding: 72px 0 80px; }
}

@media (max-width: 767.98px) {
    .pf-grid    { grid-template-columns: 1fr; gap: 20px; }
    .pf-filters { margin: 36px 0 40px; }
    .pf-section { padding: 56px 0 64px; }
}

@media (max-width: 575.98px) {
    .pf-card__body { padding: 18px 18px 20px; }
    .pf-filter     { padding: 8px 16px; font-size: 0.85rem; }
}

/* ============================================================
   SERVICE INNER PAGES (Web Designing, etc.)
   ============================================================ */

/* ---- Intro split layout ---- */
.svc-intro-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.svc-intro__lead {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--color-dark-deep);
    line-height: 1.75;
    margin-bottom: 16px;
}

.svc-intro__text p {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 14px;
}

.svc-intro__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.svc-intro__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.svc-intro__link:hover { gap: 11px; color: var(--bs-secondary); }

.svc-intro__link svg {
    width: 16px; height: 16px; flex-shrink: 0;
}

/* Visual side */
.svc-intro__img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 43, 134, 0.14);
}

.svc-intro__img-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    border-radius: 20px;
}

.svc-intro__stat-pill {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 43, 134, 0.14);
    min-width: 110px;
    text-align: center;
}

.svc-intro__stat-pill--1 { bottom: 28px; left: -20px; }
.svc-intro__stat-pill--2 { top: 28px; right: -20px; }

.svc-intro__stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
}
.svc-intro__stat-num span { font-size: 1.1rem; }

.svc-intro__stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ---- Design services grid ---- */
.dsvc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.dsvc-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dsvc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 18px 18px 0 0;
    transition: right 0.4s ease;
}

.dsvc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 43, 134, 0.1);
    border-color: rgba(0, 43, 134, 0.18);
}

.dsvc-card:hover::before { right: 0; }

.dsvc-card__icon {
    width: 52px; height: 52px;
    background: var(--bs-primary-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dsvc-card:hover .dsvc-card__icon {
    background: var(--bs-primary);
    color: #fff;
}

.dsvc-card__icon svg { width: 24px; height: 24px; }

.dsvc-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 10px;
}

.dsvc-card__desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 16px;
}

.dsvc-card__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 7px;
}

.dsvc-card__list li {
    font-size: 0.8rem;
    color: #64748b;
    padding-left: 18px;
    position: relative;
}

.dsvc-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bs-secondary);
}

/* ---- Design process grid ---- */
.dproc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 52px;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
}

.dproc-step {
    padding: 36px 32px;
    border-right: 1.5px solid var(--color-border);
    border-bottom: 1.5px solid var(--color-border);
    position: relative;
    transition: background 0.25s ease;
}

.dproc-step:nth-child(3n) { border-right: none; }
.dproc-step:nth-child(n+4) { border-bottom: none; }

.dproc-step:hover { background: var(--bs-primary-light); }

.dproc-step__num {
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0, 43, 134, 0.08);
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.dproc-step:hover .dproc-step__num { color: rgba(0, 43, 134, 0.18); }

.dproc-step__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 10px;
}

.dproc-step__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Why us grid ---- */
.dwhy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.dwhy-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dwhy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 43, 134, 0.09);
}

.dwhy-card__icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--bs-primary-light), #fff);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bs-primary);
    margin-bottom: 16px;
}

.dwhy-card__icon svg { width: 22px; height: 22px; }

.dwhy-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 9px;
}

.dwhy-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Tools grid ---- */
.dtool-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.dtool-item {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dtool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 43, 134, 0.09);
    border-color: rgba(0, 43, 134, 0.2);
}

.dtool-item__icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
}

.dtool-item__icon img {
    width: 44px; height: 44px; object-fit: contain;
    transition: transform 0.3s ease;
}

.dtool-item:hover .dtool-item__icon img { transform: scale(1.12); }

.dtool-item__name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-dark-deep);
}

.dtool-item__role {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* ---- FAQ ---- */
.dsvc-faq {
    max-width: 820px;
    margin: 52px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1.5px solid var(--color-border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--color-dark-deep);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-q:hover { background: var(--bs-primary-light); color: var(--bs-primary); }

.faq-item.open .faq-q {
    background: var(--bs-primary-light);
    color: var(--bs-primary);
}

.faq-chevron {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--bs-primary); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 4px;
}

.faq-a p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    padding: 0 28px 22px;
}

.faq-a p a {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .svc-intro-wrap { gap: 48px; }
    .dtool-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991.98px) {
    .svc-intro-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .svc-intro__stat-pill--1 { left: 12px; }
    .svc-intro__stat-pill--2 { right: 12px; }
    .dsvc-grid  { grid-template-columns: repeat(2, 1fr); }
    .dproc-grid { grid-template-columns: repeat(2, 1fr); }
    .dproc-step:nth-child(3n)  { border-right: 1.5px solid var(--color-border); }
    .dproc-step:nth-child(2n)  { border-right: none; }
    .dproc-step:nth-child(n+5) { border-bottom: none; }
    .dproc-step:nth-child(5),
    .dproc-step:nth-child(6)   { border-bottom: none; }
    .dwhy-grid  { grid-template-columns: repeat(2, 1fr); }
    .dtool-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
    .dsvc-grid   { grid-template-columns: 1fr; }
    .dproc-grid  { grid-template-columns: 1fr; border-radius: 16px; }
    .dproc-step  { border-right: none !important; border-bottom: 1.5px solid var(--color-border); }
    .dproc-step:last-child { border-bottom: none; }
    .dwhy-grid   { grid-template-columns: 1fr; gap: 16px; }
    .dtool-grid  { grid-template-columns: repeat(2, 1fr); }
    .svc-intro__actions { flex-direction: column; align-items: flex-start; }
    .faq-q       { padding: 18px 20px; font-size: 0.88rem; }
    .faq-a p     { padding: 0 20px 18px; }
}

@media (max-width: 575.98px) {
    .dsvc-card   { padding: 24px 20px 20px; }
    .dproc-step  { padding: 28px 24px; }
    .dtool-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ============================================================
   WEB DEVELOPMENT PAGE — extra components
   ============================================================ */

/* ---- Layer section (Frontend / Backend split) ---- */
.dev-layer-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.dev-layer-wrap--rev {
    grid-template-columns: 1.5fr 1fr;
}

/* Layer label badge */
.dev-layer__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 14px;
}

.dev-layer__badge--fe   { background: rgba(0, 43, 134, 0.1);  color: var(--bs-primary); }
.dev-layer__badge--be   { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.dev-layer__badge--db   { background: rgba(234, 88, 12, 0.1); color: #ea580c; }
.dev-layer__badge--tools{ background: rgba(100, 116, 139, 0.1); color: #475569; }

.dev-layer__header p {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ---- Dev service cards (6-item list within layer) ---- */
.dev-layer__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
}

.dev-service-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    border-bottom: 1.5px solid var(--color-border);
    background: #fff;
    transition: background 0.22s ease;
}

.dev-service-card:last-child { border-bottom: none; }

.dev-service-card:hover { background: var(--bs-primary-light); }

.dev-service-card__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--bs-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    margin-top: 2px;
    transition: background 0.22s ease, color 0.22s ease;
}

.dev-service-card__icon--be {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.dev-service-card:hover .dev-service-card__icon   { background: var(--bs-primary); color: #fff; }
.dev-service-card:hover .dev-service-card__icon--be { background: #16a34a; color: #fff; }

.dev-service-card__icon svg { width: 20px; height: 20px; }

.dev-service-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 5px;
    line-height: 1.25;
}

.dev-service-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ---- What we build grid ---- */
.devbuild-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.devbuild-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.devbuild-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 43, 134, 0.09);
    border-color: rgba(0, 43, 134, 0.2);
}

.devbuild-card__num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 43, 134, 0.07);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.devbuild-card:hover .devbuild-card__num { color: rgba(0, 43, 134, 0.14); }

.devbuild-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 9px;
}

.devbuild-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Tech stack grouped sections ---- */
.techstack-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 52px;
}

.techstack-group__label {
    margin-bottom: 18px;
}

.techstack-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .dev-layer-wrap,
    .dev-layer-wrap--rev { gap: 40px; }
}

@media (max-width: 991.98px) {
    .dev-layer-wrap,
    .dev-layer-wrap--rev {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .devbuild-grid { grid-template-columns: repeat(2, 1fr); }
    .techstack-row { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

@media (max-width: 767.98px) {
    .devbuild-grid  { grid-template-columns: 1fr; gap: 16px; }
    .dev-service-card { padding: 18px 18px; gap: 14px; }
    .dev-service-card__icon { width: 36px; height: 36px; }
    .techstack-row  { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 575.98px) {
    .devbuild-card  { padding: 22px 18px; }
    .techstack-row  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SEO & DIGITAL MARKETING PAGE
   ============================================================ */

/* ---- Digital marketing service rows ---- */
.dm-services-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 52px;
}

.dm-service-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    padding: 0;
    border-bottom: 1.5px solid var(--color-border);
    background: #fff;
    transition: background 0.22s ease;
}

.dm-service-row:last-child { border-bottom: none; }
.dm-service-row:hover { background: #fafbff; }

.dm-service-row__icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 0 28px 24px;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.dm-service-row__icon svg {
    width: 28px;
    height: 28px;
    margin-top: 3px;
}

.dm-service-row__body {
    padding: 28px 32px 28px 20px;
}

.dm-service-row__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.dm-service-row__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin: 0;
}

.dm-service-row__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(251, 170, 25, 0.12);
    color: #b35d00;
    border-radius: 100px;
    padding: 3px 11px;
}

.dm-service-row__body > p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.78;
    margin-bottom: 16px;
}

.dm-service-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.dm-service-row__tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--bs-primary);
    background: var(--bs-primary-light);
    border: 1px solid rgba(0, 43, 134, 0.1);
    border-radius: 100px;
    padding: 4px 12px;
}

/* ---- SEO stats grid ---- */
.seo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.seo-stat-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.seo-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
}

.seo-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 43, 134, 0.1);
}

.seo-stat-card__num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.seo-stat-card__num span {
    font-size: 1.8rem;
    color: var(--bs-secondary);
}

.seo-stat-card__fact {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dtool-grid[style*="repeat(5"] { grid-template-columns: repeat(4, 1fr) !important; }
}

@media (max-width: 991.98px) {
    .dm-service-row { grid-template-columns: 60px 1fr; }
    .dm-service-row__icon { padding: 22px 0 22px 18px; }
    .dm-service-row__body { padding: 22px 24px 22px 14px; }
}

@media (max-width: 767.98px) {
    .dm-services-wrap { border-radius: 16px; }
    .dm-service-row { grid-template-columns: 1fr; }
    .dm-service-row__icon { padding: 22px 22px 0; justify-content: flex-start; }
    .dm-service-row__body { padding: 12px 22px 24px; }
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dtool-grid[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 575.98px) {
    .seo-stats-grid { grid-template-columns: 1fr; }
    .seo-stat-card  { padding: 24px 20px; }
    .seo-stat-card__num { font-size: 2.2rem; }
    .dm-service-row__title { font-size: 0.96rem; }
    .dtool-grid[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============================================================
   MOBILE DEVELOPMENT PAGE — platform comparison cards
   ============================================================ */
.mob-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mob-platform-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mob-platform-card--primary {
    border-color: var(--bs-primary);
    box-shadow: 0 4px 24px rgba(0, 43, 134, 0.08);
}

.mob-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 43, 134, 0.1);
    border-color: rgba(0, 43, 134, 0.3);
}

.mob-platform-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mob-platform-card__top img { flex-shrink: 0; }

.mob-platform-card__top h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin: 0 0 4px;
    line-height: 1.2;
}

.mob-platform-card__tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 10px;
    background: rgba(0, 43, 134, 0.1);
    color: var(--bs-primary);
}

.mob-platform-card__tag--alt   { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.mob-platform-card__tag--green { background: rgba(22, 163, 74, 0.1);  color: #16a34a; }
.mob-platform-card__tag--dark  { background: rgba(15, 23, 42, 0.08);  color: #334155; }

.mob-platform-card > p {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

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

@media (max-width: 575.98px) {
    .mob-platform-grid { grid-template-columns: 1fr; gap: 16px; }
    .mob-platform-card { padding: 22px 18px; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* ---- Pricing cards grid ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
    align-items: start;
}

/* ---- Individual card ---- */
.pricing-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(0, 43, 134, 0.1);
}

/* Popular card */
.pricing-card--popular {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 40px rgba(0, 43, 134, 0.13);
}

.pricing-card--popular:hover {
    box-shadow: 0 24px 60px rgba(0, 43, 134, 0.18);
}

.pricing-card__popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-secondary);
    color: var(--color-dark-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 5px 18px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(251, 170, 25, 0.4);
}

/* ---- Card header ---- */
.pricing-card__head { margin-bottom: 24px; }

.pricing-card__name {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-dark-deep);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pricing-card--popular .pricing-card__name { color: var(--bs-primary); }

.pricing-card__tagline {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- Price block ---- */
.pricing-card__price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 14px;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 6px;
}

.pricing-card__amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-dark-deep);
    letter-spacing: -0.03em;
}

.pricing-card__amount--custom {
    font-size: 1.9rem;
    color: var(--bs-primary);
}

.pricing-card__price--custom { align-items: center; }

.pricing-card__note {
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 6px;
    margin-left: 4px;
}

/* ---- Timeline pill ---- */
.pricing-card__timeline {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: #64748b;
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 7px 14px;
    margin-bottom: 22px;
    width: fit-content;
}

.pricing-card__timeline svg {
    width: 14px; height: 14px;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.pricing-card__timeline strong { color: var(--color-dark-deep); }

/* ---- Features list ---- */
.pricing-card__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    line-height: 1.5;
}

.pricing-card__features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    margin-top: 1px;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card__features li.yes {
    color: var(--color-dark-deep);
}

.pricing-card__features li.yes::before {
    background-color: rgba(22, 163, 74, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316a34a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card__features li.no {
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #cbd5e1;
}

.pricing-card__features li.no::before {
    background-color: rgba(148, 163, 184, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23cbd5e1' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---- CTA buttons ---- */
.pricing-card__btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.pricing-card__btn--outline {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    background: transparent;
}

.pricing-card__btn--outline:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 43, 134, 0.2);
}

.pricing-card__btn--solid {
    background: var(--bs-primary);
    color: #fff;
    border: 2px solid var(--bs-primary);
    box-shadow: 0 6px 20px rgba(0, 43, 134, 0.25);
}

.pricing-card__btn--solid:hover {
    background: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 43, 134, 0.3);
}

/* ---- Pricing note ---- */
.pricing-note {
    text-align: center;
    font-size: 0.84rem;
    color: #94a3b8;
    margin-top: 32px;
    line-height: 1.7;
}

.pricing-note a {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Comparison table ---- */
.pricing-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1.5px solid var(--color-border);
    margin-top: 48px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
    min-width: 680px;
}

.pricing-table thead tr {
    background: var(--color-dark-deep);
}

.pricing-table thead th {
    padding: 16px 20px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.04em;
}

.pricing-table thead th:first-child {
    text-align: left;
    color: rgba(255,255,255,0.5);
}

.pricing-table__highlight {
    background: rgba(0, 43, 134, 0.06);
}

thead .pricing-table__highlight {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

.pricing-table tbody td {
    padding: 11px 20px;
    border-bottom: 1px solid var(--color-border);
    color: #475569;
    text-align: center;
    vertical-align: middle;
}

.pricing-table tbody td:first-child {
    text-align: left;
    color: var(--color-dark-deep);
    font-weight: 500;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:hover td { background: #fafbff; }
.pricing-table tbody tr:hover .pricing-table__highlight { background: rgba(0, 43, 134, 0.09); }

.pricing-table td.y { color: #16a34a; font-size: 1rem; font-weight: 700; }
.pricing-table td.n { color: #cbd5e1; font-size: 1rem; }

/* Group header rows */
.pricing-table__group td {
    background: var(--color-light-bg);
    color: var(--bs-primary) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    text-align: left !important;
    border-bottom: 1.5px solid var(--color-border);
}

/* Foot row (price row) */
.pricing-table__foot td {
    background: var(--color-dark-deep);
    color: rgba(255,255,255,0.7) !important;
    font-weight: 600;
    padding: 16px 20px;
    border-bottom: none;
    border-top: 2px solid rgba(255,255,255,0.08);
}

.pricing-table__foot td:first-child { color: rgba(255,255,255,0.5) !important; }

.pricing-table__foot .pricing-table__highlight {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

.pricing-table__foot .pricing-table__highlight strong {
    font-size: 1rem;
    color: var(--bs-secondary);
}

/* ---- Add-ons grid ---- */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 48px;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    padding: 20px 22px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.addon-card:hover {
    border-color: rgba(0, 43, 134, 0.22);
    box-shadow: 0 8px 28px rgba(0, 43, 134, 0.07);
    transform: translateY(-2px);
}

.addon-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 4px;
}

.addon-card__desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.addon-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--bs-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.addon-card__price span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
}

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

@media (max-width: 767.98px) {
    .pricing-grid  { grid-template-columns: 1fr; gap: 20px; }
    .addon-grid    { grid-template-columns: 1fr; }
    .pricing-card  { padding: 28px 22px 24px; }
}

@media (max-width: 575.98px) {
    .pricing-card__amount { font-size: 2rem; }
    .addon-card { flex-direction: column; align-items: flex-start; gap: 10px; }
    .addon-card__price { font-size: 1.05rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Info cards grid */
.ctct-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ctct-info-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform .28s, box-shadow .28s;
}
.ctct-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,43,134,.10);
}
.ctct-info-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.ctct-info-card__icon svg { width: 26px; height: 26px; }
.ctct-info-card__icon--blue   { background: rgba(0,43,134,.10); color: var(--bs-primary); }
.ctct-info-card__icon--green  { background: rgba(16,185,129,.12); color: #059669; }
.ctct-info-card__icon--orange { background: rgba(251,170,25,.15); color: #d97706; }
.ctct-info-card__icon--purple { background: rgba(139,92,246,.12); color: #7c3aed; }
.ctct-info-card__title {
    font-size: 1rem; font-weight: 700;
    color: var(--color-dark-deep);
    margin-bottom: 8px;
}
.ctct-info-card__body {
    font-size: .875rem; color: #64748b;
    line-height: 1.7; margin-bottom: 14px;
}
.ctct-info-card__link {
    font-size: .8rem; font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    letter-spacing: .02em;
}
.ctct-info-card__link:hover { text-decoration: underline; }
.ctct-info-card__badge {
    display: inline-block;
    font-size: .72rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: .04em;
}
.ctct-info-card__badge--open {
    background: rgba(16,185,129,.12);
    color: #059669;
}

/* Main section: form + side panel */
.ctct-main-section { padding-top: 56px; }

.ctct-main-wrap {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: start;
}

/* ── Form ── */
.ctct-form-wrap {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    padding: 40px 40px 36px;
    box-shadow: 0 4px 24px rgba(0,43,134,.06);
}
.ctct-form-head { margin-bottom: 28px; }
.ctct-form-head h3 {
    font-size: 1.35rem; font-weight: 700;
    color: var(--color-dark-deep); margin-bottom: 6px;
}
.ctct-form-head p { font-size: .875rem; color: #64748b; }

.ctct-form__row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.ctct-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.ctct-form__group { display: flex; flex-direction: column; margin-bottom: 20px; position: relative; }
.ctct-form__label {
    font-size: .8rem; font-weight: 600;
    color: #475569; margin-bottom: 7px; letter-spacing: .02em;
}
.ctct-req { color: var(--bs-secondary); }

.ctct-form__input {
    background: #f8fafc;
    border: 1.5px solid #dde3ef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: .9rem; color: var(--color-dark-deep);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
    font-family: inherit;
}
.ctct-form__input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(0,43,134,.12);
    background: #fff;
}
.ctct-form__input--err {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,.10) !important;
}
.ctct-form__select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
    padding-right: 38px;
}
.ctct-form__textarea { resize: vertical; min-height: 130px; }
.ctct-form__error {
    display: none; font-size: .76rem; color: #ef4444;
    margin-top: 5px; font-weight: 500;
}
.ctct-form__char-count {
    display: block; font-size: .72rem; color: #94a3b8;
    text-align: right; margin-top: 4px;
}

.ctct-form__submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--bs-primary);
    color: #fff; border: none; cursor: pointer;
    padding: 14px 36px; border-radius: 50px;
    font-size: .95rem; font-weight: 600; letter-spacing: .02em;
    width: 100%; margin-top: 4px;
    transition: background .25s, transform .2s, box-shadow .25s;
    position: relative; overflow: hidden;
}
.ctct-form__submit:hover {
    background: #0040c8;
    box-shadow: 0 8px 24px rgba(0,43,134,.28);
    transform: translateY(-2px);
}
.ctct-form__submit-icon { width: 18px; height: 18px; flex-shrink: 0; }
.ctct-form__submit-spin {
    width: 22px; height: 22px;
    display: none; animation: ctct-spin .7s linear infinite;
    flex-shrink: 0;
}
.ctct-form__submit--loading .ctct-form__submit-label { opacity: .5; }
.ctct-form__submit--loading .ctct-form__submit-spin { display: block; }
.ctct-form__submit--loading .ctct-form__submit-icon { display: none; }
@keyframes ctct-spin { to { transform: rotate(360deg); } }

.ctct-form__note {
    font-size: .74rem; color: #94a3b8; text-align: center; margin-top: 14px; margin-bottom: 0;
}
.ctct-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Success / error messages */
.ctct-success-msg {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(16,185,129,.08); border: 1.5px solid #a7f3d0;
    border-radius: 12px; padding: 18px 20px; margin-bottom: 24px;
}
.ctct-success-msg__icon {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: #059669; display: flex; align-items: center; justify-content: center;
}
.ctct-success-msg__icon svg { width: 18px; height: 18px; stroke: #fff; }
.ctct-success-msg strong { display: block; color: #065f46; font-size: .95rem; margin-bottom: 3px; }
.ctct-success-msg p { margin: 0; font-size: .84rem; color: #047857; }
.ctct-error-msg {
    display: flex; align-items: center; gap: 10px;
    background: rgba(239,68,68,.07); border: 1.5px solid #fca5a5;
    border-radius: 12px; padding: 14px 18px; margin-bottom: 22px;
    font-size: .875rem; color: #b91c1c;
}
.ctct-error-msg svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Side panel ── */
.ctct-side { display: flex; flex-direction: column; gap: 24px; }
.ctct-side__heading {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--bs-primary);
    margin-bottom: 16px;
}

.ctct-quick-wrap, .ctct-hours-wrap, .ctct-social-wrap {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 24px;
}

.ctct-quick-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 18px; border-radius: 12px;
    font-size: .875rem; font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 10px;
}
.ctct-quick-btn:last-child { margin-bottom: 0; }
.ctct-quick-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.ctct-quick-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.ctct-quick-btn--wa    { background: #25d366; color: #fff; }
.ctct-quick-btn--email { background: var(--bs-primary); color: #fff; }
.ctct-quick-btn--call  { background: #f8fafc; color: var(--color-dark-deep); border: 1.5px solid #dde3ef; }

.ctct-hours-list { list-style: none; padding: 0; margin: 0; }
.ctct-hours-list__item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f1f5f9;
    font-size: .85rem;
}
.ctct-hours-list__item:last-child { border-bottom: none; }
.ctct-hours-list__day { color: #475569; font-weight: 500; }
.ctct-hours-list__time { color: var(--color-dark-deep); font-weight: 600; font-size: .82rem; }
.ctct-hours-list__item--closed .ctct-hours-list__time { color: #94a3b8; }
.ctct-hours-note { font-size: .75rem; color: #94a3b8; margin-top: 12px; margin-bottom: 0; line-height: 1.6; }

.ctct-social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ctct-social-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 8px; border-radius: 10px;
    font-size: .72rem; font-weight: 600;
    text-decoration: none; color: #fff;
    transition: opacity .2s, transform .2s;
    text-align: center;
}
.ctct-social-item:hover { opacity: .88; transform: translateY(-2px); }
.ctct-social-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.ctct-social-item--fb { background: #1877f2; }
.ctct-social-item--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ctct-social-item--li { background: #0a66c2; }
.ctct-social-item--tw { background: #000; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .ctct-info-grid { grid-template-columns: repeat(2, 1fr); }
    .ctct-main-wrap { grid-template-columns: 1fr; }
    .ctct-side { display: grid; grid-template-columns: repeat(2, 1fr); }
    .ctct-social-wrap { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .ctct-info-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ctct-form-wrap { padding: 24px 18px; }
    .ctct-form__row { grid-template-columns: 1fr; gap: 0; }
    .ctct-side { display: flex; flex-direction: column; }
}
@media (max-width: 480px) {
    .ctct-info-grid { grid-template-columns: 1fr; }
    .ctct-social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ENQUIRY PAGE
   ============================================================ */

.enq-section { padding-bottom: 20px; }
.enq-form-title { text-align: left; font-size: 1.6rem; }
.enq-form-intro { color: #64748b; font-size: .9rem; margin-top: 6px; }
.enq-msg-spacing { margin-bottom: 24px; }
.enq-hint--block { display: block; margin-bottom: 10px; }

.enq-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* Form column */
.enq-form-head { margin-bottom: 32px; }

.enq-form {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,43,134,.06);
}

/* Section labels */
.enq-section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: .82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--bs-primary);
    margin: 28px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #e8edf5;
}
.enq-section-label:first-of-type { margin-top: 0; }
.enq-section-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--bs-primary); color: #fff;
    font-size: .72rem; font-weight: 700; flex-shrink: 0;
}

/* Row grids */
.enq-row { display: grid; gap: 20px; margin-bottom: 0; }
.enq-row--2 { grid-template-columns: 1fr 1fr; }
.enq-row--3 { grid-template-columns: 1fr 1fr 1fr; }

/* Field group */
.enq-group {
    display: flex; flex-direction: column; margin-bottom: 20px;
}
.enq-row .enq-group { margin-bottom: 20px; }

.enq-label {
    font-size: .8rem; font-weight: 600; color: #475569;
    margin-bottom: 7px; letter-spacing: .02em;
}
.enq-input {
    background: #f8fafc; border: 1.5px solid #dde3ef;
    border-radius: 10px; padding: 12px 15px;
    font-size: .9rem; color: var(--color-dark-deep);
    transition: border-color .2s, box-shadow .2s;
    outline: none; width: 100%; font-family: inherit;
}
.enq-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(0,43,134,.12);
    background: #fff;
}
.enq-input--err {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,.10) !important;
}
.enq-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
    padding-right: 38px;
}
.enq-textarea { resize: vertical; min-height: 140px; }
.enq-error {
    display: none; font-size: .76rem; color: #ef4444;
    margin-top: 5px; font-weight: 500;
}
.enq-hint { font-size: .75rem; color: #94a3b8; margin-top: 4px; }
.enq-char-count { font-size: .72rem; color: #94a3b8; text-align: right; margin-top: 4px; }

/* Technology checkbox grid */
.enq-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.enq-tech-item {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; border-radius: 8px;
    border: 1.5px solid #dde3ef; background: #f8fafc;
    cursor: pointer; font-size: .8rem; font-weight: 500;
    color: #475569; transition: border-color .2s, background .2s, color .2s;
    user-select: none;
}
.enq-tech-item input[type="checkbox"] { display: none; }
.enq-tech-item:hover { border-color: var(--bs-primary); background: rgba(0,43,134,.04); }
.enq-tech-item:has(input:checked) {
    border-color: var(--bs-primary);
    background: rgba(0,43,134,.08);
    color: var(--bs-primary);
    font-weight: 600;
}

/* Submit button */
.enq-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--bs-primary); color: #fff;
    border: none; cursor: pointer;
    padding: 14px 36px; border-radius: 50px;
    font-size: .95rem; font-weight: 600; letter-spacing: .02em;
    width: 100%; margin-top: 8px;
    transition: background .25s, transform .2s, box-shadow .25s;
}
.enq-submit:hover {
    background: #0040c8;
    box-shadow: 0 8px 24px rgba(0,43,134,.28);
    transform: translateY(-2px);
}
.enq-submit__icon { width: 18px; height: 18px; flex-shrink: 0; }
.enq-submit__spin {
    width: 22px; height: 22px; display: none;
    animation: ctct-spin .7s linear infinite; flex-shrink: 0;
}
.enq-submit--loading .enq-submit__label { opacity: .5; }
.enq-submit--loading .enq-submit__spin  { display: block; }
.enq-submit--loading .enq-submit__icon  { display: none; }
.enq-privacy { font-size: .74rem; color: #94a3b8; text-align: center; margin-top: 14px; margin-bottom: 0; }

/* ── Side column ── */
.enq-side-col { display: flex; flex-direction: column; gap: 20px; }
.enq-side-heading {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--bs-primary); margin-bottom: 16px;
}

.enq-next-wrap, .enq-guarantee-wrap, .enq-direct-wrap {
    background: #fff; border: 1px solid #e8edf5;
    border-radius: 16px; padding: 24px;
}

.enq-next-steps { list-style: none; padding: 0; margin: 0; }
.enq-next-step {
    display: flex; gap: 14px; align-items: flex-start;
    padding-bottom: 16px; margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.enq-next-step:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.enq-next-step__num {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,43,134,.10); color: var(--bs-primary);
    font-size: .78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.enq-next-step strong { display: block; font-size: .85rem; color: var(--color-dark-deep); margin-bottom: 3px; }
.enq-next-step p { margin: 0; font-size: .78rem; color: #64748b; line-height: 1.6; }

.enq-guarantee-list { list-style: none; padding: 0; margin: 0; }
.enq-guarantee-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: .84rem; color: #334155; font-weight: 500;
    padding: 8px 0; border-bottom: 1px solid #f1f5f9;
}
.enq-guarantee-list li:last-child { border-bottom: none; }
.enq-guarantee-list svg { width: 16px; height: 16px; stroke: #059669; flex-shrink: 0; }

.enq-direct-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 10px;
    font-size: .875rem; font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 10px;
}
.enq-direct-btn:last-child { margin-bottom: 0; }
.enq-direct-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.enq-direct-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.enq-direct-btn--wa   { background: #25d366; color: #fff; }
.enq-direct-btn--call { background: #f8fafc; color: var(--color-dark-deep); border: 1.5px solid #dde3ef; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .enq-wrap { grid-template-columns: 1fr; }
    .enq-side-col { display: grid; grid-template-columns: repeat(2, 1fr); }
    .enq-direct-wrap { grid-column: 1 / -1; }
    .enq-tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .enq-form { padding: 24px 18px; }
    .enq-row--2, .enq-row--3 { grid-template-columns: 1fr; }
    .enq-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .enq-side-col { display: flex; flex-direction: column; }
}
@media (max-width: 480px) {
    .enq-tech-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SITEMAP PAGE  —  .smap-group
   ============================================================ */

.smap-group {
    background: #fff;
    border: 1.5px solid #e8edf5;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.smap-group:hover {
    box-shadow: 0 8px 32px rgba(30,64,175,.08);
    transform: translateY(-3px);
}

/* Head */
.smap-group__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #f1f5f9;
}
.smap-group__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-primary-light, #eff6ff) 0%, #e0e7ff 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.smap-group__icon svg { width: 22px; height: 22px; stroke: var(--color-primary, #2563eb); }
.smap-group__eyebrow {
    display: block;
    font-size: .72rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--color-primary, #2563eb);
    margin-bottom: 2px;
}
.smap-group__title {
    font-size: 1.1rem; font-weight: 700;
    color: var(--color-dark-deep, #0f172a);
    margin: 0;
}

/* Links list */
.smap-group__list { list-style: none; padding: 0; margin: 0; }
.smap-group__item { border-bottom: 1px solid #f1f5f9; }
.smap-group__item:last-child { border-bottom: none; }

.smap-group__link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 4px;
    text-decoration: none;
    transition: background .18s, padding-left .18s;
    border-radius: 8px;
}
.smap-group__link:hover { padding-left: 8px; }

.smap-group__arrow {
    width: 16px; height: 16px; flex-shrink: 0;
    stroke: var(--color-primary, #2563eb);
    opacity: .5;
    transition: opacity .18s, transform .18s;
}
.smap-group__link:hover .smap-group__arrow { opacity: 1; transform: translateX(3px); }

.smap-group__link-label {
    display: block;
    font-size: .9rem; font-weight: 600;
    color: var(--color-dark-deep, #0f172a);
    transition: color .18s;
}
.smap-group__link:hover .smap-group__link-label { color: var(--color-primary, #2563eb); }

.smap-group__link-desc {
    display: block;
    font-size: .78rem; color: #64748b;
    line-height: 1.5; margin-top: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .smap-group { padding: 22px 18px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 0 20px 20px;
    pointer-events: none;
    transform: translateY(110%);
    transition: transform .45s cubic-bezier(.22,.68,0,1.2);
}

.cookie-banner--visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner--hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(15,23,42,.14);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Cookie icon */
.cookie-banner__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, #fef9ec 0%, #fef3c7 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #d97706;
}
.cookie-banner__icon svg { width: 26px; height: 26px; }

/* Text body */
.cookie-banner__body { flex: 1; min-width: 0; }

.cookie-banner__title {
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.cookie-banner__text {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text strong { color: #0f172a; }

/* Action buttons */
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background .22s, color .22s, transform .18s, box-shadow .22s;
    white-space: nowrap;
}
.cookie-banner__btn:hover { transform: translateY(-2px); }

.cookie-banner__btn--decline {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}
.cookie-banner__btn--decline:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.cookie-banner__btn--accept {
    background: var(--bs-primary, #002b86);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,43,134,.25);
}
.cookie-banner__btn--accept:hover {
    background: var(--bs-secondary, #fbaa19);
    color: #1a1a1a;
    box-shadow: 0 6px 18px rgba(251,170,25,.35);
}

/* Close × button */
.cookie-banner__close {
    position: absolute;
    top: 10px; right: 10px;
    width: 28px; height: 28px;
    border: none; background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 6px;
    color: #94a3b8;
    transition: background .18s, color .18s;
    padding: 0;
}
.cookie-banner__close:hover { background: #f1f5f9; color: #0f172a; }
.cookie-banner__close svg { width: 14px; height: 14px; }

/* Responsive */
@media (max-width: 767px) {
    .cookie-banner__inner {
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px 16px 16px;
    }
    .cookie-banner__icon { display: none; }
    .cookie-banner__body { width: 100%; }
    .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

