/* ===================================
    Crafto - Logistics
====================================== */
/* font — minimal, modern sans (Manrope) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* variable */
:root {
    --alt-font: "Manrope", sans-serif;
    --primary-font: "Manrope", sans-serif;
    --base-color: #df4b24;
    --dark-gray: #141414;
    --medium-gray: #707070;
    --aluminium-grey: rgba(255, 255, 255, 0.4);
}
/* reset — apply Manrope globally, including third-party theme components */
body,
body * {
    font-family: "Manrope", sans-serif;
}
body {
    font-size: 17px;
    line-height: 28px;
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.01em;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6,
.alt-font,
.fw-600, .fw-700, .fw-800 {
    font-family: "Manrope", sans-serif !important;
    letter-spacing: -0.02em;
}
h1, h2, h3, h4 { font-weight: 600; }
a:hover{
    color: var(--dark-gray);
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .navbar-brand img {
    max-height: 64px;
}
/* Compact header — keeps logo at 50px while trimming chrome */
.navbar > .container-fluid {
    padding-top: 2px;
    padding-bottom: 2px;
}
.navbar.navbar-expand-lg {
    min-height: 84px;
}
header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

/* Sticky header — white bg + dark text on scroll */
header .navbar.sticky-active,
header .navbar.sticky-appear,
header .navbar.sticky-header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header .navbar.sticky-active .nav-link,
header .navbar.sticky-appear .nav-link,
header .navbar.sticky-header .nav-link {
    color: #141414 !important;
}
header .navbar.sticky-active .navbar-toggler-line,
header .navbar.sticky-appear .navbar-toggler-line,
header .navbar.sticky-header .navbar-toggler-line {
    background-color: #141414;
}

/* Top-space-margin offset matches new compact navbar (was 96px) */
.top-space-margin { margin-top: 70px; }
.top-space-padding { padding-top: 70px; }
.full-screen.top-space-margin { height: calc(100vh - 70px); }

/* Full-screen hero — single image, taller than default full-screen */
.hero-full-screen {
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px); /* dynamic vh — accounts for mobile browser chrome */
    width: 100%;                     /* was 100vw → avoided horizontal scroll on Windows */
}
.hero-full-screen h1 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.1;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* ============================================================
   Hero v2 — refined index.html layout
   Headline shifts to the bottom; eyebrow + subhead + dual CTAs
   stacked above a rotating services marquee strip.
   ============================================================ */
/* Vertically center the content block so the eyebrow + heading + sub + CTA
   read as one cohesive group, with the marquee anchored to the bottom edge. */
.hero-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-v2 .hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-v2 > .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 120px;  /* leave room for the marquee at the bottom */
}
.hero-v2 .hero-content-row { width: 100%; }
.hero-v2 .hero-content {
    position: relative;
    text-align: left;
}
.hero-v2 .hero-eyebrow,
.hero-v2 .hero-title,
.hero-v2 .hero-sub,
.hero-v2 .hero-actions {
    text-align: left;
}

/* Eyebrow chip with pulsing dot */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-eyebrow .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--base-color);
    box-shadow: 0 0 0 0 rgba(223,75,36,0.55);
    animation: heroPulse 2s infinite;
    flex-shrink: 0;
}
@keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0   rgba(223,75,36,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(223,75,36,0); }
    100% { box-shadow: 0 0 0 0   rgba(223,75,36,0); }
}

