/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #1a1e26;
    --text-dark: #1a1e26;
    --text-gray: #64748b;
    --bg-dark: #ffffff;
    --bg-darker: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.8);
    
    --accent-orange: #ff7a00;
    --accent-orange-hover: #ff9100;
    --accent-blue: #0ea5e9;
    --accent-purple: #7c3aed;
    
    --gradient-primary: linear-gradient(135deg, #ff7a00, #ff4000);
    --gradient-accent: linear-gradient(135deg, #0ea5e9, #2563eb);
    --gradient-mix: linear-gradient(135deg, #ff7a00, #2563eb);
    --gradient-warm: linear-gradient(135deg, #ff7a00, #ff4000, #ff7a00);
    
    --glow-orange: rgba(255, 122, 0, 0.4);
    --glow-blue: rgba(14, 165, 233, 0.3);
    --glow-purple: rgba(124, 58, 237, 0.3);
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
}

/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
    position: relative;
}

/* ===== ALTERNATING SECTIONS BACKGROUND (SWAPPED) ===== */
section:nth-of-type(odd):not(.hero) {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('bg2.jpg') center/cover fixed no-repeat !important;
    z-index: 1;
}

/* Hide overlapping decorative backgrounds on alternating sections */
section:nth-of-type(odd):not(.hero)::before,
section:nth-of-type(odd):not(.hero)::after {
    display: none !important;
}

/* Ensure content stays above the background */
section:nth-of-type(odd):not(.hero) .container {
    position: relative;
    z-index: 2;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul { list-style: none; }

/* ===== GLASSMORPHISM 2.0 ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.section-title h2 i {
    color: var(--accent-orange);
    font-size: 3rem;
    opacity: 0.8;
}

.section-title h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ANIMATED UNDERLINE FOR SECTION TITLES ===== */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 16px auto 0;
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.visible h2::after {
    animation: underlineExpand 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 80px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    outline: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Ripple effect for buttons */
.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: -1;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
}

.btn-primary.glow {
    animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 122, 0, 0.5), 0 0 60px rgba(255, 122, 0, 0.15); }
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

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

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.w-100 { width: 100%; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

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

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

.logo i {
    color: var(--accent-orange);
    font-size: 1.8rem;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo span {
    font-weight: 400;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a i {
    font-size: 1.1rem;
    color: var(--accent-orange);
    transition: var(--transition);
}

.nav-menu a:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('bg.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Particle canvas sits behind hero content */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-orange);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -50px) scale(1.05) rotate(5deg); }
    66% { transform: translate(-20px, 30px) scale(0.95) rotate(-3deg); }
    100% { transform: translate(-30px, 20px) scale(1.02) rotate(2deg); }
}

.hero-content {
    text-align: center;
    max-width: 960px;
    position: relative;
    z-index: 1;
}

/* === Hero Badge === */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 122, 0, 0.25);
    margin-bottom: 36px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.08), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    animation: badgeIconPulse 2s ease-in-out infinite;
}

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

.hero-badge span {
    position: relative;
    z-index: 1;
}

/* === Hero Headline === */
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text-dark);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
}

.hero-content h1 .hero-accent {
    background: linear-gradient(135deg, #ff7a00, #ff4000, #ff7a00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

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

.hero-content h1 .hero-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.25), rgba(255, 64, 0, 0.15));
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineDraw 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes underlineDraw {
    to { transform: scaleX(1); }
}

/* === Hero Subtitle === */
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.005em;
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* === Hero Buttons (unchanged layout) === */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* === Hero Trust Indicators === */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 36px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--accent-orange);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.12);
}

/* ===== ANIMATED SECTION DIVIDERS ===== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-blue), transparent);
    opacity: 0.3;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 50%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    animation: shimmerLine 4s linear infinite;
}

@keyframes shimmerLine {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient shimmer on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,122,0,0.04), transparent, rgba(14,165,233,0.04), transparent);
    animation: rotateGradient 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

@keyframes rotateGradient {
    100% { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(255, 122, 0, 0.15);
    border-color: rgba(255, 122, 0, 0.2);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-orange);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.service-card:hover .icon-wrapper {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.adv-item {
    padding: 40px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    transition: var(--transition-bounce);
    cursor: default;
}

.adv-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(14, 165, 233, 0.2);
}

.adv-item i {
    font-size: 3.5rem;
    margin-bottom: 18px;
    display: inline-block;
    transition: var(--transition-bounce);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adv-item:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.adv-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== PROCESS TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--glass-border);
    z-index: 0;
    overflow: hidden;
}

/* Animated progress glow on timeline */
.timeline-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -30%;
    width: 30%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: timelineGlow 4s ease-in-out infinite;
}

