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

/* =========================================================================
   1. CORE DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================= */
:root {
    --bg-dark: #050811;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass-active: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.06);
    --primary: #00E676; /* Vibrant Green */
    --primary-glow: rgba(0, 230, 118, 0.3);
    --secondary: #2979FF; /* Electric Blue */
    --secondary-glow: rgba(41, 121, 255, 0.3);
    --accent-orange: #FF9100;
    --accent-purple: #D500F9;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dark: #0F172A;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-glow: 0 0 25px var(--primary-glow);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #FFFFFF;
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: auto; /* Handled by Lenis Scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0F172A;
}

/* Helper styles for dark sections */
.dark-section {
    background-color: #050811;
    color: #FFFFFF;
    position: relative;
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4, .dark-section h5, .dark-section h6 {
    color: #FFFFFF;
}
.dark-section p {
    color: #94A3B8;
}

/* Admin Dashboard theme locks */
.admin-body h1, .admin-body h2, .admin-body h3, .admin-body h4, .admin-body h5, .admin-body h6 {
    color: #FFFFFF;
}
.admin-body p {
    color: #94A3B8;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    transform: translateY(-140%);
    z-index: 10000;
    background: #0F172A;
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

:focus-visible {
    outline: 3px solid rgba(0, 230, 118, 0.65);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =========================================================================
   2. UTILITIES & GLASSMORPHISM
   ========================================================================= */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.text-gradient-green {
    background: linear-gradient(135deg, #00E676 0%, #00B0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #2979FF 0%, #D500F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* =========================================================================
   3. NAVIGATION HEADER
   ========================================================================= */
header.main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1450px, calc(100% - 40px));
    height: 76px;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 15px 50px rgba(0, 0, 0, 0.10);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: navEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

header.main-nav.scrolled {
    height: 66px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 20px 60px rgba(0, 0, 0, 0.14);
}

.nav-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

/* Logo: left-aligned in its column */
.nav-container .logo-brand {
    justify-self: start;
}

/* CTA group: right-aligned in its column */
.nav-container .nav-cta {
    justify-self: end;
}

.logo-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.07rem; /* 1.8rem * 1.15 = 2.07rem */
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    color: #1F2937 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    z-index: 10;
    text-decoration: none;
}

header.main-nav.scrolled .logo-brand {
    transform: scale(0.92);
}

.logo-brand span {
    color: #7BE236;
}

/* Image Logo styles to fit everywhere */
.site-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-about .site-logo-img {
    height: 110px;
    opacity: 0.95;
    margin-left: -15px;
    margin-top: -20px;
    margin-bottom: -15px;
}

.admin-login-card .site-logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
    /* Grid column 2: naturally centered by 1fr column */
}

.nav-link-item {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px !important;
    color: #1F2937 !important;
    padding: 0 16px !important;
    height: 38px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    white-space: nowrap;
    border-radius: 50px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.nav-link-item:hover {
    color: #69D236 !important;
    transform: translateY(-2px);
}

/* Active menu rounded pill styling */
.nav-link-item.active {
    background: rgba(122, 255, 90, 0.14) !important;
    color: #69D236 !important;
    text-shadow: 0 0 10px rgba(105, 210, 54, 0.3);
}

/* Underline Animation on Hover */
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #69D236;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-item:hover::after {
    width: 50%;
}

.nav-link-item.active::after {
    display: none !important;
}

.nav-link-item.active:hover {
    transform: none !important;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

/* CTA group: phone button + quote button + hamburger */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* Circular Phone / Call Button beside CTA */
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #1F2937;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.nav-icon-btn:hover {
    transform: scale(1.05) rotate(15deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    color: #7BE236;
}

header.main-nav.scrolled .nav-icon-btn {
    width: 44px;
    height: 44px;
}

/* Get a Quote premium button */
header.main-nav .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    padding: 0 30px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #B7FF39 0%, #7BE236 100%) !important;
    color: #111111 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(123, 226, 54, 0.15) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

header.main-nav.scrolled .btn-primary {
    height: 44px !important;
}

header.main-nav .btn-primary:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(123, 226, 54, 0.35) !important;
}

header.main-nav .btn-primary i {
    margin-left: 8px !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header.main-nav .btn-primary:hover i {
    transform: translateX(6px) !important;
}

/* Premium Hamburguer Toggle Button */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.menu-toggle-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1F2937 !important;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.3s ease;
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay with Premium Backdrop Blur & Spring Animation */
.mobile-menu-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), top 0s 0.6s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.mobile-menu-overlay.active {
    top: 0;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1); /* Spring action */
}

.mobile-menu-overlay .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu-overlay.active .mobile-menu-list {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.2) 0.2s, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.2) 0.2s;
}