/* Headline + subhead */
.hero-v2 .hero-title {
    font-size: clamp(42px, 5.6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    max-width: 16ch;
    color: #ffffff;
    text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.hero-v2 .hero-sub {
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    max-width: 58ch;
    margin-top: 26px;
    margin-bottom: 40px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* CTA row — primary button + ghost link */
.hero-v2 .hero-actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}
.hero-v2 .hero-actions .btn { margin-bottom: 0; }
.hero-explore {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .25s ease;
}
.hero-explore:hover { color: #ffffff; }
.hero-explore-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.hero-explore-icon i { font-size: 17px; }
.hero-explore:hover .hero-explore-icon {
    background: #ffffff;
    color: #141414;
    border-color: #ffffff;
    transform: translate(2px, -2px);
}

/* Bottom-edge services marquee — the signature element */
.hero-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    z-index: 3;
}
.hero-marquee:before,
.hero-marquee:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.hero-marquee:before {
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.hero-marquee:after {
    right: 0;
    background: linear-gradient(270deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.hero-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding: 20px 18px;
    white-space: nowrap;
    animation: heroMarquee 38s linear infinite;
    will-change: transform;
}
.hero-marquee-item {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
}
.hero-marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--base-color);
    display: inline-block;
    flex-shrink: 0;
}
@keyframes heroMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Lift the floating speak-team pill above the marquee strip */
.hero-v2 .speak-team-pill {
    bottom: 95px;
    z-index: 4;
}

@media (max-width: 991px) {
    .hero-v2 > .container { padding-bottom: 130px; padding-top: 40px; }
    .hero-v2 .hero-sub { margin-bottom: 32px; }
    .hero-v2 .hero-actions { gap: 20px; }
}
@media (max-width: 767px) {
    .hero-v2 {
        justify-content: flex-start !important;
    }
    .hero-v2 > .container { 
        padding-bottom: 120px !important; 
        padding-top: 180px !important; 
    }
    .hero-eyebrow { 
        font-size: 10px !important; 
        padding: 7px 14px !important; 
        gap: 8px !important; 
        letter-spacing: 0.1em !important; 
        margin-bottom: 40px !important;
    }
    .hero-eyebrow .eyebrow-dot { 
        width: 7px !important; 
        height: 7px !important; 
    }
    .hero-v2 .hero-title {
        font-size: 34px !important;
        line-height: 1.15 !important;
        margin-bottom: 30px !important;
    }
    .hero-v2 .hero-sub {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-top: 20px !important;
        margin-bottom: 45px !important;
    }
    .hero-v2 .hero-actions {
        gap: 24px !important;
    }
    .hero-v2 .hero-actions .btn.btn-large {
        font-size: 14px !important;
        padding: 10px 24px !important;
        width: auto !important;
        max-width: fit-content !important;
    }
    .hero-v2 .hero-actions .hero-explore {
        font-size: 12px !important;
        gap: 10px !important;
    }
    .hero-v2 .speak-team-pill { 
        bottom: 85px !important; 
        right: 15px !important; 
    }
    .hero-marquee-track { 
        gap: 26px !important; 
        padding: 16px 12px !important; 
    }
    .hero-marquee-item { 
        font-size: 12px !important; 
        letter-spacing: 0.18em !important; 
    }
    .hero-explore-icon { 
        width: 36px !important; 
        height: 36px !important; 
    }
}

/* ============================================================
   Service carousel — remove top-left icons + equalize card heights
   so every slide in the swiper has identical dimensions regardless
   of the source image's aspect ratio.
   ============================================================ */
.slider-three-slide .interactive-banner-style-06 .banners-icon {
    display: none !important;
}
.slider-three-slide .swiper-wrapper {
    align-items: stretch;
}
.slider-three-slide .swiper-slide {
    height: auto;
    display: flex;
}
.slider-three-slide .interactive-banner-style-06 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.slider-three-slide .interactive-banners-image {
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slider-three-slide .interactive-banners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Home about — full-width split with no container */
.home-about-full > .container-fluid,
.home-about-full > .container-fluid > .row {
    min-height: 100vh;
}
.home-about-full .home-about-text {
    padding: 110px 8vw;
    min-height: 100vh;
}
.home-about-full .home-about-inner {
    max-width: 720px;
}
.home-about-full .home-about-inner h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.15;
}
.home-about-full .home-about-inner p {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.7;
}
.home-about-full .home-about-image {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 4vw;
}
.home-about-stack {
    position: relative;
    width: 100%;
    max-width: 780px;
    aspect-ratio: 4 / 3;
}
.home-about-stack-img {
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.home-about-stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-about-stack-back {
    top: 0;
    right: 0;
    width: 70%;
    height: 75%;
    animation: home-about-float 6s ease-in-out infinite;
}
.home-about-stack-front {
    bottom: 0;
    left: 0;
    width: 62%;
    height: 65%;
    z-index: 2;
    animation: home-about-float 5s ease-in-out infinite;
    animation-delay: -2.5s;
}
@keyframes home-about-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
    .home-about-stack-back,
    .home-about-stack-front {
        animation: none;
    }
}
@media (max-width: 991px) {
    .home-about-full > .container-fluid,
    .home-about-full > .container-fluid > .row { min-height: 0; }
    .home-about-full .home-about-text { padding: 60px 30px; min-height: 0; }
    .home-about-full .home-about-image { min-height: 0; padding: 40px 30px 60px; }
    .home-about-stack { max-width: 560px; }
}

/* Services intro headings aligned with the home-about-text left edge (8vw) */
.services-intro-fluid {
    padding-left: 8vw;
    padding-right: 8vw;
}
@media (max-width: 991px) {
    .services-intro-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* About-page full-bleed image strip */
.about-image-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.about-image-fullbleed img {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    display: block;
}

/* ============================================================
   RED USAGE POLICY
   Client feedback: red feels overused. Restrict --base-color
   strictly to the primary CTA button ("Get a quote" / "Explore")
   and a few subtle accents (hover underline, focus ring).
   Everything else falls back to dark-gray / medium-gray.
   ============================================================ */

/* 1. Neutralize red text + icons site-wide */
.text-base-color,
.text-base-color i,
i.text-base-color {
    color: var(--dark-gray) !important;
}

/* 2. Neutralize red backgrounds (badges, blocks, pills, ribbons) */
.bg-base-color,
section.bg-base-color,
.interactive-banner-style-05 .bg-base-color,
span.bg-base-color {
    background-color: var(--dark-gray) !important;
}

/* 3. Neutralize red borders */
.border-base-color,
.border-color-base-color {
    border-color: var(--dark-gray) !important;
}

/* 4. Neutralize red link underlines and hover states (except inside CTA) */
a.text-base-color,
.text-base-color-hover:hover {
    color: var(--dark-gray) !important;
}

/* 5. Neutralize gradients that bake in the red */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, var(--dark-gray) 0%, transparent 100%) !important;
}

/* 6. KEEP RED — primary CTA button + its hover state.
      This is the *only* place red should appear. */
.btn.btn-base-color,
.btn.btn-box-shadow.btn-base-color,
header .btn.btn-base-color,
header .btn.btn-box-shadow.btn-base-color {
    background-color: var(--base-color) !important;
    border-color: var(--base-color) !important;
    color: #ffffff !important;
}
.btn.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    background-color: #c43d1c !important;
    border-color: #c43d1c !important;
    color: #ffffff !important;
}
/* Restore base-color tokens nested *inside* the CTA so the button
   keeps its own colored layers/animations correctly. */
