/* ============================================================
   ALLFIX Facility Services - Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
    --navy: #002147;
    --orange: #f97316;
    --orange-dark: #ea6c0a;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-700);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.allfix-topbar {
    background: var(--slate-900);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
}
@media(min-width: 1024px) { .allfix-topbar { display: block; } }

.allfix-topbar .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-contact span { display: flex; align-items: center; gap: 8px; }
.topbar-contact .icon { color: var(--orange); font-size: 14px; }
.topbar-links { display: flex; gap: 16px; }
.topbar-links a:hover { color: var(--orange); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.allfix-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.allfix-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.allfix-nav.scrolled { padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -0.05em; }
.logo-text span { font-size: 10px; font-weight: 700; color: var(--orange); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }

/* Desktop Menu */
.nav-menu { display: none; align-items: center; gap: 32px; }
@media(min-width: 1024px) { .nav-menu { display: flex; } }

.nav-menu a, .nav-menu button {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    transition: color 0.2s;
    display: flex; align-items: center; gap: 4px;
}
.nav-menu a:hover, .nav-menu button:hover { color: var(--orange); }
.nav-menu a.active { color: var(--orange); }

.nav-dropdown { position: relative; }
.dropdown-toggle { background: none; font-family: inherit; }
.dropdown-toggle .chevron { transition: transform 0.3s; font-size: 12px; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--slate-100);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.15s;
}
.dropdown-menu a:hover { background: var(--slate-50); color: var(--orange); }

.btn-nav {
    background: var(--orange);
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    transition: background 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}
.btn-nav:hover { background: var(--orange-dark) !important; color: white !important; }

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
@media(min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--slate-100);
    padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--slate-100);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-services-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--slate-400);
    margin: 16px 0 8px;
}
.mobile-menu .mobile-service-link {
    padding: 8px 0 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-600);
    border-left: 2px solid var(--slate-100);
    border-bottom: none;
}
.mobile-menu .mobile-service-link:hover { color: var(--orange); border-left-color: var(--orange); }
.mobile-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-cta-group a {
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: none;
}
.mobile-cta-group .btn-orange { background: var(--orange); color: white !important; }
.mobile-cta-group .btn-navy { background: var(--navy); color: white !important; }
.mobile-cta-group .btn-light { background: var(--slate-100); color: var(--navy) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(0.55) brightness(0.85);
    transition: transform 10s ease;
}
.hero-section:hover .hero-bg img { transform: scale(1.04); }
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, var(--navy) 35%, rgba(0,33,71,0.82) 60%, transparent 100%),
        linear-gradient(to top, var(--navy) 0%, transparent 50%);
}
/* Subtle grid overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(249,115,22,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}
/* Diagonal bottom clip */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 90px;
    background: var(--slate-50);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 10px;
    border-radius: 100px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.22);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 36px;
    backdrop-filter: blur(6px);
}
.hero-badge::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
.hero-title {
    font-size: clamp(52px, 8.5vw, 100px);
    font-weight: 900;
    color: white;
    line-height: 0.88;
    margin-bottom: 36px;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    font-style: italic;
}
.hero-title .accent {
    color: var(--orange);
    text-shadow: 0 0 80px rgba(249,115,22,0.3);
}
.hero-desc {
    font-size: clamp(15px, 2vw, 20px);
    color: rgba(255,255,255,0.62);
    margin-bottom: 52px;
    font-weight: 400;
    max-width: 580px;
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 30px rgba(249,115,22,0.38);
}
.btn-primary:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(249,115,22,0.48);
}
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.16);
    color: white;
    transform: translateY(-2px);
}
.btn-dark { background: var(--navy); color: white; box-shadow: 0 4px 16px rgba(0,33,71,0.2); }
.btn-dark:hover { background: #001935; color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.btn-white:hover { background: var(--slate-50); color: var(--navy); transform: translateY(-2px); }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}
.btn .arrow { transition: transform 0.2s; font-size: 16px; }
.btn:hover .arrow { transform: translateX(5px); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--slate-100);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--navy));
}
.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
@media(min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 44px 32px;
    border-right: 1px solid var(--slate-100);
    transition: background 0.25s;
    position: relative;
}
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--orange);
    transition: width 0.35s ease;
}
.stat-item:hover::after { width: 100%; }
.stat-item:hover { background: #fffaf7; }
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 52px; height: 52px;
    background: rgba(249,115,22,0.07);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 22px;
    flex-shrink: 0;
    border: 1.5px solid rgba(249,115,22,0.12);
    transition: all 0.25s;
}
.stat-item:hover .stat-icon {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(-5deg) scale(1.05);
}
.stat-number {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: 'Syne', sans-serif;
}
.stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--slate-400);
    margin-top: 5px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-bg-white { background: white; }
