:root {
    --primary-green: #00a36c;
    --primary-dark: #008a5b;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #2b2d42;
    --text-muted: #8d99ae;
    --input-bg: #f1f3f2;
    --border-radius: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 163, 108, 0.08);
}

body { font-family: 'Poppins', sans-serif; background-color: var(--bg-light); color: var(--text-dark); }

/* Headers */
.repair-title { font-weight: 700; color: var(--text-dark); letter-spacing: -1px; }
.section-header { display: flex; align-items: center; margin-bottom: 25px; border-bottom: 1px dashed #e0e0e0; padding-bottom: 15px; }
.section-icon { width: 40px; height: 40px; background: rgba(0, 163, 108, 0.1); color: var(--primary-green); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; }

/* Main Container */
.repair-container { background: white; border-radius: 24px; box-shadow: var(--shadow-soft); padding: 40px; border-top: 5px solid var(--primary-green); }

/* Brand Cards */
.brand-card {
    background: #fff; border: 2px solid #f0f0f0; border-radius: var(--border-radius);
    padding: 20px 10px; text-align: center; cursor: pointer; transition: 0.3s;
    width: 130px; position: relative;
}
.brand-card:hover { transform: translateY(-5px); border-color: var(--primary-green); }
.brand-card.active { 
    border-color: var(--primary-green); background: #eefcf6; 
    box-shadow: 0 8px 20px rgba(0, 163, 108, 0.15); 
}
.brand-card p { font-size: 0.85rem; font-weight: 600; margin-top: 10px; color: var(--text-muted); }
.brand-card.active p { color: var(--primary-green); }

/* Problem Cards */
.problem-card {
    background: #fff; border: 2px solid #f0f0f0; border-radius: var(--border-radius);
    padding: 20px; text-align: center; transition: 0.3s; cursor: pointer; height: 100%;
}
.problem-card:hover { border-color: var(--primary-green); transform: translateY(-5px); }
.problem-card.active { border-color: var(--primary-green); background: #eefcf6; box-shadow: var(--shadow-soft); }
.problem-price { background: rgba(0, 163, 108, 0.1); color: var(--primary-green); padding: 5px 15px; border-radius: 20px; font-weight: 700; display: inline-block; margin: 10px 0; }

/* Form Elements */
.form-control-modern {
    width: 100%; padding: 12px 15px; border: 2px solid transparent; background-color: var(--input-bg);
    border-radius: 12px; transition: 0.3s;
}
.form-control-modern:focus { background-color: #fff; border-color: var(--primary-green); box-shadow: 0 0 0 4px rgba(0, 163, 108, 0.1); outline: none; }

/* Buttons */
.btn-submit-modern {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-dark));
    color: white; border: none; padding: 16px 50px; font-weight: 600; border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 163, 108, 0.3); transition: 0.3s;
}
.btn-submit-modern:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 163, 108, 0.4); }
.btn-submit-modern:disabled { background: #d1d5db; cursor: not-allowed; box-shadow: none; }
  :root {
        /* ✅ اللون الجديد */
        --primary-color: #00a36c;       /* Jade Green */
        --secondary-color: #008a5b;     /* Darker Shade for Gradient */
        --bg-color: #f8f9fa;
        --card-bg: #ffffff;
        --text-dark: #2b2d42;
        --text-light: #8d99ae;
        --border-radius: 16px;
        
        /* ✅ ظلال خضراء ناعمة */
        --shadow-soft: 0 10px 30px rgba(0, 163, 108, 0.08);
        --shadow-hover: 0 15px 35px rgba(0, 163, 108, 0.2);
        
        --input-bg: #f1f3f2; /* خلفية تميل للأخضر الرمادي الفاتح جداً */
    }

    body { font-family: 'Poppins', sans-serif; background-color: var(--bg-color); }

    /* Hero Section - Green Gradient */
    .hero-modern {
        /* تدرج أخضر فخم */
        background: linear-gradient(135deg, #00a36c 0%, #005f3f 100%);
        padding: 80px 0 120px;
        color: white;
        text-align: center;
        border-radius: 0 0 30px 30px;
        position: relative;
        margin-bottom: -100px;
    }
    .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;border-radius: 0 0 30px 30px;
}
    .hero-content {
  position: relative;
  z-index: 2;
}.breadcrumb-section {
  position: relative;
  width: 100%;
  padding: 5px 0;
  background: transparent; /* Keep it over your hero image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2); /* Subtle line */
  transform: translateY(-50%);
}.breadcrumb-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #dcdcdc;
}

.breadcrumb-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-content a:hover {
  color: #ffcc00;
}

.breadcrumb-content .divider {
  color: #aaa;
}

