/* ================================================================
   Helio Prime General Contracting LLC — Main Stylesheet
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS Variables & Design Tokens
   ---------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary:          #2522A3;
    --primary-dark:     #1a1880;
    --primary-light:    #3530c4;
    --primary-rgb:      37, 34, 163;

    --secondary:        #FF6B00;
    --secondary-light:  #FF8C00;
    --secondary-dark:   #e05500;
    --secondary-rgb:    255, 107, 0;

    /* Backgrounds */
    --dark:             #0D0C2B;
    --dark-2:           #16153a;
    --dark-3:           #0a0920;

    /* Text */
    --text-dark:        #1a1a2e;
    --text-body:        #44445a;
    --text-muted:       #888899;
    --text-light:       #d8d8f0;

    /* Neutrals */
    --white:            #ffffff;
    --light:            #f5f7ff;
    --light-2:          #eceffe;
    --border:           #dde0f5;

    /* Gradients */
    --grad-primary:     linear-gradient(135deg, #2522A3 0%, #1a1880 100%);
    --grad-secondary:   linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    --grad-dark:        linear-gradient(135deg, #0D0C2B 0%, #16153a 100%);
    --grad-hero:        linear-gradient(135deg, rgba(13,12,43,0.82) 0%, rgba(37,34,163,0.68) 100%);
    --grad-card-hover:  linear-gradient(180deg, transparent 40%, rgba(13,12,43,0.9) 100%);

    /* Typography */
    --font-heading:     'Poppins', sans-serif;
    --font-body:        'Inter', sans-serif;

    /* Spacing (8px base grid) */
    --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px;  --sp-4: 32px;
    --sp-5: 40px; --sp-6: 48px; --sp-8: 64px;  --sp-10: 80px;
    --sp-12: 96px; --sp-16: 128px;

    /* Border Radius */
    --radius-sm: 4px;   --radius: 8px;
    --radius-md: 12px;  --radius-lg: 16px;
    --radius-xl: 24px;  --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(var(--primary-rgb), 0.08);
    --shadow:      0 4px 20px rgba(var(--primary-rgb), 0.12);
    --shadow-md:   0 8px 32px rgba(var(--primary-rgb), 0.16);
    --shadow-lg:   0 16px 48px rgba(var(--primary-rgb), 0.22);
    --shadow-dark: 0 8px 32px rgba(0,0,0,0.35);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 12px 48px rgba(var(--primary-rgb), 0.2);

    /* Transitions */
    --t:      all 0.3s ease;
    --t-slow: all 0.5s ease;
    --t-fast: all 0.15s ease;

    /* Navbar */
    --navbar-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

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

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

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

ul { list-style: none; padding: 0; margin: 0; }

/* ----------------------------------------------------------------
   3. Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-accent { color: var(--secondary); }
.text-primary-color { color: var(--primary); }

/* ----------------------------------------------------------------
   4. Section Layout
   ---------------------------------------------------------------- */
.section-padding { padding: var(--sp-10) 0; }
.section-padding-sm { padding: var(--sp-6) 0; }

.section-header { margin-bottom: var(--sp-8); }
.section-header.text-center { text-align: center; }

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.section-badge.badge-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }

.section-divider {
    width: 60px; height: 4px;
    background: var(--grad-secondary);
    border-radius: var(--radius-full);
    margin: 16px 0 20px;
}
.text-center .section-divider { margin: 16px auto 20px; }

/* ----------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------- */
.btn { position: relative; overflow: hidden; font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.4px; transition: var(--t); border-radius: var(--radius-sm); }

/* Ripple */
.btn::after {
    content: '';
    position: absolute;
    width: 0; height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}
.btn:active::after { width: 200px; height: 200px; opacity: 1; }

.btn-primary-custom {
    background: var(--grad-primary);
    color: var(--white);
    padding: 12px 32px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
}
.btn-primary-custom:hover {
    background: var(--grad-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.4);
}

.btn-secondary-custom {
    background: var(--grad-secondary);
    color: var(--white);
    padding: 12px 32px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.35);
}
.btn-secondary-custom:hover {
    background: var(--grad-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    padding: 11px 31px;
    border: 2px solid var(--primary);
}
.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    padding: 11px 31px;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero buttons */
.btn-hero-primary {
    background: var(--grad-secondary);
    color: var(--white);
    padding: 14px 36px;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 24px rgba(var(--secondary-rgb), 0.45);
}
.btn-hero-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 35px;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.65);
    border-radius: var(--radius-sm);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Nav CTA Button */
