/* Quick Repairing - Main Stylesheet */
/* Color Palette: #06081a (primary dark), #1e88e5 (accent blue), #fff (white) */

:root {
  --primary: #06081a;
  --accent: #1e88e5;
  --accent-hover: #1565c0;
  --accent-light: #e3f2fd;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e9ecef;
  --gray-400: #9aa5b4;
  --gray-600: #4a5568;
  --gray-800: #1a202c;
  --green: #25D366;
  --green-dark: #128C7E;
  --yellow: #ffc107;
  --red: #e53935;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar span, .topbar a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.topbar a:hover { color: #fff; }
.topbar .fa-whatsapp { color: var(--green); }
.wa-link { color: var(--green) !important; font-weight: 600; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 20px; max-width: 1200px; margin: 0 auto; }

.brand-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--primary); }
.logo-icon { font-size: 26px; }
.logo-text { color: var(--primary); letter-spacing: -0.5px; }
.logo-text span { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { padding: 8px 12px; border-radius: var(--radius-sm); font-weight: 500; font-size: 15px; color: var(--gray-800); transition: var(--transition); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-light); }
.nav-links .fa-chevron-down { font-size: 11px; transition: var(--transition); }

.has-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition); z-index: 100;
  padding: 8px; border: 1px solid var(--gray-200);
}
.dropdown-menu.locations-menu { min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-600); }
.dropdown-menu a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown-menu a span { font-size: 18px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,136,229,0.35); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-whatsapp { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-whatsapp:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-call { background: var(--accent); color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1236 50%, #1a1a4e 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::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.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,136,229,0.2); border: 1px solid rgba(30,136,229,0.4); color: #90caf9; padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 30px; line-height: 1.7; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-feature { display: flex; align-items: center; gap: 7px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-feature i { color: #4caf50; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.hero-form-card h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.hero-form-card p { color: var(--gray-600); font-size: 14px; margin-bottom: 20px; }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font);
  color: var(--gray-800); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== SECTION STYLES ===== */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .badge { display: inline-block; background: var(--accent-light); color: var(--accent); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.25; }
.section-header p { font-size: 17px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-header h2 span { color: var(--accent); }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 28px 24px;
  transition: var(--transition); cursor: pointer;
  text-align: center; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.service-price { font-size: 13px; color: var(--accent); font-weight: 600; background: var(--accent-light); padding: 5px 12px; border-radius: 50px; display: inline-block; }

/* ===== HOW IT WORKS ===== */
.hiw-bg { background: var(--gray-50); }
.hiw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.hiw-step { text-align: center; padding: 30px 20px; }
.hiw-num { width: 60px; height: 60px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 16px; }
.hiw-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.hiw-step p { color: var(--gray-600); font-size: 14px; }

/* ===== STATS ===== */
.stats-section { background: var(--primary); color: var(--white); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.stat-item { text-align: center; }
.stat-num { font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }

/* ===== BRANDS ===== */
.brands-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.brand-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 50px; padding: 10px 20px; font-size: 14px;
  font-weight: 600; color: var(--gray-800); cursor: pointer; transition: var(--transition);
}
.brand-chip:hover, .brand-chip a:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.03); }
.brand-chip a { color: inherit; text-decoration: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 20px; font-size: 60px; color: var(--accent-light); font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { color: var(--yellow); margin-bottom: 12px; font-size: 15px; }
.testimonial-text { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--primary); }
.testimonial-loc { font-size: 13px; color: var(--gray-400); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 18px 20px; background: var(--white); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--primary); transition: var(--transition); }
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--accent); color: var(--white); }
.faq-question i { font-size: 14px; transition: var(--transition); flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 18px 20px; background: var(--gray-50); color: var(--gray-600); font-size: 15px; line-height: 1.7; border-top: 1px solid var(--gray-200); }
.faq-answer.open { display: block; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-author .review-name { font-weight: 700; color: var(--primary); }
.review-author .review-date { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.review-stars { color: var(--yellow); font-size: 14px; }
.review-text { color: var(--gray-600); font-size: 14px; line-height: 1.6; }

/* ===== REVIEW FORM ===== */
.review-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px; max-width: 600px; margin: 40px auto 0; }
.review-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.rating-stars { display: flex; gap: 8px; margin: 14px 0; }
.rating-stars input { display: none; }
.rating-stars label { font-size: 26px; color: var(--gray-200); cursor: pointer; transition: var(--transition); }
.rating-stars input:checked ~ label, .rating-stars label:hover, .rating-stars label:hover ~ label { color: var(--yellow); }
.rating-stars { flex-direction: row-reverse; justify-content: flex-end; }

/* ===== RELATED SEARCHES ===== */
.related-searches { background: var(--gray-50); border-radius: var(--radius); padding: 24px; margin: 30px 0; }
.related-searches h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.search-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.search-tab { padding: 7px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--gray-600); }
.search-tab.active, .search-tab:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tag { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; font-size: 13px; color: var(--gray-600); cursor: pointer; transition: var(--transition); }
.search-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ===== LOCATION GRID ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.location-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--gray-700); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.location-card:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }
.location-card i { font-size: 12px; color: var(--accent); }

