/* ============================================
   PainterBhai - Premium Painting Services Website
   Modern CSS with Glassmorphism, Animations & Premium UX
   ============================================ */

/* CSS Variables - Sophisticated Modern Theme */
:root {
    /* Primary Colors - Deep Navy & Teal */
    --primary: #0F4C75;
    --primary-dark: #0A3A5C;
    --primary-light: #1B6B9E;
    
    /* Elegant Accent Colors */
    --accent-coral: #FF6B6B;
    --accent-teal: #4ECDC4;
    --accent-gold: #FFD93D;
    --accent-lavender: #A29BFE;
    --accent-mint: #6BCB77;
    --accent-orange: #FF9F43;
    --accent-blue: #54A0FF;
    
    /* Logo Character Colors */
    --hat-yellow: #FFC107;
    --overalls-brown: #8B6914;
    --skin-tone: #F4C2A1;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Dark Section */
    --dark-bg: #0a1628;
    --dark-card: #111827;
    --dark-border: #1f2937;
    
    /* Gradients - Sophisticated Modern */
    --gradient-primary: linear-gradient(135deg, #0F4C75 0%, #1B6B9E 50%, #4ECDC4 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FF9F43 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --gradient-rainbow: linear-gradient(135deg, #0F4C75 0%, #4ECDC4 20%, #6BCB77 40%, #FFD93D 60%, #FF6B6B 80%, #A29BFE 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(15, 76, 117, 0.1) 0%, rgba(78, 205, 196, 0.1) 50%, rgba(255, 107, 107, 0.1) 100%);
    --gradient-playful: linear-gradient(135deg, #4ECDC4 0%, #6BCB77 50%, #FFD93D 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Section Base */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--gray-200);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

.section-alt {
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(15, 76, 117, 0.1);
}

.section-dark .section-tag {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%);
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn i {
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-dark .btn-outline {
    color: var(--white);
    border-color: var(--gray-600);
}

.section-dark .btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

.btn-success {
    background: var(--accent-green);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    padding: 12px;
    border-radius: var(--radius);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.paint-roller {
    font-size: 4rem;
    color: var(--primary);
    animation: roll 2s ease-in-out infinite;
}

@keyframes roll {
    0%, 100% {
        transform: translateX(-20px) rotate(-15deg);
    }
    50% {
        transform: translateX(20px) rotate(15deg);
    }
}

.loader p {
    margin-top: 16px;
    color: var(--gray-600);
    font-family: var(--font-display);
    font-weight: 500;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
#notification-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    min-width: 320px;
    max-width: 400px;
    animation: slideInRight 0.4s ease, fadeIn 0.4s ease;
    position: relative;
    overflow: hidden;
}

.notification.success {
    border-left: 4px solid var(--accent-mint);
}

.notification.error {
    border-left: 4px solid var(--accent-coral);
}

.notification.warning {
    border-left: 4px solid var(--accent-gold);
}

.notification.info {
    border-left: 4px solid var(--primary);
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    color: var(--accent-mint);
}

.notification.error .notification-icon {
    color: var(--accent-coral);
}

.notification.warning .notification-icon {
    color: var(--accent-gold);
}

.notification.info .notification-icon {
    color: var(--primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.notification-message {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--gray-600);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gray-200);
    width: 100%;
}

.notification-progress-bar {
    height: 100%;
    width: 100%;
    animation: progress 5s linear forwards;
}

.notification.success .notification-progress-bar {
    background: var(--accent-mint);
}

.notification.error .notification-progress-bar {
    background: var(--accent-coral);
}

.notification.warning .notification-progress-bar {
    background: var(--accent-gold);
}

.notification.info .notification-progress-bar {
    background: var(--primary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.notification.hiding {
    animation: fadeOut 0.3s ease forwards;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Header scrolled state logo adjustment */
.header.scrolled .logo-img {
    height: 50px;
}

/* Mobile logo */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
        max-width: 150px;
    }
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-600);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--gray-900);
}

.mobile-nav {
    padding: 16px;
}

.mobile-nav-link {
    display: block;
    padding: 16px;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mobile-nav-link.mobile-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    margin-top: 16px;
}

.mobile-nav-link.mobile-cta:hover {
    box-shadow: var(--shadow-lg);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 40%, #ecfdf5 70%, #fffbeb 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.paint-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.paint-splash-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-teal);
    top: 10%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
    opacity: 0.25;
}

.paint-splash-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-mint);
    bottom: 20%;
    left: 5%;
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.2;
}

.paint-splash-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-coral);
    top: 50%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
    opacity: 0.2;
}