.mobile-nav-link-item {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1F2937 !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.mobile-nav-link-item:hover {
    color: #69D236 !important;
    transform: scale(1.05);
}

/* ==========================================================================
   RESPONSIVE NAVIGATION — 3 BREAKPOINTS
   ========================================================================== */

/* ── Tablet: ≤ 991px ── */
@media (max-width: 991px) {
    header.main-nav {
        width: calc(100% - 40px);
        top: 15px;
        height: 64px;
        padding: 0 20px;
        border-radius: 20px;
    }

    header.main-nav.scrolled {
        top: 8px;
        height: 60px;
    }

    /* On mobile: just logo left, CTA right */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide desktop links */
    .nav-menu {
        display: none !important;
    }

    /* Show hamburger */
    .menu-toggle-btn {
        display: flex;
    }

    /* Keep phone + quote + hamburger in cta group */
    .nav-cta {
        gap: 8px;
    }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {
    header.main-nav {
        width: calc(100% - 24px);
        top: 12px;
        padding: 0 16px;
        border-radius: 16px;
        height: 60px;
    }

    header.main-nav.scrolled {
        top: 6px;
        height: 56px;
    }

    /* Hide Get a Quote button on small screens */
    header.main-nav .btn-primary {
        display: none !important;
    }

    .nav-icon-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .site-logo-img {
        height: 36px;
    }
}

/* ── Small Mobile: ≤ 380px ── */
@media (max-width: 380px) {
    header.main-nav {
        width: calc(100% - 16px);
        top: 10px;
        padding: 0 12px;
        border-radius: 14px;
    }

    .site-logo-img {
        height: 30px;
    }
}

/* ── Mobile Overlay Menu ── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Hidden state — slide up from bottom */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition:
        opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.45s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1),
        transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1),
        visibility 0s linear 0s;
}

/* Menu list inside overlay */
.mobile-menu-overlay .mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 320px;
    /* Stagger reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-list {
    opacity: 1;
    transform: translateY(0);
}

/* Individual mobile link */
.mobile-nav-link-item {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #1F2937 !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 14px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    letter-spacing: -0.02em;
}

.mobile-nav-link-item:hover,
.mobile-nav-link-item:active {
    color: #69D236 !important;
    background: rgba(105, 210, 54, 0.06);
    transform: scale(1.03);
}

.mobile-nav-link-item.active {
    color: #69D236 !important;
    background: rgba(105, 210, 54, 0.1);
}

/* Phone number row inside mobile menu */
.mobile-menu-phone {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    background: #F3FFF0;
    border: 1px solid rgba(105, 210, 54, 0.25);
    transition: all 0.25s ease;
}

.mobile-menu-phone i {
    color: #69D236;
    font-size: 1rem;
}

.mobile-menu-phone:hover {
    background: rgba(105, 210, 54, 0.12);
    color: #69D236;
}

/* CTA button inside overlay */
.mobile-menu-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #B7FF39 0%, #7BE236 100%);
    color: #111 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(123,226,54,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(123,226,54,0.35);
}


/* =========================================================================
   4. HOME PAGE SECTIONS
   ========================================================================= */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 140px; /* Space for the bottom wave shape */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #050811;
    color: #FFFFFF;
}

/* Custom SVG Wave Shape Divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-divider .shape-fill {
    fill: #FFFFFF;
}


.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    align-self: flex-start;
    padding: 6px 16px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}

.hero-stat-card {
    text-align: left;
}

.hero-stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-stat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Right: Overlapping Images Layout */
.hero-visuals {
    position: relative;
    height: 580px;
}

.hero-img-main {
    width: 75%;
    height: 90%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.hero-floating-card {
    position: absolute;
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: var(--transition);
}

.hero-floating-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary);
}

.card-1 {
    top: 5%;
    right: 5%;
}

.card-2 {
    top: 40%;
    right: 0%;
}

.card-3 {
    bottom: 5%;
    right: 8%;
}

.hero-trust-badge {
    position: absolute;
    bottom: 12%;
    left: 10%;
    z-index: 5;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust-badge .avatars {
    display: flex;
}

.hero-trust-badge .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
}

.hero-trust-badge .avatars img:first-child {
    margin-left: 0;
}

.hero-trust-badge p {
    font-size: 0.8rem;
    font-weight: 500;
}

