/* ============================================
   Our Expertise — Clean Rebuild
   ============================================ */
.expertise-section {
    background: #0a0f1a;
}

/* Row 1: text left + photos right */
.expertise-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}
.expertise-col-text {
    flex: 1 1 45%;
    min-width: 0;
}
.expertise-heading {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}
.expertise-desc {
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}
.expertise-col-photos {
    flex: 1 1 55%;
    min-width: 0;
}
.expertise-col-photos .gallery-grid {
    margin-top: 0;
}

/* Row 2: full-width feature cards */
.expertise-cards-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 2.5rem;
    width: 100%;
}
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    gap: 0.75rem;
    flex: 1 1 0;
    min-width: 0;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
    box-shadow: 0 4px 24px 0 rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.35);
}
.feature-stars {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.feature-stars svg {
    width: 70px;
    height: 14px;
}
.feature-text {
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.4;
}
.feature-text b {
    color: #fff;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1100px) {
    .expertise-row {
        flex-direction: column;
        gap: 2rem;
    }
    .expertise-col-text,
    .expertise-col-photos {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .expertise-cards-row {
        flex-wrap: wrap;
    }
    .feature-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }
}

/* Service Card Background Painting */
.service-card-bg-painting {
    background: linear-gradient(rgba(20,24,32,0.54), rgba(20,24,32,0.54)), url('painting.jpg') center/cover no-repeat;
    color: var(--white);
    border: none !important;
    box-shadow: none;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
}
.service-card-bg-painting h3 {
    color: var(--accent) !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.service-card-bg-painting p {
    color: #f3f4f6 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.service-card-bg .service-card-gold {
    color: var(--accent) !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* ============================================
   Auto Body It Is — Modern Professional Theme
   Mercedes-Benz Certified Collision Center
   ============================================ */

:root {
    --primary: #1a3a6b;
    --primary-dark: #0f2647;
    --primary-light: #2d5aa0;
    --accent: #c9a84c;
    --accent-light: #e0c76e;
    --dark: #0a0f1a;
    --dark-2: #141b2d;
    --dark-3: #1e2a42;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.08), 0 3px 7px -3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; height: auto; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition);
    text-decoration: none; line-height: 1.4; letter-spacing: 0.01em; position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-primary:hover {
    background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.btn-glass {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.1); color: var(--white);
    transform: translateY(-2px); border-color: var(--white);
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-full { width: 100%; }

.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--transition);
}
.navbar.scrolled { background: rgba(0,0,0,0.95); box-shadow: 0 1px 30px rgba(0,0,0,0.3); }

.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-name {
    font-size: 18px; font-weight: 700; letter-spacing: 3px;
    color: var(--accent); text-transform: uppercase;
}
.logo-name-accent { color: var(--accent); }

.logo-img {
    height: 50px; width: auto; object-fit: contain;
}
.footer-logo-img { height: 40px; }

.logo-text-group { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text { font-weight: 800; font-size: 17px; letter-spacing: 1.5px; }
.logo-highlight { color: var(--primary); }
.logo-tagline { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    padding: 8px 14px; color: rgba(255,255,255,0.6); font-weight: 500; font-size: 13px;
    border-radius: var(--radius); transition: var(--transition); letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
    background: transparent !important; color: var(--white) !important;
    padding: 8px 18px !important; border-radius: var(--radius) !important;
    font-weight: 600 !important; font-size: 13px !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.1) !important; border-color: var(--white) !important; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}

.hero-bg-wrap {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(10,15,26,0.85) 0%, rgba(10,15,26,0.7) 40%, rgba(26,58,107,0.75) 100%);
}

.hero-content {
    position: relative; z-index: 3; text-align: center; padding: 120px 0 80px;
    max-width: 850px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}

.hero-logo {
    width: 920px; max-width: 90vw; height: auto; margin-bottom: 32px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5)) brightness(1.1);
    animation: heroLogoIn 1.2s cubic-bezier(0.77,0,0.175,1);
    object-fit: contain;
    aspect-ratio: auto;
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), filter 0.4s cubic-bezier(0.77,0,0.175,1);
}