.btn-nav-cta {
    background: var(--grad-secondary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(var(--secondary-rgb), 0.35);
}
.btn-nav-cta:hover {
    background: var(--grad-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(var(--primary-rgb), 0.4);
}

/* ----------------------------------------------------------------
   6. Back to Top
   ---------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--t);
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
    background: var(--grad-secondary);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   7. Navbar
   ---------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; }

#mainNav {
    height: var(--navbar-height);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

#mainNav.scrolled {
    background: var(--dark);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    height: 68px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo {
    width: 48px; height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--t);
}
#mainNav.scrolled .nav-logo { border-color: rgba(255,255,255,0.2); }

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-primary { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.brand-secondary { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--secondary); }
.nav-brand-text small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--t);
}
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after { width: calc(100% - 32px); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }

/* Dropdown toggle — keep caret inline */
.navbar-nav .nav-link.dropdown-toggle {
    white-space: nowrap;
}

/* Dropdown */
.services-dropdown {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 240px;
    box-shadow: var(--shadow-dark);
}
.services-dropdown .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--t);
}
.services-dropdown .dropdown-item i { color: var(--secondary); font-size: 1rem; }
.services-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}
.services-dropdown .dropdown-divider { border-color: rgba(255,255,255,0.1); }

/* Open dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile toggler */
.navbar-toggler {
    border: none;
    padding: 4px;
    background: transparent;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
    display: flex; flex-direction: column;
    gap: 5px; cursor: pointer;
}
.toggler-icon span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
}

/* Mobile nav */
@media (max-width: 991px) {
    #mainNav.scrolled,
    #mainNav { background: var(--dark) !important; }
    .navbar-collapse {
        background: var(--dark-2);
        padding: 16px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-nav .nav-link::after { display: none; }
    .services-dropdown { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
    .btn-nav-cta { margin-top: 12px; display: inline-block; }
}

/* ----------------------------------------------------------------
   8. Hero Slider
   ---------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-swiper { width: 100%; height: 100%; }

.swiper-slide { position: relative; overflow: hidden; }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease;
    will-change: transform;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 1;
}

.hero-swiper .container { position: relative; z-index: 2; }

.hero-content {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--navbar-height);
    max-width: 720px;
}

.nav-link:focus-visible {
  box-shadow: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--secondary); }

.hero-content h1 {
    color: var(--white);
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    font-weight: 800;
}
.hero-content h1 em { font-style: normal; }

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Swiper controls */
.hero-btn-prev,
.hero-btn-next {
    width: 50px !important; height: 50px !important;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--t);
    display: flex; align-items: center; justify-content: center;
}
.hero-btn-prev::after,
.hero-btn-next::after { display: none; }
.hero-btn-prev i, .hero-btn-next i { line-height: 1; }
.hero-btn-prev:hover,
.hero-btn-next:hover { background: var(--secondary); border-color: var(--secondary); }

.hero-pagination { bottom: 24px !important; }
.hero-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--t);
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease infinite;
}
.scroll-indicator i { font-size: 1rem; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ----------------------------------------------------------------
   9. Page Title Banner
   ---------------------------------------------------------------- */
.page-title-section {
    position: relative;
    padding: 140px 0 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.page-title-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,12,43,0.88) 0%, rgba(37,34,163,0.75) 100%);
}
.page-title-content {
    position: relative;
    z-index: 1;
}
.page-title-content h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: '/';
    padding: 0 8px;
}
.breadcrumb-item a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.breadcrumb-item a:hover { color: var(--secondary); }
.breadcrumb-item.active { color: var(--secondary); font-size: 0.9rem; }

