/* ============================================================
   SUNDER SERVICE - PREMIUM STYLESHEET
   ============================================================
   Table of Contents:
   1. CSS Variables & Root
   2. Global Reset & Base
   3. Typography
   4. Utility Classes
   5. Animations & Keyframes
   6. Header Top Bar
   7. Main Header & Navigation
   8. Hero Section
   9. Services Section
   10. Why Choose Us Section
   11. Promo Banner Section
   12. Products Section
   13. How It Works Section
   14. Statistics Section
   15. Brands Section
   16. Testimonials Section
   17. Service Areas Section
   18. FAQ Section
   19. Blog Section
   20. CTA Section
   21. Footer
   22. Mobile Bottom Bar
   23. Back to Top Button
   24. Responsive Styles (imported separately)
   ============================================================ */

/* ==================== 1. CSS VARIABLES & ROOT ==================== */
:root {
    /* Primary Colors */
    --primary: #0F4C81;
    --primary-dark: #0A3A63;
    --primary-light: #1A6DB5;
    --primary-rgb: 15, 76, 129;
    
    /* Secondary Colors */
    --secondary: #FF7A00;
    --secondary-dark: #E06B00;
    --secondary-light: #FF9440;
    --secondary-rgb: 255, 122, 0;
    
    /* Accent Colors */
    --success: #00B894;
    --success-light: #00D9A7;
    --success-dark: #009A7A;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --background: #F8FAFC;
    --background-alt: #F1F5F9;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow-primary: 0 0 40px rgba(15, 76, 129, 0.2);
    --shadow-glow-secondary: 0 0 40px rgba(255, 122, 0, 0.2);
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    --spacing-5xl: 100px;
    --spacing-6xl: 120px;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F4C81 0%, #1A6DB5 50%, #0F4C81 100%);
    --gradient-secondary: linear-gradient(135deg, #FF7A00 0%, #FF9A40 50%, #FF7A00 100%);
    --gradient-success: linear-gradient(135deg, #00B894 0%, #00D9A7 100%);
    --gradient-hero: linear-gradient(160deg, #F8FAFC 0%, #E8F0FE 50%, #F0F4FF 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    --gradient-dark: linear-gradient(135deg, #0F4C81 0%, #0A3A63 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 100%);
    
    /* Z-Index */
    --z-header: 1000;
    --z-overlay: 500;
    --z-modal: 2000;
    --z-tooltip: 3000;
}

/* ==================== 2. GLOBAL RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==================== 3. TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== 4. UTILITY CLASSES ==================== */
.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(15, 76, 129, 0.12);
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== 5. ANIMATIONS & KEYFRAMES ==================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(15, 76, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(15, 76, 129, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 6. HEADER TOP BAR ==================== */
.header-top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    position: relative;
    z-index: var(--z-header);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-link i {
    font-size: 12px;
    color: var(--secondary);
}

.top-bar-left .divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}

.working-hours {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.working-hours i {
    color: var(--secondary);
    font-size: 12px;
}

.top-bar-center {
    text-align: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}

.verified-badge i {
    color: var(--success);
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.top-bar-right .divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}

.social-icons-top {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: var(--spacing-sm);
}

.social-icons-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 12px;
    transition: var(--transition-smooth);
}

.social-icons-top a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== 7. MAIN HEADER & NAVIGATION ==================== */
.main-header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 12px 0;
    transition: var(--transition-smooth);
}

/* Logo */
.navbar-brand {
    padding: 0;
    margin-right: var(--spacing-xl);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 22px;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    color: var(--secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Navigation Links */
.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(15, 76, 129, 0.05);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Premium Dropdown */
.premium-dropdown {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--spacing-lg);
    min-width: 650px;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.dropdown-heading {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--border-light);
}

.dropdown-item {
    padding: 7px 10px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(15, 76, 129, 0.06);
    color: var(--primary);
    padding-left: 14px;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-wrapper {
    position: relative;
}

.search-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--background);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 16px;
}

.search-toggle-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    padding: var(--spacing-sm);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

/* Header Buttons */
.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-call-header:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-whatsapp-header:hover {
    background: #20BD5A;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.navbar-toggler-icon-custom span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== 8. HERO SECTION ==================== */
.hero-section {
    position: relative;
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: -100px;
    animation: float-slow 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -50px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--success);
    top: 50%;
    right: 30%;
    animation: float-slow 7s ease-in-out infinite 1s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-light);
    bottom: 20%;
    left: 40%;
    animation: float-slow 9s ease-in-out infinite 2s;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.icon-wrench {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.icon-gear {
    top: 25%;
    right: 8%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.icon-tool {
    bottom: 20%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 8s;
}

/* Hero Row */
.hero-row {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    padding-right: var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 8px 18px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-light);
}

.badge-icon {
    font-size: 16px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

/* Hero Search */
.hero-search-wrapper {
    margin-bottom: var(--spacing-lg);
}

.hero-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    padding: 6px 6px 6px 20px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.hero-search:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(15, 76, 129, 0.08);
}

.search-icon {
    color: var(--text-muted);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: transparent;
}

.hero-search-input::placeholder {
    color: var(--text-light);
}

.btn-search-cta {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-search-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::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: var(--transition-slow);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline-hero:hover {
    border-color: var(--primary);
    background: rgba(15, 76, 129, 0.03);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Popular Services */
.popular-services {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.popular-label {
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-chip {
    display: inline-block;
    padding: 6px 16px;
    background: var(--white);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.trust-icon-wrapper {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trust-number {
    font-size: 18px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
}

.trust-stars {
    color: #F59E0B;
    font-size: 11px;
}

.trust-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-illustration {
    position: relative;
    min-height: 500px;
}

.illustration-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Technician Figure */
.technician-figure {
    position: relative;
    width: 280px;
    height: 400px;
}

.tech-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-head {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
}

.tech-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 35px;
    background: var(--primary);
    border-radius: 8px 8px 0 0;
}

.tech-face {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 60px;
    background: #FDE8D0;
    border-radius: 50%;
}

.tech-torso {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 180px;
}

.tech-uniform {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px 30px 20px 20px;
    position: relative;
}

.tech-badge {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-md);
}

.tech-toolbox {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: #374151;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

.card-rating {
    top: 30px;
    right: -20px;
    animation-delay: 0.5s;
}

.card-customers {
    bottom: 100px;
    right: -40px;
    animation-delay: 2s;
    animation-duration: 6s;
}

.customer-avatars {
    display: flex;
}

.customer-avatars .avatar {
    font-size: 20px;
    margin-left: -8px;
}

.customer-avatars .avatar:first-child {
    margin-left: 0;
}

.card-parts {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
    animation-duration: 7s;
}

.card-parts .floating-card-content i {
    color: var(--success);
    font-size: 16px;
}

.card-service {
    top: 150px;
    left: -40px;
    animation-delay: 3s;
    animation-duration: 5.5s;
}

.card-service .floating-card-content i {
    color: var(--secondary);
}

.rating-stars {
    color: #F59E0B;
    font-size: 11px;
}

/* Hero Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave-divider svg {
    display: block;
    width: 100%;
}

/* ==================== 9. SERVICES SECTION ==================== */
.services-section {
    padding: var(--spacing-6xl) 0;
    background: var(--background);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* Service Card */
.service-card {
    perspective: 1000px;
}

.service-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-inner:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    margin-bottom: var(--spacing-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.08) 0%, rgba(15, 76, 129, 0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card-inner:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}

.service-card-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.service-price {
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary);
}

.btn-service-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
}

.btn-service-book:hover {
    background: var(--primary);
    color: var(--white);
    gap: 10px;
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    border: 2px solid var(--primary);
    transition: var(--transition-smooth);
}

.btn-view-all:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    gap: 12px;
}

/* ==================== 10. WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    padding: var(--spacing-6xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-illustration {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-illustration-main {
    position: relative;
    z-index: 2;
}

.why-shield-icon {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--white);
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.why-shield-icon::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 3px dashed rgba(15, 76, 129, 0.2);
    animation: spin-slow 20s linear infinite;
}

.why-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.why-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.why-float-1 {
    top: 20px;
    right: 40px;
    animation-delay: 0s;
}

.why-float-2 {
    bottom: 60px;
    right: 10px;
    animation-delay: 2s;
    animation-duration: 7s;
}

.why-float-3 {
    top: 50%;
    left: 0;
    animation-delay: 4s;
    animation-duration: 5s;
}

.why-bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.why-features {
    margin-top: var(--spacing-xl);
}

.why-feature-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.why-feature-item:hover {
    background: var(--background);
    border-color: var(--border-light);
    transform: translateX(8px);
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.06) 0%, rgba(15, 76, 129, 0.12) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.why-feature-item:hover .why-feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(-5deg);
}

.why-feature-text h4 {
    font-size: 17px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 4px;
}

.why-feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==================== 11. PROMO BANNER SECTION ==================== */
.promo-banner-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background);
}

.promo-banner {
    background: var(--gradient-dark);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-3xl) var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.promo-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.promo-highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.promo-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.promo-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    line-height: 1.6;
}

.promo-timer {
    margin-bottom: var(--spacing-xl);
}

.timer-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
}

.timer-digits {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.timer-block {
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-unit {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: var(--font-weight-medium);
}

.timer-separator {
    font-size: 32px;
    color: var(--secondary);
    font-weight: var(--font-weight-bold);
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-promo-cta:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.promo-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.promo-discount-circle {
    width: 180px;
    height: 180px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 122, 0, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.discount-percent {
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    line-height: 1;
}

.discount-text {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    letter-spacing: 2px;
}

.promo-tech-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* ==================== 12. PRODUCTS SECTION ==================== */
.products-section {
    padding: var(--spacing-6xl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

/* Product Card */
.product-card {
    perspective: 1000px;
}

.product-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder-icon {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.product-card-inner:hover .product-placeholder-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.5px;
}

.product-badge-sale {
    background: var(--secondary);
}

.product-badge-new {
    background: var(--primary);
}

.product-info {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
    color: var(--secondary);
}

.product-price small {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: var(--font-weight-regular);
    margin-left: 6px;
}

.btn-product-enquiry {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-product-enquiry:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== 13. HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: var(--spacing-6xl) 0;
    background: var(--background);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    margin-top: var(--spacing-3xl);
}

.timeline-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--success));
    border-radius: var(--radius-full);
}

.timeline-row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;
}

/* Timeline Step */
.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    transition: var(--transition-smooth);
}

.timeline-step:hover {
    transform: translateY(-8px);
}

.step-number-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-lg);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: var(--font-weight-extrabold);
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-light);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-icon {
    border-color: var(--primary);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow-primary);
}

.step-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== 14. STATISTICS SECTION ==================== */
.stats-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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");
    pointer-events: none;
}

