/* ================================================
   SPENGIL SOLUTIONS — Custom Styles
   Brand overlay on Bootstrap 5.3
   ================================================ */

:root {
    --dark:       #363231;
    --teal:       #2596be;
    --teal-dark:  #1a7a9e;
    --teal-glow:  rgba(37, 150, 190, 0.45);
    --light:      #f4f6f8;
    --white:      #ffffff;
    --text:       #444444;
    --transition: all 0.3s ease;
}

/* ================================================
   BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    padding-top: 80px; /* offset for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }

/* ================================================
   PRELOADER
   ================================================ */
/* ================================================
   PRELOADER
   ================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #0e1620 0%, #05080c 70%, #020406 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

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

/* Concentric pulse rings radiating outward */
.preloader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 14px));
    width: 520px;
    height: 520px;
    pointer-events: none;
    z-index: 0;
}
.preloader-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--teal-glow);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: ringPulse 3.2s cubic-bezier(.25,.6,.3,1) infinite;
}
.preloader-rings span:nth-child(1) { animation-delay: 0s;   }
.preloader-rings span:nth-child(2) { animation-delay: .8s;  }
.preloader-rings span:nth-child(3) { animation-delay: 1.6s; }
.preloader-rings span:nth-child(4) { animation-delay: 2.4s; }

@keyframes ringPulse {
    0%   { width: 120px; height: 120px; opacity: .55; }
    100% { width: 520px; height: 520px; opacity: 0;   }
}

/* Infinity path with glowing tracer */
.preloader-infinity {
    width: 200px;
    height: 100px;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.preloader-infinity path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.infinity-bg {
    stroke: rgba(37, 150, 190, 0.18);
    stroke-width: 5;
}
.infinity-trace {
    stroke: #c8f2ff;
    stroke-width: 5;
    stroke-dasharray: 80 920;
    filter:
        drop-shadow(0 0 4px #7de5ff)
        drop-shadow(0 0 10px var(--teal))
        drop-shadow(0 0 18px var(--teal-glow));
    animation: infinityTrace 2.4s linear infinite;
}
@keyframes infinityTrace {
    from { stroke-dashoffset: 0;     }
    to   { stroke-dashoffset: -1000; }
}

.preloader-text {
    position: relative;
    z-index: 1;
    color: #8fc5da;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px var(--teal-glow);
}
.preloader-ellipsis::after {
    content: '';
    animation: ellipsis 1.6s steps(4, end) infinite;
}
@keyframes ellipsis { 0%{content:'';} 25%{content:'.';} 50%{content:'..';} 75%,100%{content:'...';} }

@media (max-width: 480px) {
    .preloader-infinity { width: 150px; height: 75px; }
    .preloader-rings    { width: 360px; height: 360px; }
    @keyframes ringPulse {
        0%   { width: 90px;  height: 90px;  opacity: .55; }
        100% { width: 360px; height: 360px; opacity: 0;   }
    }
}
@media (prefers-reduced-motion: reduce) {
    .infinity-trace,
    .preloader-rings span,
    .preloader-ellipsis::after { animation: none; }
    .infinity-trace { stroke-dashoffset: -250; }
}

/* ================================================
   NAVBAR
   ================================================ */
/* ------------------------------------------------
   NAVBAR — white bar, teal accent bottom border
   ------------------------------------------------ */
#mainNav {
    background: #ffffff;
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    padding: 2px 0;
}
#mainNav.scrolled {
    border-bottom-color: var(--teal);
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    padding: 2px 0;
}

/* Logo — now using the pre-cropped /logo/logo-nav.png which has its
   transparent padding trimmed. The artwork fills the height naturally
   without any transform:scale() trick, so the logo stays fully within
   the navbar bounds. */
.navbar-brand {
    padding: 0 !important;
    margin-right: 1.25rem;
}

.nav-logo {
    display: block;
    height: 110px;               /* drives navbar height */
    width: auto;
    max-width: none;
    max-height: none;
    transition: opacity 0.3s ease;
}
#mainNav.scrolled .nav-logo {
    height: 90px;
}
.navbar-brand:hover .nav-logo { opacity: 0.85; }