.section-bg-light { background: var(--slate-50); }
.section-bg-navy { background: var(--navy); }
.section-bg-orange { background: var(--orange); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-bottom: 18px;
    padding: 7px 16px 7px 7px;
    background: rgba(249,115,22,0.06);
    border-radius: 4px;
    border-left: 3px solid var(--orange);
}
.section-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 24px;
}
.section-title .accent { color: var(--orange); }
.section-title-white { color: white; }
.section-desc {
    font-size: 17px;
    color: var(--slate-500);
    font-weight: 400;
    line-height: 1.8;
    max-width: 620px;
}
.section-header { margin-bottom: 80px; }
.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
    align-items: flex-start;
}
@media(min-width: 768px) {
    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

/* ============================================================
   SERVICES GRID  (homepage cards)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media(min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: white;
    border-radius: 20px;
    padding: 44px 36px;
    border: 1.5px solid var(--slate-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
/* Card bottom accent bar */
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    transition: width 0.35s ease;
}
/* Subtle top-right corner glow */
.service-card::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    box-shadow: 0 20px 60px rgba(249,115,22,0.12);
    transform: translateY(-10px);
    border-color: rgba(249,115,22,0.25);
}
.service-card:hover::before { width: 100%; }
.service-card:hover::after { opacity: 1; }
.service-card-icon {
    width: 68px; height: 68px;
    background: var(--slate-50);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 32px;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid var(--slate-100);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card-icon {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
    transform: rotate(-8deg) scale(1.06);
}
.service-card h3 {
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.service-card-link {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.22s;
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card-link { color: var(--orange); gap: 12px; }
.service-card-link .arrow { transition: transform 0.22s; }
.service-card:hover .service-card-link .arrow { transform: translateX(0); }

/* ============================================================
   CTA SECTION (homepage)
   ============================================================ */
.cta-section {
    background: var(--navy);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: rgba(249,115,22,0.05);
    transform: skewX(-14deg) translateX(25%);
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
@media(min-width: 1024px) {
    .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.cta-text h2 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}
.cta-text h2 .accent { color: var(--orange); }
.cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    line-height: 1.75;
    max-width: 540px;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
@media(min-width: 480px) { .cta-actions { flex-direction: row; } }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    background: var(--navy);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 0;
}
/* Grid overlay */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(249,115,22,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
/* Diagonal clip */
.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 70px;
    background: white;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}
.page-header-bg {
    position: absolute;
    inset: 0;
}
.page-header-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.16;
    filter: saturate(0.5);
}
.page-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-header h1 {
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.035em;
    line-height: 0.95;
    margin-bottom: 24px;
}
.page-header h1 .accent { color: var(--orange); }
.page-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.62);
    font-weight: 400;
    line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media(min-width: 1024px) {
    .about-mission-grid {
        flex-direction: row;
        align-items: center;
    }
}
.about-image-grid {
    flex: 1;
    position: relative;
}
.about-image-grid::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
}
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}
.about-images img {
    border-radius: 18px;
    height: 320px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 24px 56px rgba(0,0,0,0.16);
    transition: transform 0.4s ease;
}
.about-images img:hover { transform: scale(1.02); }
.about-images img:last-child { margin-top: 48px; }
.about-text { flex: 1; }
.about-text .section-desc { margin-bottom: 28px; }
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
}
@media(min-width: 480px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--slate-50);
    border-radius: 12px;
    border: 1.5px solid var(--slate-100);
    transition: all 0.25s;
}
.about-value:hover {
    border-color: rgba(249,115,22,0.3);
    background: white;
    box-shadow: 0 4px 20px rgba(249,115,22,0.08);
    transform: translateX(4px);
}
.about-value-icon {
    width: 42px; height: 42px;
    background: rgba(249,115,22,0.08);
    color: var(--orange);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1.5px solid rgba(249,115,22,0.15);
    transition: all 0.25s;
}
.about-value:hover .about-value-icon {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}
.about-value strong {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}
.about-value span { font-size: 12px; color: var(--slate-500); line-height: 1.55; }