/* ----------------------------------------------------------------
   10. Why Choose Us
   ---------------------------------------------------------------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--t-slow);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--sp-3);
    transition: var(--t);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ----------------------------------------------------------------
   11. Service Cards
   ---------------------------------------------------------------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t-slow);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-card-hover);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--t);
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: var(--t);
    display: flex; align-items: center; gap: 8px;
}
.service-card-link:hover { background: var(--white); color: var(--primary); }

.service-card-body {
    padding: var(--sp-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-icon {
    width: 52px; height: 52px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--sp-2);
    transition: var(--t);
    margin-top: -42px;
    border: 3px solid var(--white);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card-icon { background: var(--primary); color: var(--white); }

.service-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-card-body p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }

.service-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    width: fit-content;
    transition: var(--t);
}
.service-card-more:hover { color: var(--secondary); border-color: var(--secondary); gap: 10px; }

/* ----------------------------------------------------------------
   12. About Section (Home)
   ---------------------------------------------------------------- */
.about-image-wrap {
    position: relative;
}
.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-badge-card {
    position: absolute;
    bottom: 32px; left: -32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 160px;
    border-left: 4px solid var(--secondary);
}
.about-badge-card .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.about-badge-card .badge-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}
.about-accent-box {
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.1;
    z-index: -1;
}

.about-content { padding-left: var(--sp-5); }
@media (max-width: 991px) { .about-content { padding-left: 0; margin-top: 40px; } }

.strength-list { margin-top: var(--sp-3); }
.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.strength-item:last-child { border-bottom: none; }
.strength-icon {
    width: 40px; height: 40px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.strength-item h5 { font-size: 0.95rem; margin-bottom: 2px; }
.strength-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ----------------------------------------------------------------
   13. Stats Counter Section
   ---------------------------------------------------------------- */
.stats-section {
    background: var(--grad-dark);
    position: relative;
    padding: var(--sp-10) 0;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.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");
}
.stats-section .container { position: relative; z-index: 1; }

.stat-item { padding: var(--sp-5) var(--sp-3); text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-number .counter { color: var(--secondary); }
.stat-number sup { font-size: 0.5em; vertical-align: top; }
.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
}
@media (max-width: 767px) { .stat-divider { display: none; } }

/* ----------------------------------------------------------------
   14. Quality & Safety Section
   ---------------------------------------------------------------- */
.quality-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--t-slow);
}
.quality-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.quality-card:hover::after { transform: scaleX(1); }
.quality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.quality-card-icon {
    width: 70px; height: 70px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--sp-3);
    transition: var(--t);
}
.quality-card:hover .quality-card-icon { background: var(--primary); color: var(--white); }
.quality-card h4 { margin-bottom: 12px; }

.safety-list { margin-top: var(--sp-2); }
.safety-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-body);
}
.safety-list-item:last-child { border-bottom: none; }
.safety-list-item i { color: var(--secondary); font-size: 1rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   15. CTA Banner Section
   ---------------------------------------------------------------- */
.cta-section {
    background: var(--grad-primary);
    position: relative;
    padding: var(--sp-10) 0;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    background: rgba(255,107,0,0.12);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ----------------------------------------------------------------
   16. Service Detail Page
   ---------------------------------------------------------------- */
.service-detail-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.service-detail-secondary-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-top: var(--sp-3);
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    font-size: 0.95rem;
}
.service-points li:last-child { border-bottom: none; }
.service-points li i { color: var(--secondary); flex-shrink: 0; margin-top: 4px; }

.related-services .service-card-mini {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    transition: var(--t);
    height: 100%;
}
.related-services .service-card-mini:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.related-services .service-card-mini:hover * { color: var(--white) !important; }
.service-card-mini-icon {
    width: 48px; height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--t);
}
.service-card-mini h5 { font-size: 0.9rem; margin-bottom: 2px; }
.service-card-mini span { font-size: 0.8rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   17. Contact Section
   ---------------------------------------------------------------- */
.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: var(--sp-8) var(--sp-6);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 52px; height: 52px;
    background: rgba(var(--secondary-rgb), 0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-item h5 { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item a, .contact-info-item p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}
.contact-info-item a:hover { color: var(--secondary); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-body);
    background: var(--light);
    transition: var(--t);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
    background: var(--white);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }

.form-status { display: none; margin-top: 16px; border-radius: var(--radius); padding: 12px 16px; }
.form-status.success { display: block; background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.3); }
.form-status.error   { display: block; background: rgba(239,68,68,0.1);  color: #dc2626; border: 1px solid rgba(239,68,68,0.3); }

/* ----------------------------------------------------------------
   18. About Page Strengths
   ---------------------------------------------------------------- */
.about-strength-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    border: 1px solid var(--border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--t-slow);
}
.about-strength-card:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.about-strength-icon {
    width: 56px; height: 56px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--t);
}
.about-strength-card:hover .about-strength-icon { background: var(--primary); color: var(--white); }
.about-strength-card h4 { font-size: 1rem; margin-bottom: 6px; }
.about-strength-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ----------------------------------------------------------------
   19. Footer
   ---------------------------------------------------------------- */