/* Nav links */
.navbar-nav .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark) !important;
    padding: 6px 12px !important;
    transition: var(--transition);
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px; right: 12px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--teal) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* ================================================
   BUTTONS
   ================================================ */
.btn-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-teal:hover, .btn-teal:focus {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 0 20px var(--teal-glow), 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 24px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 0 20px var(--teal-glow);
    transform: translateY(-1px);
}

.btn-outline-light-teal {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 24px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-outline-light-teal:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ================================================
   SECTION HELPERS
   ================================================ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-title-white { color: var(--white); }

.teal-bar {
    width: 50px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 24px;
}
.teal-bar.centered { margin-left: auto; margin-right: auto; }

/* section backgrounds */
.bg-dark-brand { background: var(--dark); }
.bg-light-brand { background: var(--light); }
.text-teal { color: var(--teal) !important; }

/* ================================================
   HERO (HOME)
   ================================================ */
.hero-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(54,50,49,0.96) 0%, rgba(37,150,190,0.45) 100%);
    z-index: 1;
}
.hero-home .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}
.hero-home .hero-badge {
    display: inline-block;
    background: rgba(37,150,190,0.18);
    border: 1px solid rgba(37,150,190,0.5);
    color: var(--teal);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-home h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-home h1 span { color: var(--teal); }
.hero-typed-wrap {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    min-height: 2.4em;
}
.typed-cursor { color: var(--teal); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Scroll chevron */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   INNER PAGE BANNER HERO
   ================================================ */
.page-banner {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(54,50,49,0.97) 0%, rgba(37,150,190,0.5) 100%);
}
.page-banner-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,150,190,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,150,190,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-banner-content {
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}
.page-banner h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--teal); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
    background: var(--dark);
    padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
    display: none;
}
@media (min-width: 768px) { .stat-divider { display: block; } }

/* ================================================
   SERVICE CARDS
   ================================================ */
.service-card {
    background: var(--white);
    border: none;
    border-radius: 10px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2.4rem;
    color: var(--teal);
    margin-bottom: 18px;
    display: block;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--teal-glow));
}
.service-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-card .btn-link-teal {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.service-card .btn-link-teal:hover { gap: 9px; color: var(--teal-dark); }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.feature-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.feature-icon-box {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: rgba(37,150,190,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    transition: var(--transition);
}
.feature-block:hover .feature-icon-box {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 15px var(--teal-glow);
}
.feature-block h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.feature-block p { font-size: 0.85rem; color: #777; margin: 0; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--teal), rgba(37,150,190,0.2));
}
.process-step:last-child::after { display: none; }

.step-circle {
    width: 56px;
    height: 56px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 18px var(--teal-glow);
    position: relative;
    z-index: 1;
}
.process-step h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.process-step p { font-size: 0.82rem; color: #777; margin: 0; }

/* ================================================
   INDUSTRIES STRIP
   ================================================ */
.industry-tile {
    text-align: center;
    padding: 24px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
    cursor: default;
}
.industry-tile:hover {
    background: rgba(37,150,190,0.12);
    border-color: rgba(37,150,190,0.3);
    transform: translateY(-4px);
}
.industry-tile i {
    font-size: 2rem;
    color: var(--teal);
    display: block;
    margin-bottom: 10px;
}
.industry-tile span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ================================================
   SUPPORT TIER CARDS
   ================================================ */
.tier-card {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
}
.tier-card:hover, .tier-card.active {
    border-color: var(--teal);
    box-shadow: 0 8px 30px var(--teal-glow);
    transform: translateY(-4px);
}
.tier-card .tier-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 16px;
    display: block;
}
.tier-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.tier-card .tier-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 12px;
}
.tier-card p { font-size: 0.87rem; color: #666; }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.accordion-button:not(.collapsed) {
    background: rgba(37,150,190,0.08);
    color: var(--teal);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: rgba(37,150,190,0.3); }
.accordion-button::after {
    filter: none;
}
.accordion-item { border-color: rgba(0,0,0,0.08); }

/* ================================================
   CALCULATOR / QUOTE FORM
   ================================================ */
.quote-panel {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    padding: 36px 32px;
}
.cost-panel {
    background: var(--dark);
    border-radius: 14px;
    padding: 30px 26px;
    color: var(--white);
    position: sticky;
    top: 90px;
}
.cost-panel h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.cost-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.88rem;
}
.cost-line:last-of-type { border-bottom: none; }
.cost-line .label { color: rgba(255,255,255,0.65); }
.cost-line .amount { font-weight: 600; color: var(--white); }
.cost-total {
    border-top: 2px solid var(--teal);
    margin-top: 12px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cost-total .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cost-total .amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
}
.cost-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    line-height: 1.5;
}