.values-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media(min-width: 768px) { .values-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
    background: white;
    padding: 52px 44px;
    border-radius: 20px;
    border: 1.5px solid var(--slate-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    transition: width 0.35s ease;
}
.value-card:hover {
    box-shadow: 0 24px 64px rgba(249,115,22,0.12);
    border-color: rgba(249,115,22,0.25);
    transform: translateY(-8px);
}
.value-card:hover::before { width: 100%; }
.value-card-icon {
    width: 68px; height: 68px;
    background: var(--slate-50);
    color: var(--navy);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 32px;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid var(--slate-100);
}
.value-card:hover .value-card-icon {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
    transform: rotate(-8deg) scale(1.05);
}
.value-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 16px;
}
.value-card p { font-size: 14px; color: var(--slate-500); line-height: 1.75; }

/* ============================================================
   SERVICE DETAIL PAGE (legacy sidebar layout)
   ============================================================ */
.service-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media(min-width: 1024px) {
    .service-detail-layout { flex-direction: row; gap: 80px; }
    .service-detail-main { flex: 2; }
    .service-detail-sidebar { flex: 1; }
}
.service-overview-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 32px;
    display: block;
}
.service-detail-main .full-content {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 48px;
}
.service-detail-main h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 32px;
}
.service-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 48px;
}
@media(min-width: 640px) { .service-features-grid { grid-template-columns: 1fr 1fr; } }
.service-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--slate-50);
    border-radius: 12px;
    border: 1.5px solid var(--slate-100);
    padding: 20px 24px;
    transition: all 0.22s;
}
.service-feature:hover {
    border-color: rgba(249,115,22,0.3);
    background: white;
    box-shadow: 0 4px 16px rgba(249,115,22,0.08);
}
.service-feature-check {
    width: 34px; height: 34px;
    background: rgba(249,115,22,0.08);
    color: var(--orange);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1.5px solid rgba(249,115,22,0.15);
}
.service-feature span {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-sidebar-card {
    background: var(--navy);
    padding: 44px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
    overflow: hidden;
}
.service-sidebar-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(249,115,22,0.06);
    pointer-events: none;
}
.service-sidebar-card h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: white;
    margin-bottom: 32px;
    position: relative;
}
.service-sidebar-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    position: relative;
}
.service-sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 32px 0;
}
.sidebar-phone-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.sidebar-phone {
    font-size: 22px;
    font-weight: 900;
    color: white;
    font-style: italic;
    position: relative;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
}
@media(min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    background: var(--slate-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    transform: translateY(-6px);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(0,33,71,0.6) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange);
    margin-bottom: 5px;
}
.gallery-overlay .title {
    font-size: 15px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.2;
}
.gallery-expand {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}
.gallery-item:hover .gallery-expand {
    background: var(--orange);
    color: white;
}

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-btn {
    width: 48px; height: 48px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.22s;
    font-family: inherit;
}
.page-btn.active { background: var(--navy); color: white; box-shadow: 0 4px 16px rgba(0,33,71,0.2); }
.page-btn:not(.active) { background: var(--slate-50); color: var(--slate-400); border: 1.5px solid var(--slate-100); }
.page-btn:not(.active):hover { background: var(--slate-100); color: var(--navy); }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-arrow { font-size: 18px; color: var(--navy); }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(1,13,26,0.96);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-content {
    max-width: 920px;
    width: 100%;
    position: relative;
    text-align: center;
}
.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 48px 100px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: -60px; right: 0;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-info { margin-top: 28px; }
.lightbox-info .cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}
.lightbox-info .title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    font-style: italic;
}

/* ============================================================
   CONTACT PAGE (inline style fallback support)
   ============================================================ */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
@media(min-width: 1024px) {
    .contact-layout { flex-direction: row; }
    .contact-sidebar { flex: 1; }
    .contact-main { flex: 2; }
}
.contact-info-box {
    background: var(--slate-50);
    border: 1.5px solid var(--slate-100);
    border-radius: 20px;
    padding: 52px;
    margin-bottom: 32px;
}
.contact-info-box h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--navy);
    margin-bottom: 40px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-info-icon {
    width: 50px; height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.contact-info-item:hover .contact-info-icon { background: var(--orange); }
.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate-400);
    margin-bottom: 4px;
}
.contact-info-value { font-size: 17px; font-weight: 900; color: var(--navy); }
.contact-emergency {
    background: var(--orange);
    border-radius: 20px;
    padding: 52px;
    color: white;
    position: relative;
    overflow: hidden;
}
.contact-emergency::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.contact-emergency h5 {
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
}
.contact-emergency p {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
}
.contact-emergency .phone {
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.025em;
    position: relative;
}