.site-footer { background: var(--dark-3); color: var(--text-light); }

.footer-main { padding: var(--sp-16) 0 var(--sp-10); }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: var(--sp-4); }
.footer-logo { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.15); }
.footer-brand h3 { font-size: 1.2rem; color: var(--white); line-height: 1.3; }
.footer-brand h3 small { font-size: 0.65rem; color: rgba(255,255,255,0.5); font-weight: 400; display: block; }

.footer-about { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; margin-bottom: var(--sp-4); }

.footer-contact-quick { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-contact-item i { color: var(--secondary); font-size: 1rem; }
.footer-contact-item:hover { color: var(--white); }

.footer-heading {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    font-family: var(--font-heading);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
}
.footer-links a i { font-size: 0.75rem; color: var(--secondary); }
.footer-links a:hover { color: var(--white); gap: 12px; }

.footer-address {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.footer-address-icon {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-address p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin: 0; }
.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: var(--secondary); }

.footer-certifications { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}
.cert-badge i { color: var(--secondary); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin: 0;
}
.footer-copy a { color: rgba(255,255,255,0.55); }
.footer-copy a:hover { color: var(--secondary); }

/* ----------------------------------------------------------------
   20. Dark bg utility sections
   ---------------------------------------------------------------- */
.bg-dark-section {
    background: var(--dark-2);
    color: var(--text-light);
}
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 { color: var(--white); }
.bg-dark-section p,
.bg-dark-section li { color: rgba(255,255,255,0.7); }
.bg-dark-section .section-badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.2);
}

/* ----------------------------------------------------------------
   21. Floating Animation Elements
   ---------------------------------------------------------------- */
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.3); }
    50%       { box-shadow: 0 0 0 12px rgba(var(--secondary-rgb), 0); }
}

.float-element { animation: floatY 4s ease-in-out infinite; }
.pulse-element { animation: pulseGlow 2s ease-in-out infinite; }

/* ----------------------------------------------------------------
   22. Misc Components
   ---------------------------------------------------------------- */
.divider-line {
    width: 100%; height: 1px;
    background: var(--border);
    margin: var(--sp-6) 0;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
    padding: 5px 14px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Image overlay for hover sections */
.img-hover-zoom { overflow: hidden; border-radius: var(--radius-lg); }
.img-hover-zoom img { transition: transform 0.5s ease; }
.img-hover-zoom:hover img { transform: scale(1.06); }

/* ----------------------------------------------------------------
   23. Media Queries
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
    .about-badge-card { left: 0; bottom: 16px; }
    .about-accent-box { display: none; }
    .contact-form-card,
    .contact-info-card { padding: var(--sp-5) var(--sp-4); }
    .hero-content h1 { font-size: 2.2rem; }
    .page-title-section { background-attachment: scroll; }
}

@media (max-width: 767px) {
    .hero-btn-prev, .hero-btn-next { display: none !important; }
    .hero-content { padding-left: 0; }
    .section-padding { padding: var(--sp-8) 0; }
    .footer-main { padding: var(--sp-10) 0 var(--sp-6); }
    .about-badge-card { position: static; margin-top: 16px; display: inline-block; }
    .stat-item { padding: var(--sp-3); }
}

@media (max-width: 575px) {
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { text-align: center; width: 100%; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-content p { font-size: 0.95rem; }
}