.btn.btn-base-color .text-base-color,
.btn.btn-base-color .bg-base-color {
    color: inherit !important;
    background-color: transparent !important;
}

/* 7. Keep the floating WhatsApp pill hidden */
.whatsapp-button { display: none !important; }

/* Footer to black */
footer.footer-dark {
    background: #000 !important;
    color: #ffffff;
}
footer.footer-dark a,
footer.footer-dark p,
footer.footer-dark span,
footer.footer-dark li {
    color: #ffffff;
}
footer.footer-dark a:hover {
    color: #cccccc;
}

/* Speak-with-team floating pill */
.speak-team-pill {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    padding: 6px 10px 6px 6px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 5;
    transition: transform .25s ease;
}
.speak-team-pill:hover { transform: translateY(-2px); color: #141414; }
.speak-team-pill .avatars {
    display: inline-flex;
    margin-right: 12px;
}
.speak-team-pill .avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}
.speak-team-pill .avatars img + img { margin-left: -12px; }
.speak-team-pill .speak-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #141414;
    text-transform: uppercase;
    margin-right: 14px;
}
.speak-team-pill .speak-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #df4b24;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
@media (max-width: 575px) {
    .speak-team-pill { right: 15px; bottom: 15px; }
    .speak-team-pill .speak-label { display: none; }
}
.header-top-bar div>a {
    color: var(--light-gray);
}
.header-top-bar div>a:hover {
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}
header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: white;
}
header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: white;
}
header .btn.btn-small {
    font-size: 15px; 
    padding: 10px 18px;
}
/* btn */
.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}
.btn { 
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}
.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}
.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}
.btn.btn-medium {
    font-size: 16px; 
    padding: 12px 24px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px; 
    padding: 9px 20px;
}

/* counter style — accent kept neutral (was red) */
.counter-style-04 .vertical-counter:after {
    color: var(--dark-gray);
}
/* review stars — gold instead of red */
.review-star-icon i {
    color: #f5b301;
}

.google-maps-link a:hover {
    color: var(--white);
}

/* footer style */
footer ul li {
    margin-bottom: 1px;
}
footer p {
    line-height: 28px;
}
/* page title — fluid so the big heading scales down on phones/tablets
   instead of overflowing (was a fixed 4.375rem / 70px at every width). */