/* Contact Tabs */
.contact-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.contact-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: inherit;
    transition: all 0.22s;
    background: var(--slate-50);
    color: var(--slate-400);
    border-color: var(--slate-100);
}
.contact-tab:hover { background: var(--slate-100); color: var(--navy); }
.contact-tab.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(0,33,71,0.22);
}
.contact-tab .tab-icon { font-size: 16px; }
.contact-form-box {
    background: white;
    border: 1.5px solid var(--slate-100);
    border-radius: 20px;
    padding: 52px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
}
.contact-form-box h3 {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}
.contact-form-panel { display: none; }
.contact-form-panel.active { display: block; }

/* ============================================================
   SHARED FORM STYLES
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
@media(min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: var(--slate-400);
    margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-100);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-900);
    font-family: inherit;
    transition: all 0.22s;
    outline: none;
    appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.07);
}
.form-textarea { resize: none; }
.form-submit {
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s;
    box-shadow: 0 10px 30px rgba(249,115,22,0.32);
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(249,115,22,0.42);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
    margin-top: 24px;
    padding: 20px 24px;
    background: #ecfdf5;
    border: 1.5px solid #d1fae5;
    border-radius: 10px;
    color: #065f46;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    display: none;
}
.form-error {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    display: none;
}
.form-success.show, .form-error.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.allfix-footer {
    background: var(--navy);
    color: white;
    padding: 110px 0 52px;
    border-top: none;
    position: relative;
    overflow: hidden;
}
/* Subtle top orange line */
.allfix-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #fbbf24, var(--navy));
}
/* Faint grid */
.allfix-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
@media(min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .site-logo { margin-bottom: 32px; }
.footer-brand .logo-text strong { color: white; }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 32px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    transition: all 0.22s;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-social:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(249,115,22,0.3);
}
.footer-col h6 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: white;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col h6::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    max-width: 40px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    padding: 4px 0;
}
.footer-links a:hover { color: var(--orange); gap: 12px; }
.footer-links a .arrow { font-size: 11px; transition: transform 0.2s; opacity: 0.5; }
.footer-links a:hover .arrow { transform: translateX(4px); opacity: 1; }
.footer-contact-items { display: flex; flex-direction: column; gap: 22px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}
.footer-contact-item:hover {
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.15);
    color: rgba(255,255,255,0.75);
}
.footer-contact-icon {
    width: 38px; height: 38px;
    background: rgba(249,115,22,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(249,115,22,0.18);
}
.footer-contact-item strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}
.footer-bottom {
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media(min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.6; }
}
.animate-fade-up  { animation: fadeInUp  0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.animate-fade-left { animation: fadeInLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 767px) {
    .section { padding: 80px 0; }
    .hero-section { min-height: 100svh; }
    .page-header { padding: 140px 0 80px; }
    .stat-item { padding: 32px 20px; }
}

/* ============================================================
   WP ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .allfix-header { top: 32px; }
@media(max-width: 782px) { .admin-bar .allfix-header { top: 46px; } }

/* ============================================================
   SERVICE PAGE SECTION HEADER (referenced from service page CSS)
   ============================================================ */


/* ============================================================
   ALLFIX Service Pages — Enhanced Design
   Premium typography + refined layout upgrades
   ============================================================ */

/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.sp-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #010d1a;
    padding-top: 80px;
}
.sp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sp-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(0.5) brightness(0.85);
    transition: transform 8s ease;
}
.sp-hero:hover .sp-hero-bg img { transform: scale(1.04); }

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, #010d1a 40%, rgba(1,13,26,0.72) 70%, transparent 100%),
        linear-gradient(to top, #010d1a 0%, transparent 55%);
}

/* Decorative grid lines overlay */
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Diagonal bottom accent */
.sp-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 90px;
    background: white;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}
.sp-hero .container {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 130px;
}
.sp-hero-content { max-width: 820px; }

.sp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 8px 18px 8px 8px;
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.18);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.sp-hero-eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}
.sp-hero-eyebrow-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.6);
}
.sp-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(44px, 7.5vw, 96px);
    font-weight: 800;
    color: white;
    line-height: 0.93;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}
.sp-hero-title .sp-title-line2 {
    color: var(--orange);
    display: block;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 60px rgba(249,115,22,0.35);
}
.sp-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    margin-bottom: 52px;
    line-height: 1.75;
    max-width: 560px;
}
.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.sp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 6px;
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}
.sp-btn-primary:hover {
    background: #ea6c0a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(249,115,22,0.55);
}
.sp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 18px 28px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.18);
    transition: all 0.22s;
    backdrop-filter: blur(4px);
}
.sp-btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    color: white;
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.sp-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 18px 28px;
    border-radius: 6px;
    transition: all 0.22s;
    box-shadow: 0 6px 20px rgba(34,197,94,0.3);
}
.sp-btn-whatsapp:hover { background: #16a34a; color: white; transform: translateY(-2px); }

/* Hero trust strip */
.sp-hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 64px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    padding: 0 28px 0 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
    letter-spacing: 0.04em;
}
.sp-trust-item:last-child { border-right: none; }
.sp-trust-icon {
    width: 30px; height: 30px;
    background: rgba(249,115,22,0.12);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    border: 1px solid rgba(249,115,22,0.18);
}