.paint-splash-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    bottom: 30%;
    right: 20%;
    animation: float 14s ease-in-out infinite reverse;
    opacity: 0.15;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0.1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    bottom: 30%;
    right: 15%;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-green);
    top: 60%;
    left: 5%;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
    border: 1px solid rgba(15, 76, 117, 0.15);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tagline-text {
    display: inline-block;
}

.tagline-text:nth-child(1) {
    color: #0F4C75;
}

.tagline-text:nth-child(2) {
    color: #FF6B6B;
}

.tagline-text:nth-child(3) {
    color: #4ECDC4;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge i {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.trust-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}

.trust-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image,
.hero-video {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-video {
    background: var(--gray-200);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card i {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Paint Roller Animation */
.paint-roller-anim {
    position: absolute;
    bottom: 10%;
    right: 5%;
    opacity: 0.1;
    animation: rollerMove 10s ease-in-out infinite;
}

.roller-svg {
    width: 120px;
    height: 120px;
}

@keyframes rollerMove {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-image,
    .hero-video {
        height: 300px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .trust-badges {
        gap: 20px;
    }
}

/* Paint Separator */
.paint-separator {
    height: 60px;
    color: var(--gray-50);
    margin-top: -1px;
}

.paint-separator svg {
    width: 100%;
    height: 100%;
}

.section-dark + .paint-separator {
    color: var(--dark-bg);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-rainbow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(30, 90, 168, 0.3);
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #0F4C75 0%, #1B6B9E 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF9F43 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #6BCB77 0%, #4ECDC4 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #0F4C75 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #FF9F43 0%, #FFD93D 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #A29BFE 0%, #54A0FF 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COLORS SECTION
   ============================================ */
.color-system {
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--dark-border);
}

.color-search {
    margin-bottom: 32px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

#color-search {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

#color-search::placeholder {
    color: var(--gray-500);
}

#color-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.color-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.category-btn {
    padding: 10px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    background: var(--dark-border);
    color: var(--white);
}

.category-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.color-display {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 12px;
}

.color-palette::-webkit-scrollbar {
    width: 6px;
}

.color-palette::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: var(--radius);
}

.color-palette::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: var(--radius);
}

.color-swatch {
    aspect-ratio: 1;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-swatch:hover {
    transform: scale(1.1);
    z-index: 10;
}

.color-swatch.selected {
    box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--primary);
}

.color-swatch .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--gray-900);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 20;
}

.color-swatch:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Color Preview Panel */
.color-preview-panel {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--dark-border);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.preview-header h3 {
    font-size: 1.125rem;
}

.wall-preview {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wall-room {
    width: 100%;
    height: 160px;
    position: relative;
    perspective: 400px;
}

.wall-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--gray-700);
    transform: skewY(-5deg);
    transform-origin: top left;
}

.wall-back {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 80%;
    background: var(--gray-600);
    border-radius: 0 var(--radius-sm) 0 0;
    transition: background 0.3s ease;
}

.wall-floor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 20%;
    background: linear-gradient(to bottom, #8B7355 0%, #6B5344 100%);
}

.furniture .sofa {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 30px;
    background: var(--gray-500);
    border-radius: var(--radius-sm);
}

.furniture .lamp {
    position: absolute;
    bottom: 20%;
    right: 50%;
    width: 8px;
    height: 40px;
    background: var(--gray-400);
}

.color-details {
    text-align: center;
    margin-bottom: 20px;
}