.solutions-section {
    padding: 100px 0;
    position: relative;
    background-color: #FFFFFF;
    color: #0F172A;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title-wrapper {
    max-width: 600px;
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

.section-link {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-link:hover {
    color: var(--primary);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 440px;
}

.service-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    width: 100%;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: #FFFFFF;
}

.service-icon-box {
    position: absolute;
    bottom: 0;
    left: 20px;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0F172A;
}

.service-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #0F172A;
    transition: var(--transition);
}

/* Card Hover states */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card:hover .service-card-arrow {
    transform: rotate(-45deg);
}

/* Theme color definitions */
.service-card.theme-green .service-icon-box { background: #00E676; box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3); }
.service-card.theme-green:hover { border-color: rgba(0, 230, 118, 0.3); }
.service-card.theme-green:hover .service-card-arrow { background: #00E676; color: #0F172A; border-color: #00E676; }

.service-card.theme-blue .service-icon-box { background: #2979FF; box-shadow: 0 4px 15px rgba(41, 121, 255, 0.3); }
.service-card.theme-blue:hover { border-color: rgba(41, 121, 255, 0.3); }
.service-card.theme-blue:hover .service-card-arrow { background: #2979FF; color: #FFFFFF; border-color: #2979FF; }

.service-card.theme-purple .service-icon-box { background: #D500F9; box-shadow: 0 4px 15px rgba(213, 0, 249, 0.3); }
.service-card.theme-purple:hover { border-color: rgba(213, 0, 249, 0.3); }
.service-card.theme-purple:hover .service-card-arrow { background: #D500F9; color: #FFFFFF; border-color: #D500F9; }

.service-card.theme-orange .service-icon-box { background: #FF9100; box-shadow: 0 4px 15px rgba(255, 145, 0, 0.3); }
.service-card.theme-orange:hover { border-color: rgba(255, 145, 0, 0.3); }
.service-card.theme-orange:hover .service-card-arrow { background: #FF9100; color: #FFFFFF; border-color: #FF9100; }

.service-card.theme-cyan .service-icon-box { background: #00B0FF; box-shadow: 0 4px 15px rgba(0, 176, 255, 0.3); }
.service-card.theme-cyan:hover { border-color: rgba(0, 176, 255, 0.3); }
.service-card.theme-cyan:hover .service-card-arrow { background: #00B0FF; color: #FFFFFF; border-color: #00B0FF; }

.service-card.theme-lime .service-icon-box { background: #AEEA00; box-shadow: 0 4px 15px rgba(174, 234, 0, 0.3); }
.service-card.theme-lime:hover { border-color: rgba(174, 234, 0, 0.3); }
.service-card.theme-lime:hover .service-card-arrow { background: #AEEA00; color: #0F172A; border-color: #AEEA00; }

.service-card.theme-magenta .service-icon-box { background: #FF4081; box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3); }
.service-card.theme-magenta:hover { border-color: rgba(255, 64, 129, 0.3); }
.service-card.theme-magenta:hover .service-card-arrow { background: #FF4081; color: #FFFFFF; border-color: #FF4081; }

.service-card.theme-red .service-icon-box { background: #FF1744; box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3); }
.service-card.theme-red:hover { border-color: rgba(255, 23, 68, 0.3); }
.service-card.theme-red:hover .service-card-arrow { background: #FF1744; color: #FFFFFF; border-color: #FF1744; }

/* Statistics Strip */
.stats-strip-section {
    padding: 40px 0;
    background-color: #F8FAFC;
    position: relative;
}

.stats-strip-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    background: #0B1120;
    border-radius: 100px;
    border: 1px solid rgba(123, 226, 54, 0.15);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(123, 226, 54, 0.08) inset;
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-strip-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.stat-strip-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF !important;
    margin-bottom: 2px;
}

.stat-strip-content p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Featured Projects */
.projects-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    color: #0F172A;
}

.projects-section .section-title {
    color: #0F172A;
}

.projects-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px; /* Make space for absolute buttons on sides */
    position: relative;
}


.project-slide-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--border-glass);
}

.project-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 8, 17, 0.95) 0%, rgba(5, 8, 17, 0.3) 50%, rgba(5, 8, 17, 0) 100%);
    z-index: 2;
}

.project-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
}

.project-slide-meta {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.project-slide-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.project-slide-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.project-slide-card:hover .project-slide-img {
    transform: scale(1.05);
}

.swiper-nav-buttons {
    /* Scoped container is centered relative to slider */
    display: block;
}

.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.swiper-btn:hover {
    background: #00C853;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-prev-custom {
    left: 10px;
}

.swiper-button-next-custom {
    right: 10px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #FFFFFF;
    color: #0F172A;
}

.process-section .section-title {
    color: #0F172A;
}

.process-timeline-container {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    position: relative;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.2) 0%, rgba(41, 121, 255, 0.2) 25%, rgba(213, 0, 249, 0.2) 50%, rgba(255, 64, 129, 0.2) 75%, rgba(255, 145, 0, 0.2) 100%);
    z-index: 1;
}

.process-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00E676 0%, #2979FF 25%, #D500F9 50%, #FF4081 75%, #FF9100 100%);
    z-index: 2;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}


.process-steps-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #94A3B8;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
}

.process-step-node span.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E2E8F0;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    transition: var(--transition);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0F172A;
}

.process-step p {
    font-size: 0.85rem;
    color: #64748B;
    max-width: 180px;
}

/* Timeline theme colors (Always active to match user attachment) */
.process-step.step-theme-green .process-step-node { border-color: #00E676; color: #00E676; box-shadow: 0 0 20px rgba(0, 230, 118, 0.15); }
.process-step.step-theme-green .process-step-node span.step-number { background: #00E676; color: #FFFFFF; }

.process-step.step-theme-blue .process-step-node { border-color: #2979FF; color: #2979FF; box-shadow: 0 0 20px rgba(41, 121, 255, 0.15); }
.process-step.step-theme-blue .process-step-node span.step-number { background: #2979FF; color: #FFFFFF; }

.process-step.step-theme-purple .process-step-node { border-color: #D500F9; color: #D500F9; box-shadow: 0 0 20px rgba(213, 0, 249, 0.15); }
.process-step.step-theme-purple .process-step-node span.step-number { background: #D500F9; color: #FFFFFF; }

.process-step.step-theme-magenta .process-step-node { border-color: #FF4081; color: #FF4081; box-shadow: 0 0 20px rgba(255, 64, 129, 0.15); }
.process-step.step-theme-magenta .process-step-node span.step-number { background: #FF4081; color: #FFFFFF; }

.process-step.step-theme-orange .process-step-node { border-color: #FF9100; color: #FF9100; box-shadow: 0 0 20px rgba(255, 145, 0, 0.15); }
.process-step.step-theme-orange .process-step-node span.step-number { background: #FF9100; color: #FFFFFF; }


/* Call to Action (CTA) Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    background-color: #FFFFFF;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    background-color: #050811;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.15);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.95) 0%, rgba(41, 121, 255, 0.05) 100%);
    z-index: 1;
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #FFFFFF !important;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF !important;
    text-decoration: none;
}

.cta-phone-link i {
    color: var(--primary);
}

.cta-visuals {
    position: relative;
    z-index: 2;
    height: 400px;
    display: flex;
    justify-content: flex-end;
}

.cta-engineer-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* =========================================================================
   5. GENERAL PAGES CUSTOM STYLES
   ========================================================================= */

/* Inner Pages Header */
.inner-hero-header {
    padding: 160px 0 120px 0; /* Space for the bottom wave shape */
    text-align: center;
    position: relative;
    background-color: #050811;
    color: #FFFFFF;
    overflow: hidden;
}

.inner-hero-header h1 {
    font-size: 3.6rem;
    margin-bottom: 12px;
    color: #FFFFFF !important;
}

.inner-hero-header p {
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Variable scoping for all light areas on the public site */
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) {
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-glass: #E2E8F0;
    --bg-card: #FFFFFF;
}

/* Ensure glass panels behave as clean white panels in light pages */
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.04);
}
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel h1,
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel h2,
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel h3,
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel h4 {
    color: #0F172A;
}
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .glass-panel p {
    color: #64748B;
}

/* Form controls in light pages */
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .form-control {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .form-control:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

/* Button overrides in light context */
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .btn-outline {
    border-color: #CBD5E1;
    color: #0F172A;
}
body:not(.admin-body) section:not(.hero-section):not(.inner-hero-header):not(.cta-section) .btn-outline:hover {
    background: #0F172A;
    color: #FFFFFF;
    border-color: #0F172A;
}

/* Ensure project cards inside sliders and portfolio items retain their overlay white text */
.portfolio-item, .project-slide-card {
    color: #FFFFFF !important;
}
.portfolio-item h3, .project-slide-card h3 {
    color: #FFFFFF !important;
}
.portfolio-item p, .project-slide-card p {
    color: #94A3B8 !important;
}

    max-width: 600px;
    margin: 0 auto;
}

/* Contact page structures */
.contact-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-info {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.info-item-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.info-item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-embed-wrapper {
    height: 350px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-card {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

/* =========================================================================
   6. FOOTER
   ========================================================================= */
footer.main-footer {
    background: #020409;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 50px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-column h3 {
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-about .footer-desc {
    margin: 20px 0;
    line-height: 1.6;
}

.social-links-footer {
    display: flex;
    gap: 15px;
}

.social-link-item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link-item:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form .form-control {
    padding: 10px 14px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0 40px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: none;
    transition: var(--transition);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* =========================================================================
   7. ADMIN PANEL STYLES (Modern Glowing Light UI)
   ========================================================================= */
.admin-body {
    background: #F8FAFC;
    color: #0F172A;
}

/* Background Ambient Glow Elements */
.login-glow-1 {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.login-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F1F5F9 100%);
    position: relative;
    z-index: 1;
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 0 40px rgba(0, 230, 118, 0.02);
    position: relative;
    z-index: 2;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: #F8FAFC;
}

.admin-sidebar {
    width: 280px;
    background: #FFFFFF;
    border-right: 1px solid #E2E8F0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.admin-sidebar-brand {
    padding: 0 35px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 45px;
}

.admin-sidebar-brand a {
    color: #0F172A !important;
}

.admin-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 15px;
}

.admin-menu-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: #64748B;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition);
}

.admin-menu-list li a:hover {
    color: #0F172A;
    background: #F1F5F9;
}

.admin-menu-list li.active a {
    color: var(--primary);
    background: rgba(0, 230, 118, 0.08);
    font-weight: 600;
    box-shadow: none;
}

.admin-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F8FAFC;
    min-height: 100vh;
}

.admin-topbar {
    height: 80px;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
}

.admin-topbar strong {
    color: #0F172A !important;
}

.admin-page-body {
    padding: 40px;
    flex: 1;
    overflow-y: auto;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.admin-stat-widget {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.admin-stat-widget:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.05);
}

.admin-stat-widget-details h3 {
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.1;
    font-weight: 800;
}

.admin-stat-widget-details p {
    color: #64748B;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.admin-stat-widget-icon {
    font-size: 2.2rem;
    color: #E2E8F0;
    transition: var(--transition);
}

.admin-stat-widget:hover .admin-stat-widget-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.admin-table-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 16px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    color: #0F172A;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid #F1F5F9;
    color: #64748B;
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: #F8FAFC;
    color: #0F172A;
}

.badge-status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-pending { background: rgba(255, 145, 0, 0.08); color: var(--accent-orange); border: 1px solid rgba(255, 145, 0, 0.15); }
.badge-unread { background: rgba(213, 0, 249, 0.08); color: var(--accent-purple); border: 1px solid rgba(213, 0, 249, 0.15); }
.badge-approved { background: rgba(0, 230, 118, 0.08); color: var(--primary); border: 1px solid rgba(0, 230, 118, 0.15); }
.badge-read { background: #F1F5F9; color: #64748B; border: 1px solid #E2E8F0; }

/* Alert Box */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-success { background: rgba(0, 230, 118, 0.08); border-color: rgba(0, 230, 118, 0.15); color: var(--primary); }
.alert-danger { background: rgba(255, 23, 68, 0.08); border-color: rgba(255, 23, 68, 0.15); color: #FF1744; }

/* Typography overrides for white admin portal */
.admin-body h1, .admin-body h2, .admin-body h3, .admin-body h4, .admin-body h5, .admin-body h6 {
    color: #0F172A !important;
}
.admin-body p {
    color: #64748B !important;
}
.admin-body .form-group label {
    color: #64748B !important;
}

/* Form controls in white admin portal */
.admin-body .form-control {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 14px 16px;
    color: #0F172A;
    font-size: 0.95rem;
    transition: var(--transition);
}
.admin-body .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}
.admin-body select.form-control {
    background-color: #FFFFFF !important;
    color: #0F172A !important;
}

/* =========================================================================
   8. RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================= */

@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .services-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .nav-menu { display: none; }
    .menu-toggle-btn { display: flex; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-badge, .hero-subtitle { align-self: center; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-visuals { display: none; }
    .process-steps-row { grid-template-columns: 1fr; gap: 40px; }
    .process-line { display: none; }
    .cta-card { grid-template-columns: 1fr; padding: 45px; text-align: center; }
    .cta-visuals { display: none; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .admin-stats-grid { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border-glass); }
}