/* ─────────────────────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────────────────────── */
.sp-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 16px 0;
}
.sp-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    flex-wrap: wrap;
}
.sp-breadcrumb-nav a { color: #6c757d; transition: color 0.2s; }
.sp-breadcrumb-nav a:hover { color: var(--orange); }
.sp-breadcrumb-nav span:last-child { color: var(--navy); font-weight: 600; }
.sp-bc-sep { color: #adb5bd; }

/* ─────────────────────────────────────────────────────────────
   INTRO SECTION
   ───────────────────────────────────────────────────────────── */
.sp-intro-section {
    padding: 110px 0;
    background: white;
    position: relative;
    overflow: hidden;
}
/* Subtle decorative corner */
.sp-intro-section::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.sp-intro-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}
@media(min-width: 1024px) {
    .sp-intro-layout { grid-template-columns: 1.6fr 1fr; }
}
.sp-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 20px;
    padding: 7px 16px 7px 7px;
    background: rgba(249,115,22,0.06);
    border-radius: 4px;
    border-left: 3px solid var(--orange);
}
.sp-intro-label::before { display: none; }
.sp-intro-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}
.sp-intro-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #495057;
    line-height: 1.9;
    font-weight: 400;
}
.sp-intro-body p { margin-bottom: 18px; }

/* Quick contact card */
.sp-quick-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 44px;
    position: sticky;
    top: 110px;
    overflow: hidden;
}
/* Card accent decoration */
.sp-quick-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(249,115,22,0.06);
    pointer-events: none;
}
.sp-quick-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    position: relative;
}
.sp-quick-card-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    line-height: 1.65;
    position: relative;
}
.sp-quick-cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 17px 24px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 12px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 22px rgba(249,115,22,0.4);
    position: relative;
}
.sp-quick-cta-main:hover { background: #ea6c0a; color: white; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.5); }
.sp-quick-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.sp-quick-cta-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 13px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}
.sp-quick-cta-sec:hover { background: rgba(255,255,255,0.13); color: white; }
.sp-quick-cta-sec.wa { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.25); }
.sp-quick-cta-sec.wa:hover { background: rgba(34,197,94,0.22); }
.sp-quick-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 4px 0 24px;
}
.sp-quick-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.sp-quick-contact-icon {
    width: 40px; height: 40px;
    background: rgba(249,115,22,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(249,115,22,0.18);
}
.sp-quick-contact-row small {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 3px;
}
.sp-quick-contact-row strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    display: block;
}

/* ─────────────────────────────────────────────────────────────
   SHARED SECTION TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
.sp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 18px;
}
.sp-section-kicker::before {
    content: '';
    display: block;
    width: 22px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
.sp-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.sp-section-title-white { color: white; }
.sp-section-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.75;
    max-width: 540px;
}
.sp-accent { color: var(--orange); }

/* ─────────────────────────────────────────────────────────────
   PROBLEMS + SOLUTIONS
   ───────────────────────────────────────────────────────────── */
