/* 
  Service Auto Body Shop - Premium Styling 
*/

:root {
    /* Bright Premium Theme */
    --bg-dark: #f8fafc; /* Very light cool grey */
    --bg-card: #ffffff;
    --bg-card-elevated: #ffffff;
    --bg-card-hover: #f1f5f9;
    
    --text-primary: #0f172a; /* Dark slate */
    --text-secondary: #64748b; /* Slate grey */
    
    --accent-orange: #ea580c; /* Vibrant premium orange */
    --accent-gradient: var(--accent-orange);
    
    --border-color: rgba(15, 23, 42, 0.08); /* Soft dark border */
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--accent-orange); }
.text-left { text-align: left !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }
.mt-5 { margin-top: 40px; }
.text-underline { text-decoration: underline; }
.text-orange { color: var(--accent-orange); }

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 46, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 46, 46, 0.5);
}

.btn-primary-outline {
    background: transparent;
    color: #25D366; /* default WP */
    border: 1px solid #25D366;
    padding: 10px 20px;
}
.btn-primary-outline:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}
.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.6);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    color: white;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Floating Action Buttons */
.floating-buttons a {
    text-decoration: none;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.float-btn:hover {
    transform: scale(1.1);
    color: white;
}
.float-wa {
    background-color: #25D366;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}
.float-maps {
    background-color: #E67E22;
    box-shadow: 0 5px 20px rgba(230,126,34,0.4);
}
.float-tooltip {
    position: absolute;
    right: 75px;
    background: #111;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.logo-icon {
    color: var(--accent-orange);
}

.logo-accent {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary-outline) {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
}
.nav-links a:not(.btn-primary-outline):hover {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: color var(--transition-fast);
}

/* Scrolled state text colors */
.navbar.scrolled .logo,
.navbar.scrolled .nav-links a:not(.btn-primary-outline),
.navbar.scrolled .mobile-menu-btn {
    color: var(--text-primary);
}
.navbar.scrolled .logo-accent {
    color: var(--text-secondary);
}

/* Sections Global */
.section { padding: 100px 0; }
.bg-alt { background-color: #f1f5f9; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(32px, 4vw, 42px); font-weight: 800; margin-bottom: 15px; line-height: 1.2;}
.section-desc { color: var(--text-secondary); font-size: 18px; max-width: 650px; margin: 0 auto; }
.elevated-card { background: var(--bg-card-elevated); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.06);}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero-vopsitor.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Clarified photo fading into the bright page body bottom */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, #f8fafc 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero-content {
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--accent-orange);
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    margin: 0 auto 50px;
    max-width: 800px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Before / After Concept Slider */
.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}
.ba-container.mini { aspect-ratio: 4/3; }

.ba-before, .ba-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.ba-before-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 50%; /* JS will update this */
    height: 100%;
    overflow: hidden;
    border-right: 3px solid var(--accent-orange);
    z-index: 2;
}

.ba-before {
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.ba-slider {
    position: absolute;
    top: 0; left: 50%;
    width: 40px; height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 3;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}
.ba-slider::after {
    content: '\f337';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
}

/* Split content layouts */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.split-content.align-center { align-items: center; }

/* Checklist */
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.check-list i { font-size: 20px; margin-top: 3px; flex-shrink: 0; }

/* Image Box styling for accident section */
.image-box {
    background: linear-gradient(45deg, var(--bg-card), #161616);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.mega-icon {
    font-size: 120px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}
.image-overlay-text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

/* Steps Grid */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    flex: 1;
    transition: var(--transition-smooth);
}
.step-card:hover { transform: translateY(-10px); border-color: rgba(242, 107, 33, 0.3); }

.step-number {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: 800; border: 4px solid var(--bg-alt);
}

.step-icon { font-size: 40px; color: var(--accent-orange); margin-top: 10px; margin-bottom: 20px; }
.step-title { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.step-text { color: var(--text-secondary); font-size: 15px; }
.step-arrow { color: var(--border-color); font-size: 30px; }

/* Forms Configuration */
.split-forms {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.form-desc { color: var(--text-secondary); margin-bottom: 30px; }
.dauna-form { display: flex; flex-direction: column; gap: 20px; }

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: var(--text-secondary);
}
.input-group input, .input-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 15px 15px 45px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 15px;
    transition: var(--transition-fast);
}
.text-area-group i { top: 18px; }
.input-group textarea { resize: vertical; min-height: 100px; }
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--bg-dark);
}