.page-title-double-large h1 {
    font-size: clamp(2.125rem, 6.2vw, 4.375rem);
    line-height: 1.08;
}
.page-title-double-large h2 {
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.6;
}

/* top bottom left right class */
.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}
/* Outside box */
.outside-box-top-205px {
    margin-top: -205px;
}
/* Transparent background color — was red; now neutral dark */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, var(--dark-gray) 0%, transparent 100%);
}
@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }
    .xl-w-180px {
        width: 180px;
    }
}
@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }
}
@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 0;
    }
    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }
}

/* ============================================================
   Services Showcase — premium tabbed section (index.html)
   Card layout with animated vertical tab nav, image transitions,
   feature lists, and entrance animations.
   ============================================================ */
.services-showcase {
    position: relative;
    padding: 120px 0;
    background: #f5f5f5;
    overflow: hidden;
}
.services-showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.services-showcase-bg .bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: blobFloat 18s ease-in-out infinite;
}
.services-showcase-bg .bg-blob-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(223,75,36,0.18), transparent 70%);
}
.services-showcase-bg .bg-blob-2 {
    width: 520px;
    height: 520px;
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, rgba(20,20,20,0.12), transparent 70%);
    animation-delay: -9s;
}
.services-showcase-bg .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20,20,20,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,20,20,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -30px) scale(1.08); }
}

.services-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--base-color);
    margin-bottom: 18px;
}
.services-showcase-eyebrow .eyebrow-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--base-color);
    opacity: 0.7;
}
.services-showcase-heading {
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 600;
}
.services-showcase-heading .heading-accent {
    position: relative;
    font-style: italic;
    font-weight: 600;
    color: var(--base-color);
    white-space: nowrap;
}
.services-showcase-heading .heading-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 8px;
    background: rgba(223,75,36,0.18);
    border-radius: 8px;
    z-index: -1;
    transform: scaleX(0.92);
    transform-origin: left;
}

/* Showcase card */
.services-showcase-card {
    position: relative;
    margin-top: 60px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px -30px rgba(20,20,20,0.18),
                0 8px 24px -8px rgba(20,20,20,0.06);
    overflow: hidden;
    border: 1px solid rgba(20,20,20,0.04);
}

/* Tab navigation column */
.services-nav-col {
    background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
    border-right: 1px solid rgba(20,20,20,0.06);
    padding: 36px 0;
    position: relative;
}
.services-nav-inner {
    padding: 0 28px;
}
.services-nav-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--medium-gray);
    padding: 0 22px;
    margin-bottom: 18px;
}
.services-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    display: block;
}
.services-nav-item {
    display: block;
    margin-bottom: 6px;
}
.services-nav-link {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    column-gap: 16px;
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background-color .4s ease,
                border-color .4s ease,
                color .4s ease,
                transform .4s ease,
                box-shadow .4s ease;
    overflow: hidden;
}
.services-nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--base-color);
    border-radius: 0 4px 4px 0;
    transition: height .45s cubic-bezier(.4,.2,.2,1), top .45s cubic-bezier(.4,.2,.2,1);
}
.services-nav-link .nav-index {
    font-size: 12px;
    font-weight: 700;
    color: var(--medium-gray);
    letter-spacing: 0.1em;
    transition: color .35s ease;
}
.services-nav-link .nav-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(20,20,20,0.08);
    color: var(--dark-gray);
    font-size: 18px;
    transition: background-color .35s ease, color .35s ease,
                border-color .35s ease, transform .35s ease;
}
.services-nav-link .nav-body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.services-nav-link .nav-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--dark-gray);
    transition: color .35s ease;
}
.services-nav-link .nav-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--medium-gray);
    margin-top: 3px;
    letter-spacing: 0.01em;
    transition: color .35s ease, opacity .35s ease;
}
.services-nav-link .nav-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    color: var(--dark-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .35s ease, transform .35s ease, background-color .35s ease, color .35s ease;
}

/* Hover state */
.services-nav-link:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(20,20,20,0.06);
    color: var(--dark-gray);
}
.services-nav-link:hover .nav-icon {
    transform: translateY(-2px);
}
.services-nav-link:hover .nav-arrow {
    opacity: 0.55;
    transform: translateX(0);
}