.sp-ps-section {
    background: linear-gradient(160deg, #f0f4f8 0%, #f8f9fa 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-ps-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--navy));
}
.sp-ps-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 80px;
}
.sp-ps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 60px rgba(0,0,0,0.1);
}
@media(min-width: 768px) {
    .sp-ps-grid { grid-template-columns: 1fr 1fr; }
}
.sp-ps-col {
    padding: 64px 52px;
    position: relative;
}
.sp-ps-col.problem-col {
    background: white;
}
.sp-ps-col.solution-col {
    background: var(--navy);
}
/* Column top accent bar */
.sp-ps-col::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.problem-col::after { background: linear-gradient(90deg, #e03131, #ff6b6b); }
.solution-col::after { background: linear-gradient(90deg, var(--orange), #fbbf24); }

.sp-ps-col-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
}
.problem-col .sp-ps-col-icon {
    background: #fff0f0;
    border: 1.5px solid #ffd4d4;
    box-shadow: 0 4px 16px rgba(224,49,49,0.08);
}
.solution-col .sp-ps-col-icon {
    background: rgba(249,115,22,0.12);
    border: 1.5px solid rgba(249,115,22,0.2);
    box-shadow: 0 4px 16px rgba(249,115,22,0.12);
}
.sp-ps-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}
.problem-col .sp-ps-col-title { color: var(--navy); }
.solution-col .sp-ps-col-title { color: white; }
.sp-ps-list { display: flex; flex-direction: column; gap: 18px; list-style: none; }
.sp-ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    padding-bottom: 18px;
    border-bottom: 1px solid;
}
.problem-col .sp-ps-list li {
    color: #495057;
    border-color: #f1f3f5;
}
.solution-col .sp-ps-list li {
    color: rgba(255,255,255,0.78);
    border-color: rgba(255,255,255,0.06);
}
.sp-ps-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sp-ps-bullet {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0;
}
.sp-problem-bullet {
    background: #fff0f0;
    color: #e03131;
    border: 1.5px solid #ffd4d4;
}
.sp-solution-bullet {
    background: rgba(249,115,22,0.15);
    color: var(--orange);
    border: 1.5px solid rgba(249,115,22,0.25);
}

/* ─────────────────────────────────────────────────────────────
   FEATURES / HIGHLIGHTS
   ───────────────────────────────────────────────────────────── */
.sp-features-section {
    background: white;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-features-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef 30%, #e9ecef 70%, transparent);
}
.sp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 60px;
}
@media(min-width: 480px) { .sp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .sp-features-grid { grid-template-columns: repeat(3, 1fr); } }
.sp-feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.sp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.sp-feature-card:hover {
    background: white;
    border-color: var(--orange);
    box-shadow: 0 8px 36px rgba(249,115,22,0.12);
    transform: translateY(-4px);
}
.sp-feature-card:hover::before { opacity: 1; }
.sp-feature-check {
    width: 44px; height: 44px;
    background: rgba(249,115,22,0.08);
    color: var(--orange);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    transition: all 0.3s;
    border: 1.5px solid rgba(249,115,22,0.15);
}
.sp-feature-card:hover .sp-feature-check {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    box-shadow: 0 6px 18px rgba(249,115,22,0.35);
}
.sp-feature-card span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    position: relative;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES WE PROVIDE
   ───────────────────────────────────────────────────────────── */
.sp-services-section {
    background: var(--navy);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
/* Background decorations */
.sp-services-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.sp-services-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 60%);
    pointer-events: none;
}
.sp-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 60px rgba(0,0,0,0.3);
}
@media(min-width: 640px) { .sp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .sp-services-grid { grid-template-columns: repeat(3, 1fr); } }
.sp-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 34px;
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
    cursor: default;
    border-left: 3px solid transparent;
    position: relative;
}
.sp-service-item:hover {
    background: rgba(249,115,22,0.1);
    border-left-color: var(--orange);
}
.sp-service-num {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.6;
    flex-shrink: 0;
    width: 28px;
    transition: opacity 0.2s;
}
.sp-service-item:hover .sp-service-num { opacity: 1; }
.sp-service-arrow {
    font-size: 16px;
    color: rgba(255,255,255,0.12);
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.25s;
}
.sp-service-item:hover .sp-service-arrow { color: var(--orange); transform: translateX(5px); }
.sp-service-item span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    flex: 1;
    line-height: 1.4;
    transition: color 0.2s;
}
.sp-service-item:hover span { color: white; }

/* ─────────────────────────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────────────────────────── */
.sp-process-section {
    background: white;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,33,71,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.sp-process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    margin-top: 72px;
    background: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
@media(min-width: 640px) { .sp-process-track { grid-template-columns: repeat(5, 1fr); } }
.sp-process-step {
    background: white;
    padding: 44px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.sp-process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    opacity: 0;
    transition: opacity 0.3s;
}
.sp-process-step:hover::before { opacity: 1; }
/* Orange bottom bar */
.sp-process-step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    transition: width 0.4s ease;
    z-index: 1;
}
.sp-process-step:hover::after { width: 100%; }
.sp-step-num-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sp-step-num {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    opacity: 0.35;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.sp-process-step:hover .sp-step-num { opacity: 1; color: var(--orange); }
.sp-step-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}
.sp-process-step:hover .sp-step-label { color: white; }

/* ─────────────────────────────────────────────────────────────
   INDUSTRIES
   ───────────────────────────────────────────────────────────── */