.color-info h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.color-info p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.color-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.saved-colors {
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.saved-colors h4 {
    font-size: 0.9375rem;
    margin-bottom: 12px;
    color: var(--gray-400);
}

.saved-colors-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.saved-color-item {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.saved-color-item:hover {
    transform: scale(1.1);
}

.saved-color-item .remove-saved {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    opacity: 0;
    transition: var(--transition);
}

.saved-color-item:hover .remove-saved {
    opacity: 1;
}

.empty-state {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .color-display {
        grid-template-columns: 1fr;
    }
    
    .color-preview-panel {
        order: -1;
    }
}

@media (max-width: 640px) {
    .color-system {
        padding: 24px;
    }
    
    .color-actions {
        flex-direction: column;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + label {
    background: var(--primary);
}

.toggle-switch input:checked + label::after {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-rainbow);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(231, 27, 35, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price .unit {
    font-size: 0.875rem;
    color: var(--gray-500);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-features {
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.feature i {
    width: 20px;
    color: var(--accent-green);
}

.feature.disabled i {
    color: var(--gray-300);
}

.feature.disabled span {
    color: var(--gray-400);
    text-decoration: line-through;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 48px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    color: var(--gray-600);
}

.pricing-note i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
}

.gallery-item.hidden {
    display: none;
}

.before-after-container {
    position: relative;
    overflow: hidden;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 280px;
    cursor: col-resize;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    overflow: hidden;
}

.after-image img {
    width: 200%;
    max-width: none;
}

.label {
    position: absolute;
    bottom: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.before-image .label {
    left: 16px;
}

.after-image .label {
    left: 16px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        #0F4C75 0%, 
        #4ECDC4 20%, 
        #6BCB77 40%, 
        #FFD93D 60%, 
        #FF6B6B 80%, 
        #A29BFE 100%);
    border-radius: var(--radius-full);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-rainbow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #0F4C75 0%, #1B6B9E 100%);
}

.process-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF9F43 100%);
}

.process-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #6BCB77 0%, #4ECDC4 100%);
}

.process-step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #0F4C75 100%);
}

.process-step:nth-child(5) .step-icon {
    background: linear-gradient(135deg, #A29BFE 0%, #54A0FF 100%);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

@media (max-width: 640px) {
    .timeline-line {
        left: 28px;
    }
    
    .process-step {
        gap: 16px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.125rem;
    }
    
    .step-content {
        padding: 24px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-rainbow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #0F4C75 0%, #1B6B9E 100%);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF9F43 100%);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #6BCB77 0%, #4ECDC4 100%);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #A29BFE 0%, #54A0FF 100%);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: var(--radius-full);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--dark-border);
}

/* Form Progress */
.form-progress {
    margin-bottom: 40px;
}

.progress-line {
    height: 4px;
    background: var(--dark-border);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
}

.progress-step .step-dot {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.progress-step span {
    font-size: 0.75rem;
    font-weight: 500;
}

.progress-step.active .step-dot,
.progress-step.completed .step-dot {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--white);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent-red);
}

.error-message {
    display: block;
    font-size: 0.8125rem;
    color: var(--accent-red);
    margin-top: 6px;
    min-height: 20px;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-option span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-option span i {
    font-size: 1.25rem;
    color: var(--primary);
}

.service-option:hover span {
    border-color: var(--gray-500);
}

.service-option input:checked + span {
    background: rgba(79, 70, 229, 0.1);
    border-color: var(--primary);
}

/* File Upload */


/* Plan Options */
.plan-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.plan-option {
    cursor: pointer;
}

.plan-option input {
    display: none;
}

.plan-card-mini {
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card-mini:hover {
    border-color: var(--gray-500);
}

.plan-option input:checked + .plan-card-mini {
    background: rgba(79, 70, 229, 0.1);
    border-color: var(--primary);
}

.plan-card-mini.popular {
    border-color: var(--accent-orange);
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-card-mini h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.plan-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.plan-card-mini small {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Selected Color Display */
.selected-color-display {
    background: var(--dark-bg);
    border-radius: var(--radius);
    padding: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.selected-color-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-card);
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
}

.selected-color-swatch {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
}

.selected-color-name {
    font-size: 0.875rem;
    color: var(--gray-200);
}

.remove-selected-color {
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.remove-selected-color:hover {
    color: var(--accent-red);
}

.empty-color {
    color: var(--gray-500);
    font-size: 0.9375rem;
    text-align: center;
    width: 100%;
}

.empty-color a {
    color: var(--primary);
    text-decoration: underline;
}

/* Checkbox */
.checkbox-group {
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.5;
}

/* Form Summary */
.form-summary {
    background: var(--dark-bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.form-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.summary-content {
    display: grid;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.summary-value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

@media (max-width: 768px) {
    .quote-form-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-options,
    .plan-options {
        grid-template-columns: 1fr;
    }
    
    .progress-step span {
        display: none;
    }
}

@media (max-width: 480px) {
    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-method.whatsapp:hover {
    border-color: #25D366;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-playful);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 90, 168, 0.3);
}

.contact-method.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.method-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.method-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-900);
}

.contact-hours {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.contact-hours h4 i {
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.hour-item span:first-child {
    color: var(--gray-600);
}

.hour-item span:last-child {
    font-weight: 500;
    color: var(--gray-900);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        order: -1;
        min-height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-cta {
    background: var(--gradient-rainbow);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    background: var(--dark-bg);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-contact h4,
.footer-service-areas h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact-item a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas-grid span {
    padding: 6px 12px;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-400);
    border: 1px solid var(--dark-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-900);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    justify-content: space-between;
    gap: 8px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .back-to-top {
        bottom: 100px;
    }
}

/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal="fade-up"] {
    transform: translateY(24px);
}

[data-reveal="fade-left"] {
    transform: translateX(24px);
}

[data-reveal="fade-right"] {
    transform: translateX(-24px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }

/* Success Confetti Animation */
@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 9999;
    animation: confetti 1s ease-out forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #0000FF;
        --accent-orange: #FF6600;
        --accent-green: #008000;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .mobile-overlay,
    .whatsapp-float,
    .back-to-top,
    .mobile-sticky-cta,
    .form-navigation,
    .testimonials-nav {
        display: none !important;
    }
    
    .section {
        padding: 40px 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* ============================================
   ADDITIONAL UI ENHANCEMENTS
   ============================================ */

/* Quick Inquiry Buttons */
.quick-inquiry-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: var(--white);
    font-size: 0.875rem;
    padding: 10px 16px;
    transition: var(--transition);
}

.quick-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Enhanced Form Styles */
.form-group.focused label {
    color: var(--primary);
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Enhanced Pricing Cards */
.pricing-card .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
}

.pricing-card .btn-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Float Enhancement */
.whatsapp-float {
    animation: none;
}

.whatsapp-float:hover {
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Toast Notification Enhancement */
.notification {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero Badge Pulse */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Gallery Item Hover Enhancement */
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Testimonial Card Enhancement */
.testimonial-card {
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
}

/* Color Swatch Hover Enhancement */
.color-swatch {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

/* Mobile Sticky CTA Enhancement */
.mobile-sticky-cta {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Scrollbar Styling for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Smooth Image Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus Visible Enhancement */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Button Group Spacing */
.form-navigation {
    gap: 12px;
}

/* Pricing Toggle Enhancement */
.toggle-switch label {
    background: var(--gray-200);
}

.toggle-switch input:checked + label {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Section Divider Enhancement */
.paint-separator svg path {
    transition: d 0.5s ease;
}

/* Stats Counter Animation */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

/* Process Step Line Animation */
.timeline-line {
    background: linear-gradient(to bottom, 
        #1E5AA8 0%, 
        #00A8E8 20%, 
        #7CB342 40%, 
        #F7931E 60%, 
        #E31B23 80%, 
        #1E5AA8 100%);
    background-size: 100% 200%;
    animation: lineGradient 5s ease infinite;
}

@keyframes lineGradient {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

/* Trust Badge Hover */
.trust-badge {
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
}

.trust-badge:hover i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Gallery Filter Active State */
.filter-btn.active {
    background: var(--gradient-rainbow);
}

/* Colorful Section Enhancement */
.section-dark .section-tag {
    background: linear-gradient(135deg, rgba(30, 90, 168, 0.2) 0%, rgba(231, 27, 35, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Progress Enhancement */
.progress-fill {
    background: var(--gradient-rainbow);
}

/* Contact Method Hover Enhancement */
.contact-method {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

/* Footer Link Hover Effect */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Service Area Tags Hover */
.service-areas-grid span {
    transition: all 0.2s ease;
}

.service-areas-grid span:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Back to Top Enhancement */
.back-to-top {
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
}

/* Hero Float Cards Enhancement */
.hero-float-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

/* Form Step Transition */
.form-step {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
