@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-dark: #d63851;
    --accent2: #f5a623;
    --accent2-dark: #e0951e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #9ca3af;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a1a;
    --bg-card-dark: rgba(30, 30, 58, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(30, 30, 58, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 8px 32px rgba(233, 69, 96, 0.25);
    --shadow-glow-gold: 0 8px 32px rgba(245, 166, 35, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
    --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }

/* Utility Classes */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--text-light); }
.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.text-muted { color: var(--text-muted); }
.bg-dark { background-color: var(--primary); }
.bg-darker { background-color: var(--bg-dark); }
.bg-light { background-color: var(--bg-light); }
.bg-secondary { background-color: var(--secondary); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Section Header */
.section-header { margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    max-width: 700px;
    margin-top: 20px;
}

.section-subtitle.centered { margin-left: auto; margin-right: auto; }

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark), #c0392b);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-accent2 {
    background: linear-gradient(135deg, var(--accent2), var(--accent2-dark));
    color: var(--primary);
    border-color: var(--accent2);
}

.btn-accent2:hover {
    background: linear-gradient(135deg, var(--accent2-dark), #d08518);
    border-color: var(--accent2-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-group { display: flex; gap: 15px; flex-wrap: wrap; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(233, 69, 96, 0.1);
    height: 70px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo { flex-shrink: 0; }
.logo a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo a:hover { opacity: 0.8; }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    line-height: 1.1;
}

.logo-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-top: 2px;
}

.logo-text .highlight { color: var(--accent); }

.logo a > i,
.logo a > .fa-industry {
    font-size: 2rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.4));
    transition: var(--transition);
}

.logo a:hover > i,
.logo a:hover > .fa-industry {
    filter: drop-shadow(0 0 12px rgba(233, 69, 96, 0.6));
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i { font-size: 1.8rem; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links li { position: relative; }

.nav-links a {
    display: block;
    padding: 10px 12px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 70%; }

/* Dropdown */
.dropdown > a > .fa-chevron-down {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(10, 10, 26, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a > .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu a {
    padding: 10px 24px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid transparent;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
    color: var(--text-light);
    background: rgba(233, 69, 96, 0.1);
    border-left-color: var(--accent);
}

/* Nav CTA */
.nav-cta {
    margin-left: 10px;
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light) !important;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.nav-cta i { margin-right: 5px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.8rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.94) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.87) 100%),
                url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(245, 166, 35, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Hero without .hero-bg (legacy support) */
.hero:not(:has(.hero-bg)) {
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.92) 0%, rgba(26, 26, 46, 0.88) 50%, rgba(22, 33, 62, 0.85) 100%),
                url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero:not(:has(.hero-bg))::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Hero Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Hero Particles / Sparks */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.particle, .spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent2);
    border-radius: 50%;
    opacity: 0;
    animation: sparkFloat 4s infinite;
    box-shadow: 0 0 8px var(--accent2), 0 0 16px rgba(245, 166, 35, 0.4);
}

.particle:nth-child(1), .spark:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 4.5s; }
.particle:nth-child(2), .spark:nth-child(2) { left: 25%; top: 70%; animation-delay: 0.8s; animation-duration: 3.8s; }
.particle:nth-child(3), .spark:nth-child(3) { left: 50%; top: 30%; animation-delay: 1.5s; animation-duration: 4.2s; }
.particle:nth-child(4), .spark:nth-child(4) { left: 70%; top: 60%; animation-delay: 2.2s; animation-duration: 3.5s; }
.particle:nth-child(5), .spark:nth-child(5) { left: 85%; top: 40%; animation-delay: 3s; animation-duration: 4.8s; }
.particle:nth-child(6), .spark:nth-child(6) { left: 40%; top: 80%; animation-delay: 0.5s; animation-duration: 3.9s; }
.particle:nth-child(7), .spark:nth-child(7) { left: 60%; top: 15%; animation-delay: 1.8s; animation-duration: 4.3s; }
.particle:nth-child(8), .spark:nth-child(8) { left: 15%; top: 50%; animation-delay: 2.5s; animation-duration: 3.6s; }

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.25);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title,
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight,
.hero-title .highlight,
.accent-text {
    color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero h1 .highlight-gold { color: var(--accent2); }

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons,
.hero .btn-group { justify-content: center; display: flex; gap: 15px; flex-wrap: wrap; }

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-badges .badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
}