/* Form labels & inputs */
.form-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--dark);
    margin-bottom: 4px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(37,150,190,0.18);
}
.form-check-input:checked {
    background-color: var(--teal);
    border-color: var(--teal);
}
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(37,150,190,0.18); }

/* ================================================
   MILESTONES TIMELINE
   ================================================ */
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 36px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 34px;
    width: 2px;
    bottom: -36px;
    background: rgba(37,150,190,0.2);
}
.timeline-item:last-child::before { display: none; }

.timeline-dot {
    position: absolute;
    left: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    box-shadow: 0 3px 12px var(--teal-glow);
}
.timeline-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.timeline-item h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.timeline-item p { font-size: 0.85rem; color: #777; margin: 0; }

/* ================================================
   TROUBLESHOOTING BLOCKS
   ================================================ */
.trbl-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 30px 24px;
    transition: var(--transition);
    height: 100%;
}
.trbl-block:hover {
    background: rgba(37,150,190,0.1);
    border-color: rgba(37,150,190,0.3);
    transform: translateY(-4px);
}
.trbl-block i {
    font-size: 2.2rem;
    color: var(--teal);
    margin-bottom: 14px;
    display: block;
}
.trbl-block h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.trbl-block p { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ================================================
   CONTACT
   ================================================ */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-detail-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(37,150,190,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal);
}
.contact-detail h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 2px;
}
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: var(--text); margin: 0; }

/* ================================================
   FOOTER
   ================================================ */
.footer-dark {
    background: #1e1c1b;
    color: rgba(255,255,255,0.7);
}
.footer-brand { line-height: 1.1; }
.footer-brand-name { display: flex; align-items: baseline; gap: 0; }
.fb-spen {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.fb-gil {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.01em;
}
.fb-solutions {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: super;
}
.fb-tagline {
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
    letter-spacing: 0.02em;
}
.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact { margin: 0; padding: 0; }
.footer-contact li {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-bottom: 9px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal); }
.footer-divider { border-color: rgba(255,255,255,0.07); }
.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================
   WHATSAPP FLOAT + SCROLL TOP
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 22px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 26px rgba(37,211,102,0.55);
}

.scroll-top-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 14px var(--teal-glow);
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover { background: var(--teal-dark); }

/* ================================================
   ADMIN PANEL
   ================================================ */
.admin-wrap {
    min-height: 100vh;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}
.admin-card {
    background: var(--white);
    border-radius: 14px;
    padding: 44px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.admin-card .admin-logo { display: block; margin: 0 auto 24px; }
.admin-header-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    text-align: center;
    margin-bottom: 8px;
}
.admin-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 28px;
}

/* ================================================
   UTILITIES
   ================================================ */
.badge-teal {
    background: rgba(37,150,190,0.12);
    color: var(--teal);
    border: 1px solid rgba(37,150,190,0.25);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.82rem;
}
.divider-teal {
    height: 2px;
    background: linear-gradient(to right, var(--teal), transparent);
    border: none;
    margin: 40px 0;
}

/* ================================================
   RESPONSIVE — Tablet  (≤ 991px)
   ================================================ */