@keyframes timelineGlow {
    0% { left: -30%; }
    100% { left: 100%; }
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 18%;
    cursor: default;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-dark);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: var(--transition-bounce);
    position: relative;
}

/* Pulse ring on hover */
.step-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    opacity: 0;
    transform: scale(1);
    transition: var(--transition);
}

.timeline-step:hover .step-icon::after {
    opacity: 0.3;
    transform: scale(1.4);
}

.timeline-step:hover .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px var(--glow-orange);
    transform: scale(1.15);
}

.timeline-step h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: var(--transition);
}

.timeline-step:hover h4 {
    color: var(--accent-orange);
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 30, 38, 0.85), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 20px;
    padding-bottom: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-orange);
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, #fff8f0 0%, #f0f9ff 50%, #f5f3ff 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* Subtle animated mesh background */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,122,0,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(14,165,233,0.06) 0%, transparent 40%);
    animation: meshFloat 10s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(30px); }
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    transition: var(--transition-bounce);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item span {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    color: var(--text-gray);
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(255, 122, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.accordion-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.accordion-header i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.accordion-header.active {
    background: linear-gradient(135deg, rgba(255,122,0,0.04), rgba(255,122,0,0.02));
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
    padding: 0 28px 22px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.cta-bg-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,122,0,0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(14,165,233,0.04) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 5px 0;
}

.c-item:hover {
    transform: translateX(5px);
}

.c-item i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-bounce);
}

.c-item:hover i {
    background: var(--gradient-accent);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
}

.contact-form-container {
    flex: 1;
    padding: 45px;
    border-radius: var(--radius-md);
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-orange);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.08);
}

.input-group label {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
    transition: var(--transition);
}

.input-group textarea ~ label {
    top: 20px;
    transform: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--bg-dark);
    padding: 0 8px;
    color: var(--accent-orange);
    transform: none;
    font-weight: 500;
}

.form-success {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(76, 209, 55, 0.08);
    border: 1px solid rgba(76, 209, 55, 0.2);
    border-radius: var(--radius-sm);
    color: #2d9a28;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}

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

/* ===== FOOTER ===== */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-gray);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
}

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

.social-icons a {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.social-icons a:hover {
    background: var(--gradient-accent);
    color: #fff;
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== SCROLL-TO-TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-bounce);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
}

/* ===== CURSOR GLOW (desktop only) ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--bg-light);
    border-top-color: var(--accent-orange);
    animation: spin 0.8s linear infinite;
}

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

/* ===== CALCULATOR SECTION ===== */
.calc-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.calc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,122,0,0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(14,165,233,0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Mode Toggle */
.calc-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 5px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--glass-border);
}

.calc-mode-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: calc(var(--radius-lg) - 3px);
    background: transparent;
    color: var(--text-gray);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calc-mode-btn i {
    font-size: 1.1rem;
}

.calc-mode-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.calc-mode-btn:not(.active):hover {
    color: var(--accent-orange);
    background: rgba(255, 122, 0, 0.05);
}

/* Calculator Accordion */
.calc-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-category {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.calc-category:hover {
    border-color: rgba(255, 122, 0, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.calc-category-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.calc-category-header:hover {
    background: rgba(255, 122, 0, 0.03);
}

.calc-category-header.active {
    background: linear-gradient(135deg, rgba(255,122,0,0.04), rgba(255,122,0,0.01));
}

.calc-cat-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.calc-cat-label i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-orange);
    transition: var(--transition-bounce);
}

.calc-category-header.active .calc-cat-label i {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}

.calc-cat-label span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.calc-chevron {
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-category-header.active .calc-chevron {
    transform: rotate(180deg);
}

.calc-category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Calc Items */
.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    gap: 20px;
}

.calc-item:hover {
    background: rgba(255, 122, 0, 0.02);
}

.calc-item-info {
    flex: 1;
    min-width: 0;
}

.calc-item-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.calc-item-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 6px;
}