.trust-badges .badge i { color: var(--accent2); font-size: 1.2rem; }
.trust-badges .badge span { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; font-weight: 500; }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator::after {
    content: '';
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs, .breadcrumb {
    padding: 15px 0;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs ul, .breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs li, .breadcrumb li { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.breadcrumbs li a, .breadcrumb li a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs li a:hover, .breadcrumb li a:hover { color: var(--accent); }
.breadcrumbs li + li::before, .breadcrumb li + li::before { content: '/'; margin-right: 10px; color: rgba(255, 255, 255, 0.3); }
.breadcrumbs li:last-child, .breadcrumb li:last-child { color: var(--accent); }

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--accent);
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    border-top-color: transparent;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(245, 166, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
}

.service-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.service-card:hover .service-card-icon::after { opacity: 0.3; }

.service-card-icon i {
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-card-icon i { color: var(--text-light); }

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card .card-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.service-card .card-link:hover { color: var(--accent2); gap: 14px; }

/* Light service cards */
.service-card-light {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-light::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent2);
}

.service-card-light:hover::after { transform: scaleX(1); }
.service-card-light h3 { color: var(--primary); }
.service-card-light p { color: #6b7280; }

/* Why Us Section */
.why-us-section { position: relative; overflow: hidden; }

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content { position: relative; }

.why-us-items { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }

.why-us-item {
    padding: 20px 25px;
    border-left: 4px solid var(--accent);
    background: rgba(233, 69, 96, 0.03);
    border-radius: 0 12px 12px 0;
    transition: var(--transition);
}

.why-us-item:hover {
    border-left-color: var(--accent2);
    background: rgba(233, 69, 96, 0.06);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-us-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.why-us-item p { color: #6b7280; font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }

.why-us-image { position: relative; border-radius: 16px; overflow: hidden; }
.why-us-image img { width: 100%; height: auto; border-radius: 16px; }

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--bg-card-dark), var(--primary));
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer-slide 2s ease-in-out infinite;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.stat-item:last-child::after { display: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .suffix {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Process Section */
.process-section { position: relative; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(233, 69, 96, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.step-number span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--text-light);
}

.process-step h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Steps (list style) */
.process-steps { counter-reset: step; }

.process-steps .process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
    counter-increment: step;
    text-align: left;
}

.process-steps .process-step:last-child { border-bottom: none; }

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.25);
}

.process-step-number span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.process-step-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: none;
}

.process-step-content p { color: #6b7280; line-height: 1.7; }

/* Testimonials Section */
.testimonials-section { position: relative; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    position: relative;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.2;
    margin-bottom: 15px;
    line-height: 1;
}

.stars, .testimonial-stars {
    color: var(--accent2);
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-author-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* Dark testimonial cards */
.testimonial-card-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.testimonial-card-dark .testimonial-text { color: rgba(255, 255, 255, 0.7); }
.testimonial-card-dark .testimonial-author-info h4 { color: var(--text-light); }
.testimonial-card-dark .testimonial-author-info p { color: rgba(255, 255, 255, 0.5); }

/* Service Areas */
.service-areas-section { position: relative; }

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

.area-item {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    cursor: default;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.area-item i { font-size: 1.5rem; color: var(--accent); margin-bottom: 10px; display: block; }
.area-item h4 { font-size: 0.95rem; color: var(--primary); text-transform: none; letter-spacing: 0; }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(-45deg, var(--accent), #c0392b, var(--primary), var(--secondary));
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 { font-size: 2.8rem; color: var(--text-light); margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 35px; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.cta-section .btn-secondary { border-color: var(--text-light); color: var(--text-light); }
.cta-section .btn-secondary:hover { background: var(--text-light); color: var(--accent); }

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 25px;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #060612 100%);
    color: var(--text-light);
    position: relative;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent)) 1;
}

.footer-main { padding: 80px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.footer-col h3, .footer-column h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after, .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent);
}

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

.footer-links a:hover { color: var(--text-light); padding-left: 5px; }
.footer-links a:hover::after { width: calc(100% - 18px); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li i { color: var(--accent); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255, 255, 255, 0.6); }
.footer-contact li a:hover { color: var(--accent); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

.footer-credit, .designer { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }
.footer-credit a, .designer a { color: var(--accent); transition: var(--transition-fast); }
.footer-credit a:hover, .designer a:hover { color: var(--accent2); }

/* Floating Phone */
.floating-phone, .phone-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.floating-phone a, .phone-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: var(--transition);
    animation: pulse 3s ease-in-out infinite;
}

.floating-phone a:hover, .phone-float a:hover {
    background: linear-gradient(135deg, var(--accent-dark), #c0392b);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
}

.floating-phone a i, .phone-float a i { font-size: 1.1rem; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.35);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-dark), #c0392b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.45);
}

/* Contact Section */
.contact-section { position: relative; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card:last-child { border-bottom: none; }

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(233, 69, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--accent);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.contact-info-icon i { font-size: 1.3rem; color: var(--accent); transition: var(--transition); }
.contact-info-card:hover .contact-info-icon i { color: var(--text-light); }

.contact-info-text h4 { font-size: 1rem; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-text p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }
.contact-info-text a { color: rgba(255, 255, 255, 0.6); }
.contact-info-text a:hover { color: var(--accent); }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form .form-group { margin-bottom: 20px; }

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: var(--transition);
    outline: none;
    backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.12), 0 0 25px rgba(233, 69, 96, 0.08);
    background: rgba(255, 255, 255, 0.07);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form select option { background: var(--primary); color: var(--text-light); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-form button[type="submit"],
.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Light form */
.contact-form-light label { color: var(--text-dark); }

.contact-form-light input,
.contact-form-light textarea,
.contact-form-light select {
    color: var(--text-dark);
    background: #ffffff;
    border-color: #d1d5db;
    backdrop-filter: none;
}

.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder { color: #9ca3af; }

.contact-form-light input:focus,
.contact-form-light textarea:focus,
.contact-form-light select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
    background: #ffffff;
}

/* FAQ Section */
.faq-section { position: relative; }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06); }

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 5px 25px rgba(233, 69, 96, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 15px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.25);
}