.stats-wrapper {
    position: relative;
    z-index: 2;
}

.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Stat Item */
.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin: 0 auto var(--spacing-md);
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.stat-number {
    font-size: 42px;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary);
}

.stat-number-static {
    font-size: 42px;
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    display: inline;
    line-height: 1;
}

.stat-star {
    font-size: 24px;
    color: #F59E0B;
    margin-left: 4px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
}

/* ==================== 15. BRANDS SECTION ==================== */
.brands-section {
    padding: var(--spacing-6xl) 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card {
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.brand-icon {
    display: block;
    font-size: 36px;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.brand-card span {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

/* ==================== 16. TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: var(--spacing-6xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonialSwiper {
    padding: var(--spacing-lg) 0;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 18px;
}

.testimonial-user h4 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.testimonial-user span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-platform {
    margin-left: auto;
    color: #4285F4;
    font-size: 20px;
}

.testimonial-stars {
    color: #F59E0B;
    margin-bottom: var(--spacing-md);
    font-size: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* Swiper Navigation */
.testimonial-next,
.testimonial-prev {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    transition: var(--transition-smooth);
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.testimonial-next::after,
.testimonial-prev::after {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

/* ==================== 17. SERVICE AREAS SECTION ==================== */
.areas-section {
    padding: var(--spacing-6xl) 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* Area Card */
.area-card {
    perspective: 1000px;
}

.area-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card-inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.06) 0%, rgba(15, 76, 129, 0.12) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto var(--spacing-md);
    transition: var(--transition-smooth);
}

.area-card-inner:hover .area-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.area-card-inner h3 {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.area-status {
    display: inline-block;
    padding: 4px 14px;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
}

.area-future .area-status {
    background: var(--text-light);
}

.area-future .area-card-inner {
    opacity: 0.7;
}

/* ==================== 18. FAQ SECTION ==================== */
.faq-section {
    padding: var(--spacing-6xl) 0;
    background: var(--background);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Premium Accordion */
.premium-accordion .accordion-item {
    border: none;
    margin-bottom: var(--spacing-md);
    background: transparent;
}

.premium-accordion .accordion-button {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg) !important;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.premium-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

.premium-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
    border-color: var(--primary);
}

.premium-accordion .accordion-button::after {
    background-size: 16px;
    transition: var(--transition-smooth);
}

.premium-accordion .accordion-body {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 18px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== 19. BLOG SECTION ==================== */
.blogs-section {
    padding: var(--spacing-6xl) 0;
    background: var(--white);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

/* Blog Card */
.blog-card {
    perspective: 1000px;
}

.blog-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-image-wrapper {
    position: relative;
    height: 200px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-placeholder-icon {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.blog-card-inner:hover .blog-placeholder-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
}

.blog-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-title {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ==================== 20. CTA SECTION ==================== */
.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--background);
}

.cta-wrapper {
    background: var(--gradient-dark);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-3xl) var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 122, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-whatsapp:hover {
    background: #20BD5A;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== 21. FOOTER ==================== */
.main-footer {
    background: #0A1628;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: var(--spacing-4xl) 0 var(--spacing-3xl);
}

.footer-widget {
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: var(--secondary);
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
    color: var(--secondary);
}

.footer-newsletter {
    margin-top: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 12px 50px 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 38px;
    height: 38px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.copyright-text strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    text-align: right;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 var(--spacing-sm);
}

/* ==================== 22. MOBILE BOTTOM BAR ==================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 8px 16px;
    display: flex;
    gap: var(--spacing-sm);
    z-index: var(--z-header);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.mobile-call {
    background: var(--background);
    color: var(--primary);
}

.mobile-whatsapp {
    background: #E8F5E9;
    color: #25D366;
}

.mobile-book {
    background: var(--gradient-secondary);
    color: var(--white);
}

/* ==================== 23. BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: var(--z-overlay);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ==================== BUTTON RIPPLE EFFECT ==================== */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ==================== AOS OVERRIDES ==================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ==================== FOCUS STYLES ==================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .header-top-bar,
    .main-header,
    .mobile-bottom-bar,
    .back-to-top {
        display: none !important;
    }
}