.sp-industries-section {
    background: linear-gradient(160deg, #f8f9fa 0%, white 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-industries-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--navy) 70%, transparent);
}
.sp-industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 60px;
}
.sp-industry-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: white;
    border: 1.5px solid #e9ecef;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sp-industry-tag:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,33,71,0.18);
}
.sp-ind-dot {
    color: var(--orange);
    font-size: 7px;
    transition: color 0.2s;
}
.sp-industry-tag:hover .sp-ind-dot { color: var(--orange); }

/* ─────────────────────────────────────────────────────────────
   CTA STRIP
   ───────────────────────────────────────────────────────────── */
.sp-cta-strip {
    background: var(--orange);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
/* Geometric pattern overlay */
.sp-cta-strip::before {
    content: '';
    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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Light diagonal sweep */
.sp-cta-strip::after {
    content: '';
    position: absolute;
    top: -40%; left: -10%;
    width: 50%; height: 180%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
    pointer-events: none;
}
.sp-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: flex-start;
}
@media(min-width: 1024px) {
    .sp-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.sp-cta-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.sp-cta-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    line-height: 1.65;
}
.sp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.sp-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--orange);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 17px 30px;
    border-radius: 6px;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.sp-cta-btn-white:hover { background: #fff8f5; color: var(--orange); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.sp-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 17px 30px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.42);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.sp-cta-btn-outline:hover { background: rgba(255,255,255,0.12); color: white; }
.sp-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 17px 26px;
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(34,197,94,0.25);
}
.sp-cta-btn-wa:hover { background: #16a34a; color: white; transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────
   INQUIRY FORM
   ───────────────────────────────────────────────────────────── */
.sp-form-section {
    background: linear-gradient(160deg, #f0f4f8 0%, #f8f9fa 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,33,71,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.sp-form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}
@media(min-width: 1024px) {
    .sp-form-layout { grid-template-columns: 1fr 1.4fr; }
}
.sp-form-intro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 18px;
    padding: 7px 16px 7px 7px;
    background: rgba(249,115,22,0.06);
    border-radius: 4px;
    border-left: 3px solid var(--orange);
}
.sp-form-intro-kicker::before { display: none; }
.sp-form-intro-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}
.sp-form-intro-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.75;
    margin-bottom: 44px;
}
.sp-contact-blocks { display: flex; flex-direction: column; gap: 14px; }
.sp-contact-block {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: white;
    border-radius: 14px;
    border: 1.5px solid #e9ecef;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.sp-contact-block:hover {
    border-color: var(--orange);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(249,115,22,0.1);
}
.sp-contact-block-icon {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.sp-contact-block:hover .sp-contact-block-icon {
    background: var(--orange);
}
.sp-contact-block small {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #adb5bd;
    display: block;
    margin-bottom: 3px;
}
.sp-contact-block strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

/* Form Box */
.sp-form-box {
    background: white;
    border-radius: 24px;
    padding: 52px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.09);
    border: 1.5px solid #f1f3f5;
    position: relative;
    overflow: hidden;
}
/* Form box top accent */
.sp-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
}
.sp-form-box-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid #f1f3f5;
    letter-spacing: -0.02em;
}
.sp-form .form-row { margin-bottom: 0; }
.sp-form .form-field { margin-bottom: 22px; }
.sp-form .form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6c757d;
    display: block;
    margin-bottom: 10px;
}
.sp-form .form-input,
.sp-form .form-select,
.sp-form .form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.22s;
    outline: none;
    appearance: none;
}
.sp-form .form-input:focus,
.sp-form .form-select:focus,
.sp-form .form-textarea:focus {
    background: white;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.07);
}
.sp-form .form-textarea { resize: none; }
.sp-form-submit {
    width: 100%;
    background: var(--navy);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 20px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}
.sp-form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}
.sp-form-submit:hover::before { transform: translateX(0); }
.sp-form-submit span, .sp-form-submit:not(.no-span) { position: relative; z-index: 1; }
.sp-form-submit:hover {
    box-shadow: 0 10px 30px rgba(249,115,22,0.38);
    transform: translateY(-2px);
}
.sp-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─────────────────────────────────────────────────────────────
   RELATED SERVICES
   ───────────────────────────────────────────────────────────── */
