/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background: #fff;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --accent: #f97316;
    --accent-dark: #ea6c0a;
    --foreground: #0f172a;
    --background: #fff;
    --secondary: #f1f5f9;
    --muted: #64748b;
    --border: #e2e8f0;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --green: #16a34a;
    --radius: 1rem;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ===== TOPBAR ===== */
.topbar {
    background: #0f172a;
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-badges { display: flex; gap: 20px; align-items: center; }
.topbar-badges span { display: flex; align-items: center; gap: 6px; }
.topbar-phone a {
    color: #f97316;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .topbar { font-size: 12px; padding: 6px 0; }
    .topbar-inner { padding: 0 12px; gap: 12px; }
    .topbar-badges { gap: 12px; flex-wrap: wrap; }
    .topbar-badges span { font-size: 11px; }
    .topbar-phone a { font-size: 13px; }
}
@media (max-width: 480px) {
    .topbar { font-size: 11px; padding: 4px 0; }
    .topbar-badges { gap: 8px; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 20px;
}
.logo-text { font-size: 20px; font-weight: 800; color: var(--foreground); }
.logo-text span { color: var(--primary); }
.logo-sub { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--foreground);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--secondary); color: var(--primary); }
.nav-cta {
    background: var(--accent);
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.2s !important;
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: 8px; font-weight: 600; color: var(--foreground); }
.mobile-menu a:hover { background: var(--secondary); color: var(--primary); }
.mobile-menu .nav-cta { background: var(--accent) !important; color: #fff !important; text-align: center; justify-content: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    overflow: hidden;
    padding: 80px 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600') center/cover no-repeat;
    opacity: 0.15;
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220,38,38,0.2);
    border: 1px solid rgba(220,38,38,0.4);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .hero { padding: 50px 0; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 18px; }
    .hero p { font-size: 16px; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { width: 100%; text-align: center; justify-content: center; min-height: 44px; padding: 14px 16px !important; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-stat-num { font-size: 20px; }
    .hero-form-card { padding: 24px; }
}
@media (max-width: 480px) {
    .hero { padding: 40px 0; }
    .hero h1 { font-size: 1.3rem; }
    .hero p { font-size: 15px; }
    .hero-btns { gap: 12px; }
    .hero-btns a { padding: 12px 14px !important; font-size: 15px !important; }
    .hero-form-card { padding: 20px 16px; }
    .hero-form-card h3 { font-size: 1rem; }
}
.hero h1 span {
    background: linear-gradient(135deg, #fca5a5, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-accent {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent);
    color: #fff; font-weight: 700; font-size: 17px;
    padding: 18px 32px; border-radius: 12px;
    border: none; cursor: pointer;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    transition: all 0.2s;
    animation: pulseRing 2s infinite;
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff; font-weight: 600; font-size: 17px;
    padding: 18px 32px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 32px;
}
.hero-stat-num { font-size: 24px; font-weight: 800; color: #fff; }
.hero-stat-desc { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.hero-form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.hero-form-card p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(249,115,22,0); }
    100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--foreground); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--foreground);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-group input, .form-group select, .form-group textarea { padding: 14px 12px; font-size: 16px; min-height: 44px; }
}
@media (max-width: 480px) {
    .form-group { margin-bottom: 12px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 10px; font-size: 16px; }
}
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-primary {
    width: 100%; padding: 16px;
    background: var(--primary);
    color: #fff; font-weight: 700; font-size: 16px;
    border: none; border-radius: 12px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.2s;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
@media (max-width: 768px) {
    .btn-primary { padding: 14px; font-size: 16px; min-height: 48px; }
}
@media (max-width: 480px) {
    .btn-primary { padding: 12px; }
}
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--green);
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 16px;
    display: none;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--muted); }

/* ===== WHY US ===== */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
    background: var(--secondary);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.why-card:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
    width: 56px; height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(220,38,38,0.25);
}
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--muted); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-section { background: #f8fafc; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.services-header-left h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.services-header-left p { color: var(--muted); font-size: 17px; }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 10px;
    border: 2px solid var(--border);
    font-weight: 600; font-size: 15px;
    color: var(--foreground);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(220,38,38,0.05); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: all 0.3s;
    cursor: pointer;
}
.service-card:hover { border-color: rgba(220,38,38,0.4); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
    width: 48px; height: 48px;
    background: rgba(220,38,38,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
    transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; transition: color 0.2s; }
.service-card:hover h3 { color: var(--primary); }
.service-card p { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.6; }
.service-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; gap: 4px;
}