.hero-logo:hover {
    transform: scale(1.07) rotate(-1deg);
    filter: drop-shadow(0 8px 32px rgba(201,168,76,0.5)) brightness(1.15);
}
}
@keyframes heroLogoIn {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px; font-weight: 400;
    color: var(--accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: -20px; margin-bottom: 12px;
    animation: heroTaglineIn 1.2s ease-out 0.2s both;
}

.hero-tagline {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 28px; font-weight: 700; font-style: normal;
    color: #fff;
    margin-top: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 48px; line-height: 1.4;
    animation: heroTaglineIn 1.2s ease-out 0.3s both;
}
@keyframes heroTaglineIn {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: heroActionsIn 1s ease-out 0.6s both;
}
@keyframes heroActionsIn {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Section Defaults
   ============================================ */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.why-choose-list {
    margin: 32px auto 0 auto;
    max-width: 540px;
    text-align: left;
    color: var(--gray-100);
    font-size: 16px;
    line-height: 1.7;
    list-style: none;
    padding: 0;
}
.why-choose-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}
.why-choose-list li:before {
    content: '\2022';
    color: var(--accent);
    font-size: 22px;
    position: absolute;
    left: 0;
    top: 2px;
}
.expertise-cta {
    margin-top: 28px;
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
}
.services-section-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
    background: linear-gradient(120deg, rgba(10,15,26,0.95) 60%, rgba(201,168,76,0.08) 100%);
    pointer-events: none;
}
.section-label {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
    background: rgba(26,58,107,0.08); padding: 6px 16px; border-radius: 50px;
}
.section-label.light { color: var(--accent-light); background: rgba(201,168,76,0.15); }