.sp-related-section {
    background: white;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.sp-related-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--navy) 40%, var(--orange) 60%, transparent);
}
.sp-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 60px;
}
@media(min-width: 640px) { .sp-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .sp-related-grid { grid-template-columns: repeat(4, 1fr); } }
.sp-related-card {
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    background: #f8f9fa;
    border: 1.5px solid transparent;
    border-radius: 18px;
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.sp-related-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    transition: width 0.35s ease;
}
.sp-related-card:hover {
    background: white;
    border-color: var(--orange);
    transform: translateY(-7px);
    box-shadow: 0 20px 56px rgba(249,115,22,0.13);
    color: inherit;
}
.sp-related-card:hover::before { width: 100%; }
.sp-related-icon {
    width: 56px; height: 56px;
    background: white;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 22px;
    transition: all 0.32s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    border: 1.5px solid #e9ecef;
}
.sp-related-card:hover .sp-related-icon {
    background: var(--orange);
    color: white;
    box-shadow: 0 8px 22px rgba(249,115,22,0.35);
    border-color: var(--orange);
    transform: rotate(-5deg) scale(1.05);
}
.sp-related-card strong {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 10px;
    line-height: 1.3;
}
.sp-related-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-related-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.22s;
}
.sp-related-card:hover .sp-related-link { gap: 11px; }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATION
   ───────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-up {
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER SOCIAL ICONS — SVG icon styles
   ============================================================ */
.footer-social svg { display: block; flex-shrink: 0; }

/* Per-platform hover accent colours */
.footer-social--facebook:hover  { background: #1877f2; border-color: #1877f2; }
.footer-social--twitter:hover   { background: #000000; border-color: #000000; }
.footer-social--linkedin:hover  { background: #0a66c2; border-color: #0a66c2; }
.footer-social--instagram:hover {
    background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
    border-color: transparent;
}


/* ============================================================
   CONTACT FORM 7 — ALLFIX THEME INTEGRATION
   Makes CF7 forms inherit the same design as the built-in forms
   ============================================================ */

/* Wrapper inside the sp-form-box */
.sp-form-box .wpcf7 { width: 100%; }
.sp-form-box .wpcf7 form { display: flex; flex-direction: column; gap: 18px; }

/* All CF7 text/tel/email/url/number inputs */
.sp-form-box .wpcf7 input[type="text"],
.sp-form-box .wpcf7 input[type="tel"],
.sp-form-box .wpcf7 input[type="email"],
.sp-form-box .wpcf7 input[type="url"],
.sp-form-box .wpcf7 input[type="number"],
.sp-form-box .wpcf7 input[type="date"],
.sp-form-box .wpcf7 select,
.sp-form-box .wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--slate-100);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--slate-700);
    background: var(--slate-50);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.sp-form-box .wpcf7 input[type="text"]:focus,
.sp-form-box .wpcf7 input[type="tel"]:focus,
.sp-form-box .wpcf7 input[type="email"]:focus,
.sp-form-box .wpcf7 input[type="url"]:focus,
.sp-form-box .wpcf7 input[type="number"]:focus,
.sp-form-box .wpcf7 input[type="date"]:focus,
.sp-form-box .wpcf7 select:focus,
.sp-form-box .wpcf7 textarea:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.sp-form-box .wpcf7 textarea { resize: vertical; min-height: 110px; }

/* Labels */
.sp-form-box .wpcf7 label,
.sp-form-box .wpcf7 .wpcf7-form-control-wrap > label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    margin-bottom: 7px;
}

/* Submit button — matches sp-form-submit */
.sp-form-box .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 17px 28px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 8px 24px rgba(249,115,22,0.32);
    font-family: inherit;
    margin-top: 4px;
}
.sp-form-box .wpcf7 input[type="submit"]:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(249,115,22,0.42);
}

/* Validation messages */
.sp-form-box .wpcf7 .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #ef4444;
    margin-top: 5px;
    display: block;
    font-weight: 600;
}
.sp-form-box .wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid;
}
.sp-form-box .wpcf7 .wpcf7-mail-sent-ok {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}
.sp-form-box .wpcf7 .wpcf7-mail-sent-ng,
.sp-form-box .wpcf7 .wpcf7-aborted {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}
.sp-form-box .wpcf7 .wpcf7-spam-blocked {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}
.sp-form-box .wpcf7 .wpcf7-validation-errors {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}

/* Invalid field highlight */
.sp-form-box .wpcf7 .wpcf7-not-valid {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

/* Spinner */
.sp-form-box .wpcf7 .wpcf7-spinner {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

/* Two-column layout for short fields (matches form-row) */
.sp-form-box .wpcf7 .cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 560px) {
    .sp-form-box .wpcf7 .cf7-row { grid-template-columns: 1fr; }
}

/* Accept / checkbox */
.sp-form-box .wpcf7 .wpcf7-acceptance { display: flex; align-items: flex-start; gap: 10px; }
.sp-form-box .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; accent-color: var(--orange);
}
.sp-form-box .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 12px; color: var(--slate-500); line-height: 1.6;
    text-transform: none; letter-spacing: 0; font-weight: 400;
}