.faq-item.active .faq-toggle i { color: var(--text-light); transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* Dark FAQ */
.faq-item-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-color: var(--glass-border);
}

.faq-item-dark .faq-question h3 { color: var(--text-light); }
.faq-item-dark .faq-answer-inner { color: rgba(255, 255, 255, 0.6); }

/* Gallery / Portfolio */
.filter-buttons, .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn, .gallery-filters .filter-btn {
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active,
.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-image { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.92) 0%, rgba(10, 10, 26, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 { color: var(--text-light); font-size: 1.1rem; margin-bottom: 5px; }
.gallery-overlay p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; margin-bottom: 0; }

.gallery-tag, .gallery-overlay .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233, 69, 96, 0.85);
    color: var(--text-light);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Service Detail Page */
.service-detail-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    overflow: hidden;
}

.service-detail-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-hero h1 { font-size: 2.8rem; color: var(--text-light); margin-bottom: 20px; }
.service-detail-hero p { color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.service-detail-hero img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }

.service-detail-content { position: relative; }
.service-detail-sidebar { position: relative; }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.benefit-card:hover, .benefit-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: rgba(233, 69, 96, 0.2);
}

.benefit-card i, .benefit-item i { font-size: 1.3rem; color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.benefit-card h4, .benefit-item h4 { font-size: 1rem; color: var(--primary); margin-bottom: 5px; text-transform: none; letter-spacing: 0; }
.benefit-card p, .benefit-item p { color: #6b7280; font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; }

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.application-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.application-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; display: block; }
.application-card h4 { font-size: 1rem; color: var(--text-light); margin-bottom: 8px; }
.application-card p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 0; }

/* Related Services */
.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-service-card {
    display: block;
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.related-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(233, 69, 96, 0.1);
}

.related-service-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.related-service-card h4 { color: var(--text-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

/* About / Content Sections */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.about-image img { width: 100%; height: auto; }

.about-image-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-light);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35);
}

