:root {
    --primary: #f59e0b;
    --primary-dark: #ea580c;
    --dark: #1e293b;
    --light: #fef3c7;
    --gray-bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
}

/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f3f4f6;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hero Section */
.repair-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    margin-top: 80px;
    overflow: hidden;
}

.repair-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-hero {
    padding: 12px 35px;
    background: #ea580c;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
}

/* Category Grid */
.category-section {
    padding: 60px 0;
    background: #f3f4f6;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.cat-card:hover {
    border-color: #ea580c;
    transform: scale(1.05);
}

.cat-icon {
    font-size: 2.5rem;
    color: #ea580c;
    margin-bottom: 10px;
}

/* Estimator Section */
.estimator-section {
    background: var(--dark);
    padding: 5rem 0;
    color: white;
}

.estimator-box {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.est-left {
    flex: 1.5;
    padding: 3rem;
    color: var(--dark);
}

.est-right {
    flex: 1;
    background: var(--primary);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.qty-control button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
}

.btn-book-est {
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

/* Booking Form */
.booking-section {
    padding: 80px 0;
    background: #fff;
}

.booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    flex: 1.2;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 20px;
    outline: none;
}

.urgent-toggle {
    margin: 20px 0;
    background: #fff1f2;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fecdd3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ef4444;
    font-weight: 600;
}

.btn-confirm {
    width: 100%;
    background: var(--dark);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {

    .estimator-box,
    .booking-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}