.section-header h2 {
    font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800;
    color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============================================
   Certification Banner
   ============================================ */
.cert-banner {
    background: #000000;
    padding: 100px 0; position: relative; overflow: hidden;
}
.cert-banner::before {
    content: ''; position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cert-banner::after {
    content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,58,107,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cert-content {
    display: flex; align-items: center; gap: 80px; position: relative; z-index: 1;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px; padding: 60px 64px;
    backdrop-filter: blur(12px);
}

.cert-badge-large { flex-shrink: 0; }
.cert-badge-img {
    width: 180px; height: 180px; object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(201,168,76,0.2));
}

.cert-label {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
    padding: 6px 16px; border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px; background: rgba(201,168,76,0.08);
}
.cert-text h2 {
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800;
    color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.cert-text p {
    font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px;
}

.cert-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cert-feature {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px; border-radius: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.cert-feature:hover {
    background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.15);
    transform: translateY(-2px);
}
.cert-feature-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: rgba(201,168,76,0.12); display: flex;
    align-items: center; justify-content: center;
}
.cert-feature-icon svg { color: var(--accent); stroke: var(--accent); }
.cert-feature-title {
    display: block; font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.9); margin-bottom: 2px;
}
.cert-feature-desc {
    display: block; font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 400;
}

/* ============================================
   Vehicle Gallery (Photos)
   ============================================ */
.vehicle-gallery {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    overflow: hidden;
}
.vehicle-gallery .section-header h2 { color: var(--white); }
.vehicle-gallery .section-header p { color: rgba(255,255,255,0.5); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item.gallery-large {
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.gallery-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
    overflow: hidden;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
    display: inline-block; background: var(--accent); color: var(--dark);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 8px; width: fit-content;
}

.gallery-overlay h3 {
    font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px;
    transform: translateY(10px); transition: transform 0.4s ease 0.1s;
}
.gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

.gallery-overlay p {
    font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4;
    transform: translateY(10px); transition: transform 0.4s ease 0.15s;
}
.gallery-item:hover .gallery-overlay p { transform: translateY(0); }

/* Gallery shimmer/reveal animation */
.gallery-item {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item.revealed {
    opacity: 1; transform: translateY(0);
}

/* ============================================
   Services
   ============================================ */
.services { background: #1a1a1a; }
.services .section-label { color: #c9a84c !important; background: rgba(201,168,76,0.15) !important; }
.services .section-header h2 { color: #c9a84c !important; }
.services .section-header p { color: #fff !important; }
.services .container { position: relative; z-index: 1; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: start; }

.service-card {
    background: rgba(255,255,255,0.04);
    border-radius: 22px;
    border: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 48px 34px 44px 34px;
    min-height: 240px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.service-card .service-accent-bar {
    display: none;
}
.service-card .service-icon-svg {
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: flex-start;
}
.service-card h3 {
    font-size: 12px; font-weight: 700; color: #0a0f1a; letter-spacing: 0.06em; text-transform: uppercase;
    background: rgba(201,168,76,0.85); padding: 8px 18px; border-radius: 4px;
    display: inline-block; margin-bottom: 0; text-shadow: none;
    white-space: nowrap;
    width: 80%; text-align: center; box-sizing: border-box;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: top 0.4s ease, transform 0.4s ease, background 0.4s ease;
}
.service-card:hover h3 {
    top: 24px;
    transform: translate(-50%, 0);
    background: #c9a84c;
}
.service-card p {
    font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 0; text-shadow: none;
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 0 30px 24px 30px;
    background: linear-gradient(to top, rgba(10,15,26,0.95) 60%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.service-card:hover {
    transform: translateY(-8px);
    z-index: 2;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 2px 16px rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
}
.service-card.photo-card {
    color: var(--white);
    border: 1px solid rgba(201,168,76,0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-collision  { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('bumper%20removal.jpg'); }
.card-refinishing { background-image: linear-gradient(rgba(10,15,26,0.55), rgba(10,15,26,0.55)), url('painting.jpg'); }
.card-dent { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('paintless.jpg'); }
.card-insurance { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('appraiser.jpg'); }
.card-wheel { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('wheel.jpg'); }
.card-caliper { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('brakes.jpg'); }
.card-towing { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('towing%201.jpg'); }
.card-ppf { background-image: linear-gradient(rgba(10,15,26,0.6), rgba(10,15,26,0.6)), url('paint%20protection.jpg'); }
.service-card.photo-card h3 {
    color: #0a0f1a;
    background: rgba(201,168,76,0.85);
    text-shadow: none;
}
.service-card.photo-card p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 0 30px 24px 30px;
    background: linear-gradient(to top, rgba(10,15,26,0.95) 60%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.service-card.photo-card:hover p {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.glass-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 16px 48px rgba(26,58,107,0.18), 0 2px 16px rgba(201,168,76,0.12);
    border-color: var(--accent-light);
}
.service-icon-svg {
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: flex-start;
}
.service-card-bg {
    background: linear-gradient(rgba(20,24,32,0.54), rgba(20,24,32,0.54)), url('bumper removal.jpg') center/cover no-repeat;
    color: var(--white);
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}
.service-card-bg h3 {
    color: #fff !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.service-card-bg p {
    color: #f3f4f6 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.service-card-bg .service-link {
    color: var(--accent) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.service-card-bg h3,
.service-card-bg p,
.service-card-bg .service-link {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.service-card-bg .service-link { color: var(--accent); }
.service-card::before {\n    display: none;\n}\n.service-card:hover { transform: translateY(-8px); z-index: 2; box-shadow: 0 16px 48px rgba(0,0,0,0.35); border-color: rgba(201,168,76,0.35); }\n.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap { margin-bottom: 20px; }
.service-icon { font-size: 42px; line-height: 1; }

.service-card h3 { font-size: 12px; font-weight: 700; color: #0a0f1a; background: rgba(201,168,76,0.85); padding: 8px 18px; border-radius: 4px; display: inline-block; margin-bottom: 0; letter-spacing: 0.06em; text-transform: uppercase; text-shadow: none; white-space: nowrap; width: 80%; text-align: center; box-sizing: border-box; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: top 0.4s ease, transform 0.4s ease, background 0.4s ease; }
.service-card p { font-size: 14px; color: #f3f4f6; line-height: 1.7; margin-bottom: 0; text-shadow: 0 2px 8px rgba(0,0,0,0.12); position: absolute; left: 0; right: 0; bottom: 0; padding: 0 30px 24px 30px; background: linear-gradient(to top, rgba(10,15,26,0.95) 60%, transparent 100%); opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
.service-card:hover p { opacity: 1; transform: translateY(0); pointer-events: auto; }

.service-link {
    font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.02em;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 4px;
}
.service-card:hover .service-link { color: var(--accent); gap: 8px; }

/* ============================================
   About
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.about-content h2 {
    font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800;
    color: var(--gray-900); margin-bottom: 24px; line-height: 1.2;
}
.about-content p { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.8; }
.about-cta { margin-top: 32px; }

.about-card-stack { display: flex; flex-direction: column; gap: 20px; }

.about-stat-card {
    background: var(--white); padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.about-stat-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }

.about-stat-card.accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d4b55a 100%);
    border-color: transparent; color: var(--white);
}
.about-stat-card.accent .asc-label { color: rgba(255,255,255,0.8); }

.about-stat-card.dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-color: transparent; color: var(--white);
}
.about-stat-card.dark .asc-label { color: rgba(255,255,255,0.6); }

.asc-number { font-size: 48px; font-weight: 900; line-height: 1; color: var(--primary); }
.about-stat-card.accent .asc-number,
.about-stat-card.dark .asc-number { color: var(--white); }
.asc-plus { font-size: 32px; font-weight: 700; color: var(--primary); }
.about-stat-card.accent .asc-plus,
.about-stat-card.dark .asc-plus { color: var(--white); }
.asc-label { display: block; font-size: 14px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }

/* ============================================
   Process
   ============================================ */
.process { background: var(--gray-50); }

.process-grid { display: flex; align-items: flex-start; gap: 0; justify-content: center; }

.process-step {
    flex: 1; text-align: center; padding: 32px 24px; position: relative; max-width: 260px;
}

.step-number {
    font-size: 48px; font-weight: 900; color: var(--gray-200);
    font-family: 'Playfair Display', serif; margin-bottom: 16px; line-height: 1;
    transition: var(--transition);
}
.process-step:hover .step-number { color: var(--primary); }

.process-step h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.process-connector {
    width: 60px; height: 2px; background: var(--gray-300);
    margin-top: 54px; flex-shrink: 0;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-us {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}
.why-us .section-header h2 { color: var(--white); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-item {
    text-align: center; padding: 40px 24px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.why-icon-wrap {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.why-icon-wrap svg { stroke: var(--accent); }

.why-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ============================================
   Reviews
   ============================================ */
.reviews { background: #0a0f1a; }
.reviews .section-header h2 { color: #c9a84c; }
.reviews .section-header p { color: rgba(255,255,255,0.6); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
    background: rgba(255,255,255,0.04); padding: 36px 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(201,168,76,0.12); transition: var(--transition); position: relative;
    display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: rgba(201,168,76,0.3); }

.review-quote {
    font-family: 'Playfair Display', serif; font-size: 60px; color: var(--accent);
    line-height: 1; margin-bottom: -10px; opacity: 0.35;
}

.review-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8; flex: 1; margin-bottom: 24px; }

.review-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px; border-top: 1px solid rgba(201,168,76,0.12);
}
.review-author-info { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
    color: #0a0f1a; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
}
.review-author-info strong { display: block; font-size: 14px; color: #fff; }
.review-author-info span { font-size: 12px; color: rgba(255,255,255,0.5); }

.review-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }

/* ============================================
   Estimate Form
   ============================================ */
.estimate {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.estimate-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }

.estimate-info h2 {
    font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800;
    color: var(--gray-900); margin-bottom: 16px; line-height: 1.2;
}
.estimate-info p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

.estimate-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 28px; font-weight: 800; color: var(--primary);
    margin-bottom: 32px; transition: var(--transition);
}
.estimate-phone:hover { color: var(--accent); }

.estimate-perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); font-weight: 500; }
.perk svg { stroke: var(--accent); flex-shrink: 0; }

.estimate-form-container { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }

.estimate-form { display: flex; flex-direction: column; gap: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    font-size: 13px; font-weight: 600; color: var(--gray-700);
    margin-bottom: 6px; letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    font-size: 15px; font-family: inherit; color: var(--gray-700); background: var(--gray-50);
    transition: var(--transition); width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--primary); background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,58,107,0.08);
}
.form-group textarea { resize: vertical; }

/* Photo Upload */
.photo-upload-area {
    position: relative;
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: var(--transition);
    min-height: 48px;
}
.photo-upload-area:hover, .photo-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(201,168,76,0.04);
}
.photo-input {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer; z-index: 2;
}
.photo-upload-label {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 16px; color: var(--gray-500); font-size: 14px;
    pointer-events: none;
}
.photo-upload-label svg { stroke: var(--accent); }
.photo-preview {
    display: flex; flex-wrap: wrap; gap: 8px; padding: 0 12px 12px;
}
.photo-preview:empty { display: none; }
.photo-preview img {
    width: 60px; height: 60px; object-fit: cover;
    border-radius: 6px; border: 1px solid var(--gray-200);
}

.estimate-form .btn { margin-top: 8px; }
.estimate-form .btn-primary {
    background: var(--accent);
    color: #0a0f1a;
    border-color: var(--accent);
    font-weight: 700;
    font-size: 17px;
    padding: 18px 40px;
    letter-spacing: 0.5px;
}
.estimate-form .btn-primary:hover {
    background: #b8953f;
    border-color: #b8953f;
    color: #0a0f1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.form-success {
    margin-top: 20px; padding: 16px 20px; background: #ecfdf5; border: 1px solid #86efac;
    border-radius: var(--radius); color: #166534; font-weight: 600; text-align: center; font-size: 15px;
}

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--gray-50); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-card {
    background: var(--white); padding: 28px 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); transition: var(--transition); text-align: center;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.cc-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(26,58,107,0.06); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.cc-icon svg { stroke: var(--primary); }

.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.contact-card a { font-size: 14px; color: var(--primary); font-weight: 600; }
.contact-card a:hover { color: var(--accent); }

.contact-map {
    background: var(--gray-200); border-radius: var(--radius-lg); height: 380px;
    overflow: hidden; border: 1px solid var(--gray-200);
}

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }

.footer-content {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); font-size: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px;
    letter-spacing: 1px; text-transform: uppercase;
}

.footer-links a,
.footer-services a {
    display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 4px 0;
    transition: var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--white); padding-left: 4px; }

.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-cert { color: var(--accent); opacity: 0.6; font-weight: 500; letter-spacing: 0.5px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-connector { width: 30px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .cert-content { flex-direction: column; text-align: center; gap: 40px; padding: 40px 32px; }
    .cert-features { justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.gallery-large { grid-row: span 1; }
    .gallery-item.gallery-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 40px rgba(0,0,0,0.4); gap: 4px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 14px 16px; width: 100%; font-size: 15px; }

    .hero { min-height: auto; padding-top: 64px; }
    .hero-content { padding: 60px 16px 80px; }
    .hero-logo { width: 85vw; max-width: 340px; height: auto; object-fit: contain; }
    .hero-subtitle { font-size: 13px; letter-spacing: 3px; margin-top: -14px; margin-bottom: 8px; }
    .hero-tagline { font-size: 16px; margin-bottom: 30px; letter-spacing: 2px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gallery-large { grid-row: span 1; aspect-ratio: 4/3; }
    .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 4/3; }

    .section { padding: 70px 0; }
    .section-header h2 { font-size: 30px; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .process-grid { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 30px; margin: 0; }

    .estimate-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .estimate-form-container { padding: 28px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-map { height: 300px; }

    .cert-features { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .contact-cards { grid-template-columns: 1fr; }
    .cert-badge-img { width: 140px; height: 140px; }
    .cert-text h2 { font-size: 24px; }
    .cert-content { padding: 32px 20px; }
    .about-content h2 { font-size: 30px; }
    .estimate-info h2 { font-size: 30px; }
    .estimate-phone { font-size: 24px; }
}