.about-image-badge .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.about-image-badge .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.about-content h2 { margin-bottom: 20px; }
.about-content p { color: #6b7280; margin-bottom: 15px; line-height: 1.8; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature-item { display: flex; align-items: center; gap: 10px; }
.about-feature-item i { color: var(--accent); font-size: 1.1rem; }
.about-feature-item span { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* Materials */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.material-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.material-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.material-card:hover::after { transform: scaleX(1); }
.material-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.material-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.material-card p { font-size: 0.85rem; color: #6b7280; margin-bottom: 0; }

/* Why Choose Us / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(245, 166, 35, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(245, 166, 35, 0.1));
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.15);
}

.feature-card-icon i { font-size: 2rem; color: var(--accent); }
.feature-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 12px; }
.feature-card p { color: #6b7280; font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }

/* Map */
.map-container { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* Tags / Badges */
.tag {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 500;
}

.tag-accent { background: rgba(233, 69, 96, 0.1); color: var(--accent); }
.tag-accent2 { background: rgba(245, 166, 35, 0.1); color: var(--accent2); }

.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 2px; }
.divider.centered { margin-left: auto; margin-right: auto; }

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; object-fit: contain; }

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

/* Scroll Animations */
.animate-on-scroll, .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.animate-on-scroll.visible, .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.9s; }

/* Keyframes */
@keyframes sparkFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 1; transform: translateY(-15px) scale(1); }
    50% { opacity: 0.7; transform: translateY(-50px) scale(0.9); }
    85% { opacity: 0.3; transform: translateY(-90px) scale(0.6); }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

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

@keyframes shimmer-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Responsive 1200px */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Responsive 1024px */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .section-title { font-size: 2.2rem; }
    .section-padding { padding: 80px 0; }
    .hero h1, .hero-title { font-size: 3.2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 40px; }
    .why-us-grid { gap: 40px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-hero .container { grid-template-columns: 1fr; gap: 40px; }
    .related-services { grid-template-columns: repeat(2, 1fr); }
    .applications-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }

    /* Hamburger menu at 1024px due to many nav items */
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 85%; max-width: 400px; height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .nav-links a { padding: 15px 0; font-size: 1rem; width: 100%; }
    .nav-links a::after { display: none; }

    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        background: transparent; border: none; box-shadow: none;
        padding: 0 0 0 20px;
        max-height: 0; overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        min-width: auto;
        backdrop-filter: none;
    }

    .dropdown.active .dropdown-menu { max-height: 800px; }
    .dropdown-menu a { padding: 10px 0; font-size: 0.9rem; border-left: none; }
    .dropdown-menu a:hover { background: transparent; border-left: none; color: var(--accent); }

    .nav-cta { margin-left: 0 !important; margin-top: 20px; width: 100%; text-align: center; display: block; }
    .nav-cta .btn { width: 100%; text-align: center; }
    .logo-sub { font-size: 0.55rem; letter-spacing: 2px; }
}

/* Responsive 768px */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    .section-title { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active { display: block; }

    .hero { min-height: 90vh; }
    .hero h1, .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero .btn-group, .hero-buttons { flex-direction: column; align-items: center; }
    .hero .btn { width: 100%; max-width: 300px; }
    .trust-badges { flex-direction: column; align-items: center; }

    .page-hero { padding: 130px 0 60px; }
    .page-hero h1 { font-size: 2.2rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .related-services { grid-template-columns: 1fr; }
    .applications-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }

    .cta-section { padding: 60px 0; }
    .cta-section h2 { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .process-steps .process-step { flex-direction: column; gap: 15px; }

    .floating-phone a span, .phone-float a span { display: none; }
    .floating-phone a, .phone-float a {
        width: 50px; height: 50px;
        border-radius: 50%; padding: 0;
        justify-content: center;
    }

    .hero-scroll-indicator { display: none; }
    .process-line { display: none; }
}

/* Responsive 480px */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
    .hero h1, .hero-title { font-size: 2rem; }
    .hero-badge { font-size: 0.75rem; letter-spacing: 2px; }
    .btn { padding: 12px 28px; font-size: 0.9rem; }
    .btn-lg { padding: 14px 36px; font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .materials-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 25px 20px; }
    .service-card { padding: 30px 20px; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-phone { font-size: 1.2rem; }
    .logo-text { font-size: 1.2rem; }
    .page-hero h1 { font-size: 1.8rem; }
}

/* Print */
@media print {
    .navbar, .back-to-top, .phone-float, .floating-phone, .hero-particles, .hero-grid-overlay { display: none !important; }
    body { color: #000; background: #fff; }
    .hero { min-height: auto; padding: 40px 0; background: none; }
    .section-padding { padding: 30px 0; }
}