.breadcrumb-content .active {
  color: #aaff66; /* Slightly green/yellow tint for active item */
}
    .hero-title { font-weight: 700; font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 10px; }
    .hero-subtitle { opacity: 0.95; font-weight: 300; font-size: 1.1rem; }

    /* Main Container */
    .repair-container {
        background: var(--card-bg);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
        padding: 40px;
        position: relative;
        z-index: 10;
        border-top: 5px solid var(--primary-color); /* لمسة جمالية في الأعلى */
    }

    /* Section Headers */
    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        border-bottom: 1px dashed #e0e0e0; /* Dashed looks nice with green */
        padding-bottom: 15px;
    }
    .section-icon {
        width: 40px; height: 40px;
        background: rgba(0, 163, 108, 0.1); /* Light green bg */
        color: var(--primary-color);
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        margin-right: 15px;
        font-size: 1.2rem;
    }
    .section-title { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin: 0; }

    /* Inputs Modern */
    .form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; display: block; }
    .form-control-modern {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid transparent;
        background-color: var(--input-bg);
        border-radius: 12px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        color: var(--text-dark);
    }
    .form-control-modern:focus {
        background-color: #fff;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 163, 108, 0.1); /* Green glow */
        outline: none;
    }

    /* Brand Cards */
    .brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 15px; }
    .brand-card-modern {
        background: #fff;
        border: 2px solid #f0f0f0;
        border-radius: var(--border-radius);
        padding: 15px 10px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }
    .brand-card-modern img { width: 45px; height: 45px; object-fit: contain; margin-bottom: 8px; transition: 0.3s; }
    .brand-card-modern span { font-size: 0.8rem; font-weight: 600; color: var(--text-light); display: block; text-transform: uppercase; }
    
    .brand-card-modern:hover { transform: translateY(-5px); border-color: #babcbf; }
    .brand-card-modern.active {
        border-color: var(--primary-color);
        background: #eefcf6; /* Very light green */
        box-shadow: 0 8px 20px rgba(0, 163, 108, 0.15);
    }
    .brand-card-modern.active span { color: var(--primary-color); font-weight: 700; }
    .brand-card-modern.active img { transform: scale(1.1); }
    
    .check-icon {
        position: absolute; top: 5px; right: 5px;
        color: var(--primary-color); font-size: 14px;
        opacity: 0; transform: scale(0); transition: 0.3s;
    }
    .brand-card-modern.active .check-icon { opacity: 1; transform: scale(1); }

    /* Problem Cards */
    .problem-card {
        background: #fff;
        border: 2px solid #f0f0f0;
        border-radius: var(--border-radius);
        padding: 20px;
        text-align: center;
        height: 100%;
        transition: 0.3s;
        cursor: pointer;
        position: relative;
    }
    .problem-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
    .problem-card.active {
        border-color: var(--primary-color);
        background: linear-gradient(145deg, #ffffff, #eefcf6);
        box-shadow: var(--shadow-hover);
    }
    /* السعر بالأخضر */
    .problem-price {
        background: rgba(0, 163, 108, 0.1);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.95rem;
        display: inline-block;
        margin-top: 10px;
    }
    
    /* Submit Button */
    .btn-submit-modern {
        /* Green Gradient */
        background: linear-gradient(90deg, #00a36c 0%, #008a5b 100%);
        color: white;
        border: none;
        padding: 16px 50px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 10px 20px rgba(0, 163, 108, 0.3);
        transition: 0.3s;
        width: 100%;
        max-width: 350px;
        letter-spacing: 0.5px;
    }
    .btn-submit-modern:hover:not(:disabled) { 
        transform: translateY(-3px); 
        box-shadow: 0 15px 30px rgba(0, 163, 108, 0.4); 
        background: linear-gradient(90deg, #008a5b 0%, #00a36c 100%);
    }
    .btn-submit-modern:disabled { background: #d1d5db; cursor: not-allowed; box-shadow: none; }

    /* Choices.js Override */
    .choices__inner {
        background-color: var(--input-bg) !important;
        border: 2px solid transparent !important;
        border-radius: 12px !important;
        min-height: 48px !important;
    }
    .choices__input { background: transparent !important; }
    .choices__list--dropdown .choices__item--selectable.is-highlighted {
        background-color: var(--primary-color) !important;
    }
    
    .sticky-sidebar { position: sticky; top: 20px; }
    .brand-card-modern img, .problem-card img {
    width: 100%;
    max-width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}
 @media (max-width: 768px) {
    .hero-subtitle{font-size: .8rem;}
    .hero-title{font-size: 1.8rem;}
    .hero-modern{padding: 60px 0 120px;}
}