/* Active state */
.services-nav-link.active {
    background: #ffffff;
    border-color: rgba(20,20,20,0.08);
    box-shadow: 0 14px 40px -16px rgba(20,20,20,0.16);
    color: var(--dark-gray);
}
.services-nav-link.active::before {
    height: 60%;
    top: 20%;
}
.services-nav-link.active .nav-index {
    color: var(--base-color);
}
.services-nav-link.active .nav-icon {
    background: var(--base-color);
    border-color: var(--base-color);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.05);
}
.services-nav-link.active .nav-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--base-color);
    color: #ffffff;
}

/* Content column */
.services-content-col {
    position: relative;
    background: #ffffff;
}
.services-tab-content {
    position: relative;
    height: 100%;
}
.services-tab-content > .tab-pane {
    transition: opacity .5s ease;
}
.services-pane {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    gap: 0;
    min-height: 520px;
}
.services-pane-media {
    position: relative;
    overflow: hidden;
}
.services-pane-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    opacity: 0;
    transition: transform 1.4s cubic-bezier(.2,.6,.2,1), opacity .6s ease;
}
.tab-pane.show.active .services-pane-media img {
    transform: scale(1);
    opacity: 1;
}
.services-pane-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
.services-pane-media .media-tag {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-gray);
    z-index: 2;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .6s ease .25s, opacity .6s ease .25s;
}
.services-pane-media .media-tag i {
    color: var(--base-color);
    font-size: 14px;
}
.tab-pane.show.active .services-pane-media .media-tag {
    transform: translateY(0);
    opacity: 1;
}

/* Body */
.services-pane-body {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-pane-body > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}
.tab-pane.show.active .services-pane-body > * {
    opacity: 1;
    transform: translateY(0);
}
.tab-pane.show.active .services-pane-body > *:nth-child(1) { transition-delay: .18s; }
.tab-pane.show.active .services-pane-body > *:nth-child(2) { transition-delay: .26s; }
.tab-pane.show.active .services-pane-body > *:nth-child(3) { transition-delay: .34s; }
.tab-pane.show.active .services-pane-body > *:nth-child(4) { transition-delay: .42s; }
.tab-pane.show.active .services-pane-body > *:nth-child(5) { transition-delay: .50s; }