/* ===== ABOUT ===== */
.about-section { background: #fff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img {
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    max-height: 580px;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}
.about-badge {
    position: absolute; top: 40px; left: -24px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px;
}
.about-badge-icon { background: #dcfce7; padding: 12px; border-radius: 50%; font-size: 24px; }
.about-badge-text strong { display: block; font-size: 16px; font-weight: 700; }
.about-badge-text span { font-size: 13px; color: var(--muted); }
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.about-content h2 span { color: var(--primary); }
.about-content p { font-size: 17px; color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.about-list li::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.btn-primary-lg {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary);
    color: #fff; font-weight: 700; font-size: 17px;
    padding: 18px 36px; border-radius: 12px;
    border: none; cursor: pointer;
    box-shadow: 0 8px 24px rgba(220,38,38,0.3);
    transition: all 0.2s;
}
.btn-primary-lg:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== BRANDS ===== */
.brands-section { background: var(--foreground); padding: 60px 0; }
.brands-label { text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; opacity: 0.65; }
.brands-list span { color: #fff; font-size: 20px; font-weight: 800; letter-spacing: 1px; transition: opacity 0.2s; cursor: default; }
.brands-list span:hover { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #f8fafc; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent); font-size: 18px; }
.testimonial-text { color: var(--foreground); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 20px; }
.testimonial-footer { border-top: 1px solid var(--border); padding-top: 14px; }
.testimonial-footer strong { display: block; font-weight: 700; margin-bottom: 2px; }
.testimonial-footer span { font-size: 13px; color: var(--muted); }

/* ===== CUSTOMER SERVICES (RED) ===== */
.customer-section {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.customer-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.customer-section .section-header h2 { color: #fff; }
.customer-section .section-header p { color: rgba(255,255,255,0.9); }
.customer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.customer-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; padding: 24px;
    transition: all 0.3s;
}
.customer-card:hover { background: rgba(255,255,255,0.22); }
.customer-card-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 16px;
    transition: all 0.3s;
}
.customer-card:hover .customer-card-icon { background: #fff; }
.customer-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.customer-card p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; }
.customer-cta {
    text-align: center;
    margin-top: 60px;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.guarantee-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 14px 36px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.guarantee-badge strong { font-size: 22px; font-weight: 800; display: block; }
.btn-red-oval {
    display: inline-flex; align-items: center; gap: 12px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    padding: 22px 56px;
    border-radius: 100px;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-red-oval:hover { background: #b91c1c; transform: scale(1.05); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }

/* ===== BOTTOM CTA ===== */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    opacity: 0.08;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff;
    color: var(--primary); font-weight: 700; font-size: 18px;
    padding: 18px 36px; border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-cta-form {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff; font-weight: 600; font-size: 18px;
    padding: 18px 36px; border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
}
.btn-cta-form:hover { background: rgba(255,255,255,0.25); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--foreground);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; }

/* ===== SERVICES PAGE ===== */
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    transition: all 0.3s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-detail-thumb {
    height: 180px;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.service-detail-card:hover .service-detail-thumb { background: rgba(220,38,38,0.08); }
.service-detail-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-detail-body h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-detail-body p { color: var(--muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.service-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-checks li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.service-checks li::before { content: '✓'; color: var(--primary); font-weight: 800; }
.btn-primary-full {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--primary);
    color: #fff; font-weight: 700; font-size: 15px;
    padding: 14px; border-radius: 10px;
    transition: all 0.2s;
}
.btn-primary-full:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px; padding: 24px;
    display: flex; align-items: flex-start; gap: 20px;
    transition: all 0.2s;
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.contact-card-icon {
    width: 56px; height: 56px;
    background: rgba(220,38,38,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
    transition: all 0.2s;
}
.contact-card:hover .contact-card-icon { background: var(--primary); }
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.contact-card .phone-big { font-size: 22px; font-weight: 800; color: var(--primary); }
.contact-card-proservis {
    background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(220,38,38,0.04));
    border: 2px solid rgba(220,38,38,0.25);
    border-radius: 16px; padding: 28px;
    display: flex; align-items: flex-start; gap: 20px;
}
.contact-card-proservis .icon { width: 64px; height: 64px; background: var(--primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(220,38,38,0.3); }
.contact-card-proservis h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.contact-card-proservis .addr { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.contact-card-proservis p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; }
.contact-info-item span.ic { font-size: 20px; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.contact-info-item p { font-size: 13px; color: var(--muted); }
.contact-form-box {
    background: #fff;
    border-radius: 24px; padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.contact-form-box h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-box > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.map-placeholder {
    height: 380px;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--muted);
    gap: 12px;
}
.map-placeholder .map-icon { font-size: 48px; }
.map-placeholder strong { font-size: 18px; font-weight: 700; color: var(--foreground); }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: rgba(255,255,255,0.8); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: #fff; font-size: 22px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 800; font-size: 18px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; margin-bottom: 12px; }
.footer-col .contact-line span.ic { margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--primary); }


/* ===== ALERT ===== */
.alert-success {
    background: #f0fdf4; border: 1.5px solid #86efac;
    color: #16a34a; padding: 16px 20px; border-radius: 12px;
    font-weight: 600; margin-bottom: 20px;
}
.alert-error {
    background: #fef2f2; border: 1.5px solid #fca5a5;
    color: #dc2626; padding: 16px 20px; border-radius: 12px;
    font-weight: 600; margin-bottom: 20px;
}

/* ===== MAPS SECTION ===== */
.maps-section { background: #f8fafc; padding: 80px 0; }
.maps-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.maps-info-bar {
    background: var(--foreground);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 32px;
    flex-wrap: wrap;
}
.maps-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}
.maps-info-icon { font-size: 22px; flex-shrink: 0; }
.maps-info-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}
.maps-info-item span { color: rgba(255,255,255,0.7); font-size: 13px; }
.maps-call-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: #fff; font-weight: 700; font-size: 15px;
    padding: 12px 24px; border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    flex-shrink: 0;
}
.maps-call-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.maps-embed iframe { display: block; }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--red);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 24px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: background 0.2s;
}
.mobile-sticky-bar:hover { background: var(--red-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { display: none; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .customer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mobile-sticky-bar { display: block; }
    body { padding-bottom: 58px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .topbar-badges { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .customer-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .btn-red-oval { font-size: 16px; padding: 18px 36px; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
}
