/* ============================================================
   TECHNO VISION SOLUTION - Modern Redesign v2.0
   Premium, Animated, Professional Theme
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
    --primary: #0A1628;
    --primary-mid: #0F2041;
    --primary-light: #1A3A6B;
    --accent: #F97316;
    --accent-dark: #C2560A;
    --accent-glow: rgba(249, 115, 22, 0.4);
    --cyan: #22D3EE;
    --cyan-glow: rgba(34, 211, 238, 0.3);
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFF;
    --bg-section: #F1F5FF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-xs: 0 1px 4px rgba(10, 22, 40, 0.06);
    --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 32px 80px rgba(10, 22, 40, 0.22);
    --shadow-accent: 0 8px 32px rgba(249, 115, 22, 0.35);
    --shadow-cyan: 0 8px 32px rgba(34, 211, 238, 0.25);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition); color: inherit; }

img { max-width: 100%; }

/* ---- Page Loader ---- */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    border-radius: 2px;
    animation: loaderProgress 1.2s ease-in-out forwards;
}
@keyframes loaderProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--primary);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-link, .top-bar-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}
.top-bar-link:hover { color: var(--accent); }
.social-icon {
    color: rgba(255,255,255,0.6);
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    font-size: 0.72rem;
    transition: var(--transition-fast);
}
.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-1px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06), 0 4px 20px rgba(10, 22, 40, 0.04);
    padding: 0.9rem 0;
    transition: var(--transition);
    z-index: 1030;
    border-bottom: 1px solid var(--border-light);
}
.main-navbar.scrolled {
    padding: 0.55rem 0;
    box-shadow: 0 2px 40px rgba(10, 22, 40, 0.12);
    background: rgba(255, 255, 255, 0.97);
}

/* Logo */
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: -30%; right: -30%;
    width: 55%; height: 55%;
    background: rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    filter: blur(4px);
}
.logo-t { color: white; font-size: 1.05rem; position: relative; z-index: 1; }
.logo-v { color: var(--accent); font-size: 1.05rem; position: relative; z-index: 1; }
.logo-icon-sm { width: 36px; height: 36px; border-radius: 10px; }
.logo-icon-sm .logo-t, .logo-icon-sm .logo-v { font-size: 0.88rem; }

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    letter-spacing: 1.5px;
    line-height: 1.1;
}
.logo-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 3.5px;
    line-height: 1;
    text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--text-dark) !important;
    padding: 0.55rem 0.9rem !important;
    border-radius: var(--radius-sm);
    letter-spacing: 0.2px;
    transition: var(--transition-fast);
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    left: 0.9rem;
    right: 0.9rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
    background: rgba(249, 115, 22, 0.06);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    overflow: hidden;
    min-width: 420px;
    animation: dropIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.mega-dropdown { min-width: 700px; }
.dropdown-header-row { padding: 0.5rem; }
.mega-dropdown .dropdown-category { font-size: 0.65rem; margin: 0.4rem 0.6rem 0.4rem; }
.mega-dropdown .dropdown-item { font-size: 0.82rem; padding: 0.45rem 0.8rem; }
.dropdown-category {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0.5rem 0.75rem 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-light);
}
.dropdown-item {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.55rem 1rem;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    margin: 1px 0;
}
.dropdown-item:hover {
    background: rgba(249, 115, 22, 0.07);
    color: var(--accent);
    transform: translateX(4px);
}
.text-accent { color: var(--accent) !important; }

/* Navbar Toggler */
.navbar-toggler {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.7rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.87rem;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.6rem;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.btn-accent::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-accent:hover::before { left: 100%; }
.btn-accent:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #FB923C 0%, var(--accent) 100%);
}
.btn-accent:active { transform: translateY(-1px); }

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.87rem;
    border-radius: 50px;
    padding: 0.63rem 1.6rem;
    transition: var(--transition);
}
.btn-primary-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.87rem;
    border-radius: 50px;
    padding: 0.63rem 1.6rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.btn-white-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.87rem;
    border-radius: 50px;
    padding: 0.63rem 1.6rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   HERO SECTION — Mesh Gradient Background
   ============================================================ */