/* File Upload */
.file-upload-box {
    background: var(--bg-card);
    border: 2px dashed rgba(15, 23, 42, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-fast);
}
.file-upload-box:hover { border-color: var(--accent-orange); background: rgba(234, 88, 12, 0.05); }
.file-input { display: none; }
.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: pointer;
    gap: 10px;
}
.file-label i { font-size: 30px; color: var(--accent-orange); }
.file-label span { font-weight: 500; }
.file-label small { color: var(--text-secondary); }
.file-list { padding: 0 15px 15px; }

/* Checkbox */
.checkbox-container {
    display: block; position: relative; padding-left: 30px; margin-bottom: 5px; cursor: pointer; font-size: 14px; user-select: none; color: var(--text-secondary);
}
.checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 2px; left: 0; height: 18px; width: 18px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; }
.checkbox-container:hover input ~ .checkmark { border-color: var(--accent-orange); }
.checkbox-container input:checked ~ .checkmark { background: var(--accent-orange); border-color: var(--accent-orange); }
.checkmark:after { content: ""; position: absolute; display: none; }
.checkbox-container input:checked ~ .checkmark:after { display: block; }
.checkbox-container .checkmark:after { left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* RCA Offer styling */
.rca-card {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border-top: 4px solid #25D366;
    height: 100%;
}
.rca-icon { font-size: 50px; color: #25D366; margin-bottom: 20px; }
.rca-card p { color: var(--text-secondary); margin: 15px 0 25px;}
.rca-requirements { background: #f8fafc; padding: 20px; border-radius: 8px; margin-bottom: 25px; text-align: left; border: 1px solid var(--border-color);}
.rca-requirements h4 { margin-bottom: 10px; font-weight: 600; }
.rca-requirements ul { list-style: none;}
.rca-requirements li { margin-bottom: 5px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px;}
.disclaimer-text { color: var(--text-secondary) !important; font-size: 13px;}

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px;
    transition: var(--transition-smooth); position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent-gradient);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-10px); background: var(--bg-card-hover); border-color: rgba(234, 88, 12, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.08);}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 40px; color: var(--accent-orange); margin-bottom: 25px; }
.service-title { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.service-text { color: var(--text-secondary); font-size: 15px; }

/* Warning Alert */
.warning-alert { display: flex; gap: 20px; background: rgba(242, 107, 33, 0.1); border: 1px solid rgba(242, 107, 33, 0.3); padding: 20px; border-radius: 8px; align-items: center; }
.warning-alert i { font-size: 30px; color: var(--accent-orange); }
.alert-content { color: var(--text-primary); font-size: 15px; }

/* Gallery / Works */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.gallery-item { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border-color); overflow: hidden; }
.gallery-info { padding: 20px; text-align: center; font-weight: 600; font-size: 18px; }

/* Workshop Section (Atelier) */
.workshop-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.workshop-img-box { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); aspect-ratio: 4/3; }
.workshop-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-smooth); }
.workshop-img-box:hover img { transform: scale(1.05); }

/* Features List (Avantaje) */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 30px; }
.features-list li { display: flex; gap: 20px; }
.feature-icon { width: 50px; height: 50px; background: rgba(242, 107, 33, 0.1); color: var(--accent-orange); border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 20px; flex-shrink: 0; }
.feature-text h4 { font-size: 18px; margin-bottom: 5px; }
.feature-text p { color: var(--text-secondary); font-size: 15px; }