.pane-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--base-color);
    margin-bottom: 22px;
}
.pane-eyebrow i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(223,75,36,0.12);
    color: var(--base-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pane-title {
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 18px;
}
.pane-title .title-accent {
    position: relative;
    color: var(--dark-gray);
    font-weight: 700;
    background-image: linear-gradient(180deg, transparent 65%, rgba(223,75,36,0.22) 65%);
    padding: 0 2px;
}
.pane-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0 0 26px;
    max-width: 52ch;
}
.pane-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.pane-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 100px;
    background: #fafafa;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.pane-features li:hover {
    background: #ffffff;
    border-color: rgba(223,75,36,0.35);
    transform: translateY(-2px);
}
.pane-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--base-color);
    color: #ffffff;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.pane-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 22px;
    border-radius: 100px;
    background: var(--dark-gray);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 10px 24px -10px rgba(20,20,20,0.4);
}
.pane-cta .cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--base-color);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background-color .3s ease;
}
.pane-cta:hover {
    background: var(--base-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -12px rgba(223,75,36,0.5);
}
.pane-cta:hover .cta-icon {
    background: #ffffff;
    color: var(--base-color);
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1199px) {
    .services-pane { grid-template-columns: 1fr 1fr; min-height: 480px; }
    .services-pane-body { padding: 44px 36px; }
}
@media (max-width: 991px) {
    .services-showcase { padding: 80px 0; }
    .services-showcase-card { margin-top: 40px; }
    .services-nav-col { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(20,20,20,0.06); }
    .services-nav-inner { padding: 0 18px; }
    .services-nav-label { padding: 0 14px; margin-bottom: 14px; }
    .services-nav { display: flex; flex-wrap: wrap; gap: 8px; }
    .services-nav-item { flex: 1 1 calc(50% - 8px); margin-bottom: 0; }
    .services-nav-link { padding: 14px 16px; column-gap: 12px; }
    .services-nav-link .nav-sub { display: none; }
    .services-nav-link .nav-arrow { display: none; }
    .services-nav-link::before { display: none; }
    .services-pane { grid-template-columns: 1fr; min-height: 0; }
    .services-pane-media { aspect-ratio: 16/10; }
    .services-pane-body { padding: 36px 28px; }
}
@media (max-width: 575px) {
    .services-showcase { padding: 60px 0; }
    .services-showcase-card { border-radius: 18px; }
    .services-nav-item { flex: 1 1 100%; }
    .services-nav-link .nav-index { display: none; }
    .services-pane-body { padding: 28px 22px; }
    .pane-features { gap: 8px; }
    .pane-features li { padding: 6px 12px; font-size: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .services-showcase-bg .bg-blob { animation: none; }
    .services-pane-media img,
    .services-pane-media .media-tag,
    .services-pane-body > *,
    .services-nav-link,
    .services-nav-link * { transition: none !important; }
    .services-pane-media img { transform: none; opacity: 1; }
}

/* ============================================================
   RESPONSIVE & CROSS-BROWSER HARDENING  (loaded last → wins cascade)
   Goal: render correctly from ~320px phones, through tablets and 13"
   laptops, up to ultra-wide monitors — on Chrome / Safari / Firefox /
   Edge across iOS, Android, macOS and Windows.
   ============================================================ */

/* 1. Never allow a sideways scrollbar. Full-bleed elements use 100vw,
      which on Windows desktop includes the vertical scrollbar width and
      pushes a few px of horizontal overflow. Clip it at the root. */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

/* 2. Media never overflows its column. */
img, svg, video, iframe { max-width: 100%; }

/* 3. Full-bleed image strip (about page): full viewport on desktop,
      progressively shorter on tablet/phone so it isn't an endless wall. */
@media (max-width: 1199px) {
    .about-image-fullbleed img { height: 72vh; min-height: 72vh; }
}
@media (max-width: 991px) {
    .about-image-fullbleed img { height: 60vh; min-height: 60vh; }
}
@media (max-width: 575px) {
    .about-image-fullbleed img { height: 48vh; min-height: 48vh; }
}

/* 4. Hero — small phones: top-align the content and reserve room at the
      bottom so the headline block can never collide with the marquee /
      "speak with team" pill. Also tighten the type for narrow widths. */
@media (max-width: 575px) {
    .hero-v2 { justify-content: flex-start; }
    .hero-v2 > .container {
        padding-top: 110px;   /* clear the transparent header */
        padding-bottom: 150px; /* clear marquee + floating pill */
    }
    .hero-v2 .hero-title { font-size: clamp(30px, 8.5vw, 44px); }
    .hero-v2 .hero-sub   { font-size: 15px; line-height: 1.6; }
    .hero-v2 .hero-actions { gap: 16px; width: 100%; }
    .hero-v2 .hero-actions .btn { width: 100%; text-align: center; }
}

/* 5. Hero — short / landscape screens (e.g. phone on its side): let the
      section grow with content instead of forcing a tall empty viewport. */
@media (max-height: 600px) and (min-width: 576px) {
    section.hero-full-screen.hero-v2 { min-height: auto; height: auto; }
    .hero-v2 { justify-content: flex-start; }
    .hero-v2 > .container { padding-top: 100px; padding-bottom: 120px; }
    .hero-v2 .hero-title { font-size: clamp(32px, 6vw, 52px); }
    .hero-v2 .hero-sub { margin-top: 16px; margin-bottom: 24px; }
}

/* 6. Trim the logo on very small phones so it never crowds the toggler. */
@media (max-width: 575px) {
    header .navbar-brand img { max-height: 46px; }
}

/* 7. Prevent iOS Safari from auto-zooming when a form field is focused
      (it zooms whenever the input font-size is below 16px). */
@media (max-width: 767px) {
    .contact-form-style-01 .form-control,
    .contact-form-style-01 .form-control::placeholder,
    input.form-control,
    textarea.form-control,
    select.form-control { font-size: 16px; }
}

/* 8. Ultra-wide monitors: cap the full-bleed services card and keep the
      about split readable so content doesn't stretch into a thin band. */
@media (min-width: 1920px) {
    section.services-showcase .services-showcase-card {
        max-width: 1760px;
        margin-left: auto;
        margin-right: auto;
    }
    .home-about-full .home-about-inner { max-width: 720px; }
    .intro-banner { min-height: 90vh; min-height: 90dvh; }
}

/* ============================================================
   Footer layout — shared across all pages
   Logo on the left, info columns (Address · Pages · Contact)
   grouped on the right. Single source of truth.
   ============================================================ */
footer.footer-dark .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
}

/* nudge the logo in slightly from the left edge */
footer.footer-dark .footer-col--brand {
    flex: 0 0 auto;
    padding-left: 2vw;
}

/* enlarge the footer logo (theme default caps it at 30px) */
footer.footer-dark .footer-logo img {
    max-height: 52px;
    width: auto;
}

/* the three text columns sit together on the right */
footer.footer-dark .footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

footer.footer-dark .footer-heading {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0 0 18px;
    line-height: 1.2;
}

footer.footer-dark .footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
}