.hero-section {
    background-color: var(--primary);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(26, 58, 107, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(34, 211, 238, 0.07) 0%, transparent 50%);
    min-height: 96vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Animated grid */
.hero-grid-line {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 64px 64px; }
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    top: -150px; right: -100px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    animation-delay: 3s;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    top: 50%; left: 40%;
    animation-delay: 6s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.98); }
}

/* Particles */
.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFly 6s infinite;
}
.particle:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 8s; }
.particle:nth-child(2)  { left: 25%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(3)  { left: 40%; animation-delay: 3s;   animation-duration: 9s; }
.particle:nth-child(4)  { left: 55%; animation-delay: 0.8s; animation-duration: 7.5s; }
.particle:nth-child(5)  { left: 70%; animation-delay: 2.5s; animation-duration: 8.5s; }
.particle:nth-child(6)  { left: 85%; animation-delay: 4s;   animation-duration: 6.5s; background: var(--cyan); }
.particle:nth-child(7)  { left: 15%; animation-delay: 5s;   animation-duration: 10s; }
.particle:nth-child(8)  { left: 92%; animation-delay: 1s;   animation-duration: 7s; background: var(--cyan); }
.particle:nth-child(9)  { left: 50%; animation-delay: 6s;   animation-duration: 8s; }
.particle:nth-child(10) { left: 78%; animation-delay: 3.5s; animation-duration: 9.5s; }
@keyframes particleFly {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #FED7AA;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6); }
    50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 0 5px rgba(249, 115, 22, 0); }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

/* Hero Description */
.hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2.5rem;
}
.hero-tag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
}
.hero-tag:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: #FED7AA;
    transform: translateY(-2px);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 0.3rem;
}

/* Hero Visual — Glassmorphism Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
}
.hero-main-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    flex-shrink: 0;
}
.hero-card-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-card-subtitle { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 2px; }
.service-pill-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: default;
}
.service-pill:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.25);
    color: #FED7AA;
    transform: translateX(4px);
}
.service-pill i { color: var(--accent); font-size: 0.95rem; flex-shrink: 0; }
.service-pill-badge {
    margin-left: auto;
    font-size: 0.67rem;
    background: rgba(249, 115, 22, 0.18);
    color: #FED7AA;
    padding: 0.12rem 0.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 0.9rem 1.25rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatCard 5s ease-in-out infinite;
    z-index: 3;
}
.hero-float-card:nth-child(2) { bottom: -25px; left: -40px; animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { top: -18px; right: -20px; animation-delay: 1.2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}
.float-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.float-icon.green { background: rgba(34, 197, 94, 0.12); color: #22C55E; }
.float-icon.blue { background: rgba(34, 211, 238, 0.12); color: var(--cyan); }
.float-title { font-family: var(--font-heading); font-size: 0.86rem; font-weight: 800; color: var(--text-dark); }
.float-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), #FB923C, var(--accent-dark));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    padding: 0.65rem 0;
    overflow: hidden;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.ticker-content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.ticker-item i { font-size: 0.85rem; opacity: 0.8; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
section { padding: 5.5rem 0; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.18);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.section-title .text-accent { color: var(--accent); }
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}
.section-divider {
    width: 52px; height: 4px;
    background: linear-gradient(90deg, var(--accent), rgba(249, 115, 22, 0.2));
    border-radius: 4px;
    margin: 1rem 0 1.5rem;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.about-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-img-main {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition);
}
.about-img-main:hover { transform: scale(1.02); box-shadow: 0 30px 80px rgba(10, 22, 40, 0.2); }
.about-exp-badge {
    position: absolute;
    bottom: -16px; left: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-accent);
    text-align: center;
    animation: floatCard 5s ease-in-out infinite;
}
.about-exp-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.about-exp-text {
    font-size: 0.76rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 4px;
}
.about-features { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.75rem; }
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: default;
}
.about-feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(6px);
    background: #FFFBF7;
}
.about-feature-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.about-feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.about-feature-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--bg-white); position: relative; }
.services-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.service-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FB923C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card-icon {
    width: 62px; height: 62px;
    background: rgba(249, 115, 22, 0.08);
    border: 1.5px solid rgba(249, 115, 22, 0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-accent);
    transform: scale(1.1) rotate(-3deg);
}
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    position: relative; z-index: 1;
}
.service-card-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
}
.service-tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; position: relative; z-index: 1; }
.service-tag {
    font-size: 0.72rem;
    background: var(--bg-section);
    color: var(--primary-light);
    padding: 0.22rem 0.65rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}
.service-card:hover .service-tag {
    background: rgba(249, 115, 22, 0.08);
    color: var(--accent-dark);
    border-color: rgba(249, 115, 22, 0.12);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, #0A1F50 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
}
.stats-section::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}
.stat-item {
    text-align: center;
    padding: 3.5rem 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-item + .stat-item::before {
    content: '';
    position: absolute; left: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -2px;
}
.stat-number .stat-suffix { color: var(--accent); letter-spacing: 0; }
.stat-label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================================
   WHY CHOOSE US — Process Steps
   ============================================================ */