.calc-price-tag {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.calc-price-tag span {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 3px 10px;
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    white-space: nowrap;
}

.calc-price-tag span strong {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Show/hide price based on mode */
.calc-price-tag .price-work {
    display: none;
}

.calc-section.mode-work .calc-price-tag .price-mat {
    display: none;
}

.calc-section.mode-work .calc-price-tag .price-work {
    display: inline;
}

/* Quantity Input Controls */
.calc-item-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.calc-item-input > label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.qty-control:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: inherit;
}

.qty-btn:hover {
    background: rgba(255, 122, 0, 0.1);
    color: var(--accent-orange);
}

.qty-btn:active {
    transform: scale(0.9);
}

.calc-qty {
    width: 52px;
    height: 38px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.calc-qty::-webkit-outer-spin-button,
.calc-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Item highlight when has value */
.calc-item.has-value {
    background: linear-gradient(135deg, rgba(255,122,0,0.03), rgba(255,122,0,0.01));
    border-left: 3px solid var(--accent-orange);
    padding-left: 25px;
}

.calc-item.has-value .calc-qty {
    color: var(--accent-orange);
}

/* Total Bar */
.calc-total-bar {
    max-width: 900px;
    margin: 30px auto 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px 32px 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.calc-total-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.calc-total-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.calc-total-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.calc-total-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.calc-total-amount {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: var(--transition);
}

.calc-total-amount.animate-change {
    animation: totalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes totalPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.calc-cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 14px;
    opacity: 0.7;
    text-align: center;
}

/* ===== PRICING (kept for future) ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    padding: 50px 40px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.price-card .price {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.price-card .price span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--accent-orange);
}

.best-offer {
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.05) 0%, #ffffff 100%);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.1);
}

.best-offer h3 {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: serif;
    color: var(--accent-orange);
    opacity: 0.1;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.3);
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.review-text {
    flex-grow: 1;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===== ORDER WIZARD MODAL ===== */
.order-service-btn {
    margin-top: 20px;
    width: 100%;
}

.order-modal {
    z-index: 2000;
}

.order-modal-content {
    background: var(--bg-dark);
    max-width: 500px;
    width: 90%;
    margin: auto;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.order-close:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: var(--transition);
}

.step-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
}

.order-form {
    display: block;
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

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

.form-step h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--primary);
    text-align: center;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.form-actions.split {
    justify-content: space-between;
}

.form-actions.split .btn {
    width: 48%;
}

.order-modal select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--primary);
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.order-modal select:focus {
    border-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

/* ===== CUSTOM ICONS IN SERVICES ===== */
.service-card .icon-wrapper.custom-icon {
    background: transparent !important;
    box-shadow: none !important;
    width: 120px;
    height: 120px;
}

.service-card .icon-wrapper.custom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-bounce);
}

.service-card:hover .icon-wrapper.custom-icon {
    background: transparent !important;
    transform: none; /* remove background transform */
}

.service-card:hover .icon-wrapper.custom-icon img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(255, 122, 0, 0.4));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .hero-trust {
        gap: 16px;
        padding: 14px 24px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
    
    .timeline-line {
        width: 2px;
        height: 100%;
        left: 28px;
        top: 0;
    }
    
    .timeline-line::after {
        width: 4px;
        height: 30%;
        left: -1px;
        top: -30%;
        animation: timelineGlowVertical 4s ease-in-out infinite;
    }
    
    @keyframes timelineGlowVertical {
        0% { top: -30%; }
        100% { top: 100%; }
    }
    
    .timeline-step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .step-icon {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    
    .timeline-step div:last-child {
        padding-top: 5px;
    }
    
    .cursor-glow {
        display: none;
    }

    .calc-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .calc-item-input {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-menu a {
        padding: 20px;
        border-top: 1px solid var(--glass-border);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 36px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-bottom: 24px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
        padding: 16px 28px;
        border-radius: 20px;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .calc-mode-toggle {
        max-width: 100%;
    }

    .calc-mode-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .calc-category-header {
        padding: 18px 20px;
    }

    .calc-item {
        padding: 16px 20px;
    }

    .calc-total-bar {
        padding: 22px 20px 16px;
    }

    .calc-total-amount {
        font-size: 1.8rem;
    }

    .calc-total-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .calc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