/* ===== BREADCRUMB FIXED ===== */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  list-style: none;   /* 🔥 IMPORTANT */
  padding: 0;         /* 🔥 IMPORTANT */
  margin: 0;          /* 🔥 IMPORTANT */
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.breadcrumb-list .sep {
  color: var(--gray-400);
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { width: 100%; height: 200px; object-fit: cover; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 48px; }
.blog-body { padding: 22px; }
.blog-cat { font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-excerpt { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; align-items: center; font-size: 12px; color: var(--gray-400); }
.blog-meta i { color: var(--accent); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--accent) 0%, #1565c0 100%); color: var(--white); text-align: center; padding: 70px 0; }
.cta-content h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 17px; opacity: 0.9; margin-bottom: 30px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer-desc { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item i { color: var(--accent); width: 16px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 15px; transition: var(--transition); }
.social-links a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-heading { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; align-items: center; gap: 7px; }
.footer-links li a i { font-size: 11px; color: var(--accent); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-areas { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-areas strong { color: rgba(255,255,255,0.8); margin-right: 4px; }
.footer-areas a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-areas a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--transition); }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.35); }
.float-call { background: var(--accent); color: var(--white); }
.float-wa { background: var(--green); color: var(--white); }

/* ===== SERVICE DETAIL PAGE ===== */
.service-hero { background: linear-gradient(135deg, var(--primary) 0%, #0d1236 100%); color: var(--white); padding: 60px 0; }
.service-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.service-hero-text .rating-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,193,7,0.15); border: 1px solid rgba(255,193,7,0.3); padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; font-size: 14px; }
.service-hero-text .rating-badge .stars { color: var(--yellow); }
.service-hero h1 { font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.service-hero p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); padding: 7px 14px; border-radius: 50px; font-size: 13px; }
.hero-chip i { color: #4caf50; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Content Area */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 90px; }

/* Sidebar Card */
.sidebar-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 26px; box-shadow: var(--shadow); margin-bottom: 20px; }
.sidebar-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 16px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.price-item:last-child { border: none; }
.price-item .service-name { color: var(--gray-700); }
.price-item .price-val { font-weight: 700; color: var(--accent); }

/* Services List */
.services-list { display: flex; flex-direction: column; gap: 16px; }
.service-list-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 20px; display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.service-list-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.sli-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 20px; flex-shrink: 0; }
.sli-content h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.sli-content p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.sli-price { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 6px; }

/* Alert Boxes */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid var(--red); }
.alert-info { background: var(--accent-light); color: var(--accent-hover); border-left: 4px solid var(--accent); }

/* Page Hero (static pages) */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #0d1236 100%); color: var(--white); padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 17px; opacity: 0.8; max-width: 600px; margin: 0 auto; }

/* Content sections */
.content-section { padding: 60px 0; }
.prose h2 { font-size: 26px; font-weight: 700; color: var(--primary); margin: 32px 0 14px; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.prose p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; color: var(--gray-600); }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; } /* Hide on small screens */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 16px; box-shadow: var(--shadow-md);
    flex-direction: column; gap: 8px; border-top: 1px solid var(--gray-200); z-index: 200;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-links a { border-radius: var(--radius-sm); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); margin-top: 4px; }
  .dropdown-menu.locations-menu { grid-template-columns: 1fr 1fr; }
  .has-dropdown .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: grid; }
  .nav-cta { flex-wrap: wrap; justify-content: center; padding-top: 10px; border-top: 1px solid var(--gray-200); width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