.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: default;
    height: 100%;
}
.process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.18);
    transform: translateY(-4px);
}
.process-step-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
}
.process-step:hover .process-step-num { transform: rotate(8deg) scale(1.1); }
.process-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}
.process-step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-section { background: var(--bg-light); position: relative; }
.coverage-region-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.coverage-region-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.coverage-region-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.coverage-region-card:hover::before { opacity: 1; }

/* Color accents per region */
.col-lg-4:nth-child(1) .coverage-region-card::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.col-lg-4:nth-child(2) .coverage-region-card::before { background: linear-gradient(90deg, var(--accent), #FB923C); }
.col-lg-4:nth-child(3) .coverage-region-card::before { background: linear-gradient(90deg, #A855F7, #C084FC); }

.region-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.region-icon.north { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.region-icon.south { background: rgba(249, 115, 22, 0.1); color: var(--accent); }
.region-icon.west { background: rgba(168, 85, 247, 0.1); color: #A855F7; }
.coverage-region-card:hover .region-icon { transform: rotate(15deg) scale(1.1); }
.region-name { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); margin-bottom: 0.85rem; font-size: 1rem; }
.region-cities { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.city-chip {
    font-size: 0.73rem;
    background: var(--bg-section);
    color: var(--primary-light);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}
.city-chip:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.15);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    transition: var(--transition);
    cursor: default;
}
.industry-chip:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
    background: #FFFBF7;
}
.industry-chip i { font-size: 1.3rem; color: var(--accent); transition: var(--transition); }
.industry-chip:hover i { transform: scale(1.2) rotate(-5deg); }
.industry-chip span { font-family: var(--font-heading); font-size: 0.86rem; font-weight: 600; color: var(--text-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.testimonial-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 9rem;
    color: var(--accent);
    opacity: 0.07;
    position: absolute;
    top: -24px; left: 12px;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.15);
    transform: translateY(-6px);
}
.testimonial-card:hover::before { opacity: 0.12; }
.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    display: flex;
    gap: 2px;
}
.testimonial-text {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.author-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-company { font-size: 0.76rem; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, #FB923C 100%);
    background-size: 200% 200%;
    animation: ctaGradient 6s ease infinite;
    position: relative;
    overflow: hidden;
}
@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(0,0,0,0.05) 0%, transparent 40%);
}
.cta-section::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 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='%23fff' fill-opacity='0.04'%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");
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative; z-index: 1;
}
.cta-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    position: relative; z-index: 1;
}
.btn-cta-white {
    background: white;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.93rem;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative; z-index: 1;
}
.btn-cta-white:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--primary);
    position: relative;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}