footer.footer-dark .footer-links {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

footer.footer-dark .footer-links li {
    margin: 0 0 14px !important;
    padding: 0 !important;
    line-height: 1.3;
}

footer.footer-dark .footer-links li:last-child {
    margin-bottom: 0 !important;
}

footer.footer-dark .footer-links a {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

footer.footer-dark .footer-links a:hover {
    color: #c0c0c0;
}

@media (max-width: 991px) {
    footer.footer-dark .footer-col--brand {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    footer.footer-dark .footer-top {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    footer.footer-dark .footer-info {
        justify-content: center;
        gap: 40px;
    }
}

/* ============================================================
   MOBILE & TOUCH — iOS / Android comprehensive responsiveness
   These rules are loaded last so they win the cascade cleanly.
   Covers: iPhone SE (320px) → iPhone 16 Pro Max → Android XL
   ============================================================ */

/* 1. Eliminate the 300 ms tap delay and highlight flash on all
      tappable elements — makes the site feel native on iOS/Android */
a, button, .btn, input, textarea, select,
.nav-link, .services-nav-link, .speak-team-pill,
.services-nav-item {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
/* Swiper slides need their own touch-action so swipe gestures still work */
.swiper-slide { -webkit-tap-highlight-color: transparent; }

/* 2. iOS safe-area insets — respects the notch (iPhone X+) and
      the home-indicator bar so content is never hidden behind them */
@supports (padding: env(safe-area-inset-bottom)) {
    header .navbar > .container-fluid {
        padding-left:  max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    footer.footer-dark .container-fluid {
        padding-left:  max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
        padding-bottom: env(safe-area-inset-bottom);
    }
    .hero-marquee {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* 3. Minimum touch-target sizes (Apple HIG: 44 × 44 pt) */
.navbar-toggler {
    min-width:  44px;
    min-height: 44px;
    padding: 8px;
}
.btn {
    min-height: 44px;
}
.services-nav-link {
    min-height: 48px;
}

/* 4. CTA section (#down-section) — the inline style locks min-height:72vh
      and the Bootstrap utility class fs-40 won't auto-scale on phones */
@media (max-width: 991px) {
    #down-section { min-height: 50vh !important; }
    #down-section .fs-40 {
        font-size: clamp(22px, 4.5vw, 32px) !important;
        line-height: 1.3 !important;
    }
    #down-section .lh-50 { line-height: 1.3 !important; }
}
@media (max-width: 575px) {
    #down-section {
        min-height: unset !important;
        padding: 64px 20px !important;
    }
    #down-section .btn {
        width: 100%;
        max-width: 340px;
    }
    #down-section .col-xxl-10 {
        padding-left: 0;
        padding-right: 0;
    }
}

/* 5. Home-about image stack — ensure proper sizing at smallest phones */
@media (max-width: 575px) {
    .home-about-full .home-about-text  { padding: 48px 20px; }
    .home-about-full .home-about-image { padding: 0 20px 48px; }
    .home-about-stack { aspect-ratio: 4 / 3; }
    .home-about-full .home-about-inner h2 {
        font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    }
    .home-about-full .home-about-inner p {
        font-size: 1rem;
    }
}

/* 6. Services page — overlapping "artistic" dual-image block
      (absolute-positioned second image overlaps the floated first).
      On mobile collapse both into a simple vertical stack. */
@media (max-width: 991px) {
    .col-lg-4.position-relative {
        overflow: visible;
    }
    .col-lg-4 .w-80.float-end {
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    .col-lg-4 .w-50.position-absolute {
        position: relative !important;
        left:   auto !important;
        bottom: auto !important;
        width:  55% !important;
        margin-top: -30px;
        margin-left: auto;
        display: block;
    }
}
@media (max-width: 575px) {
    .col-lg-4 .w-50.position-absolute {
        width: 70% !important;
        margin-top: -20px;
    }
}

/* 7. Navigation — proper spacing for the mobile collapsed menu */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding-top:    12px;
        padding-bottom: 12px;
    }
    header .navbar-brand img { max-height: 44px; }
}

/* 8. Page-title banners on inner pages (About / Services / Contact) —
      trim excessive vertical height on small screens */
@media (max-width: 767px) {
    .page-title-big-typography.cover-background {
        padding-top:    100px !important;
        padding-bottom: 40px  !important;
        min-height: unset !important;
    }
}
@media (max-width: 575px) {
    .page-title-big-typography.cover-background {
        padding-top:    84px !important;
        padding-bottom: 32px !important;
    }
}

/* 9. About page — VMS (Vision / Mission / Stand-For) cards */
@media (max-width: 575px) {
    .vms-cards .vms-card      { padding: 32px 20px; }
    .vms-cards .vms-icon      { width: 64px; height: 64px; }
    .vms-cards .vms-icon i    { font-size: 26px; }
    .vms-cards .vms-title     { font-size: 19px; }
}

/* 10. About page — "Why Choose Us" feature-box grid
       The col-sm-6 staggered offsets look odd on small phones */
@media (max-width: 575px) {
    .col-sm-6.mt-30px { margin-top: 0 !important; }
    .col-sm-6 .bg-white.icon-with-text-style-05 { margin-bottom: 20px; }
}

/* 11. Contact page — form section inner padding */
@media (max-width: 575px) {
    .bg-very-light-gray.p-8 { padding: 1.5rem !important; }
}

/* 12. Footer — complete centered stack on very small phones */
@media (max-width: 575px) {
    footer.footer-dark .footer-top {
        align-items: center;
        padding-top: 40px;
    }
    footer.footer-dark .footer-col--brand { padding-left: 0; }
    footer.footer-dark .footer-info {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 28px;
    }
    footer.footer-dark .footer-col {
        text-align: center;
        width: 100%;
    }
}

/* 13. Swiper carousel — remove right-bleed on small screens so
       the cards never poke past the viewport edge */
@media (max-width: 767px) {
    .outside-box-right-30 { margin-right: 0 !important; }
}

/* 14. Landscape orientation — keep hero usable on phones rotated sideways */
@media (max-height: 500px) and (orientation: landscape) {
    section.hero-full-screen.hero-v2 {
        min-height: auto !important;
        height: auto !important;
    }
    .hero-v2 > .container {
        padding-top:    80px;
        padding-bottom: 110px;
    }
    .hero-v2 .hero-title { font-size: clamp(26px, 6vw, 42px); }
    .hero-v2 .hero-sub   { font-size: 14px; margin-top: 12px; margin-bottom: 20px; }
}

/* 15. iOS image rendering — prevent blurry images on retina displays */
img { image-rendering: -webkit-optimize-contrast; }

/* 16. Prevent long email/phone strings from causing horizontal overflow
       in the footer on narrow screens */
footer.footer-dark .footer-links a { word-break: break-all; }
@media (min-width: 576px) {
    footer.footer-dark .footer-links a { word-break: normal; }
}

/* 17. Services showcase — ensure the tab nav is scrollable horizontally
       if many items are shown on very narrow phones */
@media (max-width: 375px) {
    .services-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .services-nav-item { flex: 0 0 auto; }
    .services-nav-link { padding: 12px 14px; }
}

/* 18. Floating contact dock — call / email / WhatsApp icons fixed to the
       right edge on every page */
.floating-contact {
    display: none !important;
}
.floating-contact__btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.floating-contact__btn i { line-height: 1; }
.floating-contact__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    filter: brightness(1.05);
}
.floating-contact__btn--call    { background: linear-gradient(135deg, #2196f3 0%, #0d6efd 100%); }
.floating-contact__btn--mail    { background: linear-gradient(135deg, #f15a29 0%, #d63324 100%); }
.floating-contact__btn--whatsapp{ background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }

/* Subtle pulse ring on the WhatsApp button to draw the eye */
.floating-contact__btn--whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: floatingPulse 2.2s ease-out infinite;
}
@keyframes floatingPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0;   }
}

/* Hover label tooltip */
.floating-contact__btn::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1f1f1f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-contact__btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 575px) {
    .floating-contact { right: 14px; gap: 12px; }
    .floating-contact__btn { width: 48px; height: 48px; font-size: 20px; }
    .floating-contact__btn::before { display: none; }
}