@media (max-width: 991px) {
    /* Process connector lines */
    .process-step::after { display: none; }

    /* Quote cost panel — stop sticking */
    .cost-panel { position: static; margin-top: 24px; }

    /* Navbar mobile collapse panel */
    .navbar-collapse {
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.07);
        padding: 10px 0 14px;
        margin-top: 8px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    }
    .navbar-nav .nav-link { padding: 10px 20px !important; }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .ms-lg-2 { margin: 8px 20px 0 !important; }
    .navbar-nav .btn-teal { width: 100%; text-align: center; justify-content: center; }

    /* CTA banner */
    .cta-banner { padding: 60px 0; }
    .cta-banner .d-flex { flex-direction: column; align-items: stretch !important; }
    .cta-banner .btn { width: 100%; }
}

/* ================================================
   RESPONSIVE — Mobile  (≤ 767px)
   ================================================ */
@media (max-width: 767px) {
    /* Smaller body offset for compact navbar */
    body { padding-top: 68px; }

    /* Section padding */
    .section-pad     { padding: 52px 0; }
    .section-pad-sm  { padding: 36px 0; }

    /* Logo — prominent on mobile */
    .nav-logo { height: 70px; }
    #mainNav.scrolled .nav-logo { height: 60px; }

    /* Hero */
    .hero-home { min-height: 100svh; }
    .hero-home .hero-content { padding: 24px 0 60px; }
    .hero-home h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
    .hero-typed-wrap { font-size: clamp(1rem, 4vw, 1.35rem); margin-bottom: 24px; }
    .hero-cta { flex-direction: column; gap: 10px; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .hero-scroll { display: none; }

    /* Page banner */
    .page-banner { height: 200px; }
    .page-banner-content { padding-bottom: 24px; }
    .page-banner h1 { font-size: clamp(1.75rem, 6.5vw, 2.5rem); }

    /* Stats bar */
    .stats-bar { padding: 30px 0; }
    .stat-number { font-size: 2.3rem; }
    .stat-label  { font-size: 0.78rem; }

    /* Section titles */
    .section-title { font-size: clamp(1.65rem, 6vw, 2.2rem); }

    /* Service cards */
    .service-card { padding: 24px 18px; }

    /* Support tier cards */
    .tier-card { padding: 26px 18px; }

    /* CTA banner */
    .cta-banner { padding: 48px 0; }
    .cta-banner .d-flex { flex-direction: column; align-items: stretch !important; }
    .cta-banner .btn { width: 100%; }

    /* Quote / cost panels */
    .quote-panel { padding: 22px 16px; }
    .cost-panel  { padding: 22px 16px; }

    /* Contact detail */
    .contact-detail { gap: 12px; }
    .contact-detail-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1.05rem; }

    /* Footer centering */
    .footer-dark { text-align: center; }
    .footer-brand-name { justify-content: center; }
    .footer-dark .d-flex.gap-3 { justify-content: center; }
    .footer-contact li { justify-content: center; text-align: left; }

    /* Floating buttons — shift in slightly */
    .whatsapp-float  { width: 46px; height: 46px; font-size: 1.3rem; bottom: 70px; right: 14px; }
    .scroll-top-btn  { width: 36px; height: 36px; bottom: 16px; right: 14px; }

    /* Admin login card */
    .admin-card { padding: 28px 18px; }
}

/* ================================================
   RESPONSIVE — Small phones  (≤ 480px)
   ================================================ */
@media (max-width: 480px) {
    .hero-home h1 { font-size: 1.95rem; }
    .section-title  { font-size: 1.65rem; }
    .page-banner h1 { font-size: 1.7rem; }
    .service-card   { padding: 20px 14px; }
    .tier-card      { padding: 22px 14px; }
    .quote-panel    { padding: 18px 12px; }
    .cost-panel     { padding: 18px 12px; }
    .stat-number    { font-size: 2rem; }
    .process-step   { padding: 0 8px; }
    .timeline-item  { padding-left: 50px; }
    .page-banner    { height: 185px; }
}