.footer-top { padding: 5.5rem 0 3.5rem; }
.footer-desc { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; line-height: 1.75; }
.footer-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.73rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex; align-items: center;
    transition: var(--transition-fast);
}
.footer-badge:hover { background: rgba(249, 115, 22, 0.12); border-color: rgba(249, 115, 22, 0.2); color: #FED7AA; }
.footer-social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.footer-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.4rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.86rem;
    display: flex; align-items: center; gap: 0.4rem;
    transition: var(--transition-fast);
    font-weight: 400;
}
.footer-links a i { font-size: 0.62rem; opacity: 0; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a:hover i { opacity: 1; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.footer-contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer-contact-list i { font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list div { font-size: 0.84rem; color: rgba(255, 255, 255, 0.58); line-height: 1.55; }
.footer-contact-list strong { color: rgba(255, 255, 255, 0.88); display: block; margin-bottom: 2px; }
.footer-contact-list a { color: rgba(255, 255, 255, 0.58); display: inline; transition: var(--transition-fast); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-copyright { color: rgba(255, 255, 255, 0.45); font-size: 0.8rem; }
.footer-copyright strong { color: rgba(255, 255, 255, 0.72); }
.footer-bottom-link { color: rgba(255, 255, 255, 0.4); font-size: 0.78rem; transition: var(--transition-fast); }
.footer-bottom-link:hover { color: var(--accent); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 90px; right: 22px;
    width: 44px; height: 44px;
    background: var(--primary-mid);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-accent); }

.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, #25D366, #20BF5B);
    color: white;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); color: white; box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    white-space: nowrap;
    background: var(--primary);
    color: white;
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%; transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: 68px; }

/* ============================================================
   CONTACT & FORM STYLES
   ============================================================ */
.contact-info-card {
    background: linear-gradient(145deg, var(--primary-mid), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: var(--accent); border-color: var(--accent); color: white; transform: scale(1.05); }
.contact-info-label { font-size: 0.73rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-value { color: rgba(255,255,255,0.88); font-size: 0.9rem; line-height: 1.5; }
.contact-info-value a { color: rgba(255,255,255,0.88); }
.contact-info-value a:hover { color: var(--accent); }

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    outline: none;
}
.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
}

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #0A1F50 100%);
    padding: 5.5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; }
.breadcrumb-item { font-size: 0.84rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.55); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* Alert messages */
.alert-success-custom {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #15803D;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}
.alert-error-custom {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #B91C1C;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .hero-section { min-height: auto; padding: 6rem 0 5rem; }
}

@media (max-width: 991px) {
    .hero-section { padding: 4.5rem 0 4rem; }
    .hero-visual { margin-top: 3.5rem; justify-content: center; }
    .hero-float-card { display: none; }
    .stat-item + .stat-item::before { display: none; }
    .mega-dropdown { min-width: 92vw; }
    .mega-dropdown .col-4 { width: 100%; }
    .hero-card-stack { max-width: 420px; }
}

@media (max-width: 767px) {
    section { padding: 4rem 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 1.75rem; }
    .about-exp-badge { left: 12px; }
    .coverage-region-card { margin-bottom: 1rem; }
    .hero-orb-1, .hero-orb-2, .hero-orb-3 { display: none; }
}

@media (max-width: 575px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-num { font-size: 2rem; }
    .stat-item { padding: 2.5rem 1rem; }
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.shimmer {
    background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.5) 50%, transparent 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Reveal animations for elements */
[data-aos] { will-change: transform, opacity; }

/* Smooth focus styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   IT SERVICES EXPANSION — AU/UK Market
   ============================================================ */

/* Tech Stack Chips */
.tech-stack-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.tech-chip {
    padding: .45rem 1.1rem;
    border-radius: 2rem;
    background: var(--bg-section);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: default;
    transition: box-shadow .2s, transform .2s;
}
.tech-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* IT Highlight Section */
.it-highlight-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, #EFF6FF 100%);
}

/* Mega-dropdown 3-column collapse on mobile */
@media (max-width: 991px) {
    .mega-dropdown .col-4 { width: 100%; }
}

/* IT Services page — anchor section dividers */
.it-service-section { scroll-margin-top: 130px; }

/* ============================================================
   SOLAR CRM PRODUCT PAGE
   ============================================================ */

/* Product Hero */
.product-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #1A3F6F 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.product-hero::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}
.product-hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.product-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.4);
    color: #FED7AA;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .78rem; font-weight: 700;
    letter-spacing: .6px; text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 24px;
}
.product-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.product-hero-title .hl { color: var(--accent); }
.product-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.product-hero-visual {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(8px);
}
.hero-stat-mini {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
}
.hero-stat-mini .n { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; font-family: var(--font-heading); }
.hero-stat-mini .l { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 4px; }