/* Guide Box */
.guide-box { display: flex; flex-direction: column; height: 100%; border-top: 4px solid var(--accent-orange); }
.guide-icon { font-size: 40px; color: var(--accent-orange); margin-bottom: 20px; }
.guide-box h3 { font-size: 24px; margin-bottom: 15px; }
.guide-box p { color: var(--text-secondary); margin-bottom: 30px; }
.guide-steps { display: flex; flex-direction: column; gap: 20px; flex-grow: 1;}
.guide-step { display: flex; gap: 15px; align-items: flex-start; }
.step-num { width: 30px; height: 30px; background: var(--bg-card); border: 1px solid var(--accent-orange); color: var(--accent-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }

/* Reviews */
.star-rating { color: #f1c40f; font-size: 14px; margin-top: 5px;}
.star-rating.big { font-size: 20px; display: flex; justify-content: center; align-items: center; gap: 10px;}
.rating-text { color: var(--text-primary); font-size: 16px; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--bg-card); padding: 30px; border-radius: 16px; border: 1px solid var(--border-color); position: relative; }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--accent-gradient); display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 700; }
.google-icon { position: absolute; top: 30px; right: 30px; font-size: 30px; color: #DB4437; opacity: 0.8;}
.review-text { color: var(--text-secondary); font-style: italic; font-size: 15px; }

/* Footer */
.footer { background: #0f172a; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-contact h3 { font-size: 24px; margin-bottom: 30px; color: white; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 15px; margin-bottom: 25px; }
.c-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; justify-content: center; align-items: center; color: var(--accent-orange); flex-shrink: 0; }
.contact-list p, .contact-list a { color: #94a3b8; text-decoration: none; margin-top: 5px;}

.map-container { width: 100%; height: 100%; min-height: 350px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; background: #0b1120;}
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; color: var(--text-secondary); font-size: 14px; }
.legal-links { display: flex; gap: 20px; }
.legal-links a { color: var(--text-secondary); text-decoration: none; transition: var(--transition-fast);}
.legal-links a:hover { color: var(--accent-orange); }

/* Modal GDPR */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    z-index: 10000; opacity: 0; visibility: hidden; transition: var(--transition-fast);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--bg-card-elevated); width: 90%; max-width: 600px;
    max-height: 80vh; overflow-y: auto; position: relative;
    transform: translateY(20px); transition: var(--transition-smooth);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 20px; font-size: 24px; cursor: pointer; color: var(--text-secondary); }
.close-modal:hover { color: var(--accent-red); }
.modal-body { margin-top: 20px; color: var(--text-secondary); }
.modal-body h3 { color: var(--text-primary); margin-bottom: 10px; }

/* Animations added via JS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container, .split-content, .split-forms, .footer-grid { grid-template-columns: 1fr; }
    .hero-container { text-align: center; }
    .hero-cta { justify-content: center; }
    .split-text.text-left { text-align: center !important; }
    .check-list { max-width: max-content; margin-left: auto; margin-right: auto; }
    .ba-container { width: 100%; max-width: 600px; margin: 0 auto;}
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0;}
    .footer-bottom-flex { flex-direction: column; gap: 15px; }
}

@media (max-width: 768px) {
    /* Layout Reset/Compact Mobile */
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 35px; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 35px; }
    .hero-content { padding: 30px 20px; }
    .hero-cta { gap: 15px; }
    
    .btn-large { padding: 14px 24px; font-size: 16px; width: 100%; text-align: center; justify-content: center; }
    .btn-secondary, .btn-outline-light { width: 100%; padding: 12px 20px; justify-content: center; text-align: center; }
    
    .process-card, .service-card, .step-card { padding: 20px 15px; }
    .service-icon, .step-icon { font-size: 30px; margin-bottom: 15px; }
    .process-card i { font-size: 24px !important; margin-bottom: 10px !important; }
    .process-card h4, .service-title { font-size: 17px !important; margin-bottom: 8px !important; }
    .process-card p, .service-text, .step-text { font-size: 14px !important; line-height: 1.4 !important; }
    .process-grid, .services-grid, .gallery-grid { gap: 15px; }
    .split-content { gap: 30px; }
    .form-container, .guide-box, .rca-card, .review-card { padding: 25px 20px; }
    
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        align-items: flex-start;
        gap: 10px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a:not(.btn-primary-outline) {
        color: var(--text-primary) !important;
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links .btn-primary-outline {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 500px) {
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta a { width: 100%; justify-content: center; }
}