/* Trust strip */
.trust-strip { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 7px 14px; font-size: .8rem; font-weight: 600; color: var(--text-dark); font-family: var(--font-heading); }
.trust-chip i { color: var(--accent); }

/* Problem cards */
.problem-section { background: #FFF7ED; }
.problem-card { background: var(--bg-white); border: 1px solid #FED7AA; border-radius: var(--radius); padding: 26px 22px; height: 100%; transition: var(--transition); }
.problem-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-3px); }
.problem-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--accent); margin-bottom: 14px; }
.problem-card h5 { font-weight: 700; font-size: .93rem; color: var(--primary); margin-bottom: 7px; font-family: var(--font-heading); }
.problem-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Deep feature blocks */
.deep-block { display: flex; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.deep-block:last-child { border-bottom: none; }
.deep-block.reverse { flex-direction: row-reverse; }
.deep-img-box { flex: 0 0 44%; background: linear-gradient(135deg, var(--bg-section) 0%, #EFF6FF 100%); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.deep-img-inner { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; width: 100%; box-shadow: var(--shadow-sm); }
.deep-img-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.deep-content { flex: 1; }
.deep-content h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; color: var(--primary); margin-bottom: 12px; }
.deep-content > p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { font-size: .88rem; color: var(--text-dark); padding: 5px 0; display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.check-list li i { color: #16A34A; font-size: .95rem; flex-shrink: 0; margin-top: 2px; }

/* Mock UI elements */
.mock-row-crm { display: flex; gap: 8px; margin-bottom: 10px; align-items: center; }
.mock-avatar-crm { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--cyan)); flex-shrink: 0; }
.mock-line-crm { height: 9px; border-radius: 5px; background: var(--border); }
.crm-badge { padding: 3px 9px; border-radius: 999px; font-size: .67rem; font-weight: 700; flex-shrink: 0; }
.crm-badge-new { background: #DBEAFE; color: #1D4ED8; }
.crm-badge-quoted { background: #FEF3C7; color: #92400E; }
.crm-badge-won { background: #DCFCE7; color: #166534; }
.mock-stat-crm { background: var(--bg-section); border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center; }
.mock-stat-crm .n { font-size: 1.3rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.mock-stat-crm .l { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.mock-progress-crm { height: 6px; border-radius: 3px; background: var(--border); overflow: hidden; margin-top: 4px; }
.mock-progress-fill { height: 100%; border-radius: 3px; }

/* CRM FAQ accordion overrides */
.crm-accordion .accordion-item { background: var(--bg-white); border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.crm-accordion .accordion-button { font-family: var(--font-heading); font-weight: 600; font-size: .93rem; color: var(--primary); background: var(--bg-white); box-shadow: none !important; padding: 18px 22px; }
.crm-accordion .accordion-button:not(.collapsed) { color: var(--accent); background: #FFF7ED; }
.crm-accordion .accordion-body { font-size: .88rem; color: var(--text-muted); line-height: 1.7; padding: 0 22px 18px; }

@media (max-width: 991px) {
    .deep-block, .deep-block.reverse { flex-direction: column; gap: 28px; }
    .deep-img-box { flex: unset; width: 100%; min-height: 180px; }
    .product-hero { padding: 70px 0 60px; }
}

/* ============================================================
   CLIENT LOGOS — Scrolling Marquee Strip
   ============================================================ */
.client-logos-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    overflow: hidden;
}
.client-logos-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 28px;
}
.client-logos-marquee {
    overflow: hidden;
    /* fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.client-logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoScroll 32s linear infinite;
}
.client-logos-track:hover { animation-play-state: paused; }
.client-logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
}
.client-logo-slide img {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(.5);
    transition: filter .35s ease;
    background: transparent;
}
.client-logo-slide:hover img {
    filter: grayscale(0%) opacity(1);
}
@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 575px) {
    .client-logo-slide { padding: 0 24px; }
    .client-logo-slide img { height: 34px; max-width: 110px; }
}
@media (prefers-reduced-motion: reduce) {
    .client-logos-track { animation: none; }
    .client-logos-marquee {
        -webkit-mask-image: none;
        mask-image: none;
        overflow-x: auto;
    }
}

/* IT page sticky nav pills active */
.it-nav-pill.active {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

/* ============================================================
   SOLAR CRM — Page Anchor Nav
   ============================================================ */
.crm-page-nav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 190;
}
.crm-page-nav .inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.crm-page-nav .inner::-webkit-scrollbar { display: none; }
.crm-page-link {
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 13px 18px;
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.crm-page-link:hover { color: var(--accent); border-bottom-color: rgba(249,115,22,.4); }
.crm-page-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.crm-page-nav .crm-demo-btn {
    margin-left: auto;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}
.crm-page-nav .crm-demo-btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

/* Solar CRM section padding */
.crm-section { padding: 80px 0; }
@media (max-width: 767px) { .crm-section { padding: 50px 0; } }

/* Scroll margin for sticky navs */
.crm-section[id] { scroll-margin-top: 130px; }

/* ============================================================
   GLOBAL MOBILE FIXES
   ============================================================ */

/* Navbar mobile menu max-height + scroll */
@media (max-width: 991px) {
    .navbar-nav {
        max-height: calc(100svh - 130px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Mobile nav Solar CRM icon — don't show in collapsed list */
    .navbar-nav .bi-sun-fill { display: none; }
}

/* Trust strip — prevent overflow on small screens */
.trust-strip .d-flex {
    flex-wrap: wrap;
}
@media (max-width: 575px) {
    .trust-strip .d-flex {
        gap: .5rem !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .trust-strip .d-flex::-webkit-scrollbar { display: none; }
    .trust-strip p { display: none; }
}

/* Product hero — stack CTA buttons on mobile */
@media (max-width: 575px) {
    .product-hero .d-flex.flex-wrap { flex-direction: column !important; }
    .product-hero .d-flex.flex-wrap .btn { width: 100%; justify-content: center; }
    /* Simplify hero visual on tiny screens */
    .product-hero-visual { padding: 18px; }
    .hero-stat-mini { padding: 12px; }
    .hero-stat-mini .n { font-size: 1.5rem; }
}

/* Stats dividers between items on desktop */
@media (min-width: 992px) {
    .crm-stats-item + .crm-stats-item {
        border-left: 1px solid rgba(255,255,255,.12);
    }
}

/* Service card list items — tighten on mobile */
@media (max-width: 575px) {
    .service-card { padding: 1.25rem; }
    .service-card-icon { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* Deep block content h3 scaling on mobile */
@media (max-width: 575px) {
    .deep-content h3 { font-size: 1.3rem; }
    .deep-content > p { font-size: .88rem; }
}

/* Mega dropdown — cap height and make scrollable on mobile */
@media (max-width: 991px) {
    .mega-dropdown {
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* CTA section — stack buttons on mobile */
@media (max-width: 575px) {
    .cta-section .d-flex.flex-wrap { flex-direction: column !important; align-items: center; }
    .cta-section .d-flex.flex-wrap .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* Process step — center number on mobile */
@media (max-width: 575px) {
    .process-step-num { margin: 0 auto 16px !important; }
}

/* Responsive section titles */
@media (max-width: 575px) {
    .section-title { font-size: 1.6rem !important; }
    .section-subtitle { font-size: .92rem; }
    .product-hero-title { font-size: 2rem !important; letter-spacing: -.8px; }
}

/* Footer — ensure links are large enough for tap on mobile */
@media (max-width: 767px) {
    .footer-links li a { padding: 4px 0; display: inline-flex; align-items: center; gap: 4px; }
    .footer-contact-list li { gap: 10px; }
    .footer-social { gap: 12px !important; }
}

/* IT services section header alignment on mobile */
@media (max-width: 767px) {
    .it-service-section .row { flex-direction: column-reverse; }
    .it-icon-panel { margin-bottom: 1.5rem; }
}

/* Ticker bar — ensure readable on mobile */
@media (max-width: 575px) {
    .ticker-item { font-size: .78rem; padding: 0 1.5rem; }
}
