/* ===========================
   BOCAPC REPAIR - MAIN STYLES
   =========================== */

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2e45;
  --navy-mid: #162437;
  --steel: #2c3e50;
  --gray-dark: #3d4f61;
  --gray-mid: #6b7c93;
  --gray-light: #c8d6e5;
  --silver: #e8eef4;
  --white: #ffffff;
  --orange: #e85d04;
  --orange-light: #fb8500;
  --orange-dark: #c44d00;
  --red-accent: #c1121f;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --border: #dde3ea;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

/* ---- NAVBAR ---- */
.navbar-bocapc {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-bocapc .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-bocapc .navbar-brand span.brand-accent {
  color: var(--orange);
}

.navbar-bocapc .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1.25rem 1rem !important;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-bocapc .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-bocapc .nav-link:hover,
.navbar-bocapc .nav-link.active {
  color: var(--white) !important;
}

.navbar-bocapc .nav-link:hover::after,
.navbar-bocapc .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-bocapc .btn-nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: var(--transition);
  font-size: 0.875rem;
}

.navbar-bocapc .btn-nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.navbar-bocapc .btn-nav-cta::after { display: none; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 0.7rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 60%, rgba(232,93,4,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.4);
  color: var(--orange-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- BUTTONS ---- */
.btn-primary-bocapc {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary-bocapc:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.35);
}

.btn-secondary-bocapc {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary-bocapc:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- SECTION STYLING ---- */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(232,93,4,0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.service-card h4 { margin-bottom: 0.75rem; font-size: 1.1rem; }

/* ---- TEAM CARDS ---- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 1.5rem;
}

.team-role {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.team-cert {
  display: inline-block;
  background: var(--silver);
  color: var(--steel);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.15rem;
}

/* ---- REVIEW CARDS ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars { color: #f4a000; font-size: 0.9rem; margin-bottom: 0.75rem; }

.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.reviewer-info { font-size: 0.8rem; color: var(--text-light); }

/* ---- ARTICLE CARDS ---- */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-card-body { padding: 1.5rem; }

.article-tag {
  display: inline-block;
  background: rgba(232,93,4,0.1);
  color: var(--orange);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ---- QUIZ STYLES ---- */
.quiz-container {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.quiz-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.quiz-option {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: block;
  width: 100%;
  text-align: left;
}

.quiz-option:hover { background: rgba(232,93,4,0.15); border-color: var(--orange); color: var(--white); }
.quiz-option.selected { background: var(--orange); border-color: var(--orange); color: var(--white); }
.quiz-option.correct { background: rgba(34,197,94,0.2); border-color: #22c55e; color: var(--white); }
.quiz-option.wrong { background: rgba(239,68,68,0.2); border-color: #ef4444; color: var(--white); }

.quiz-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.3);
  color: var(--white);
  display: none;
}

.quiz-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ---- MAINTENANCE TIMELINE ---- */
.timeline-section { background: var(--silver); }

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2rem;
  background: var(--border);
}

.timeline-item:last-child .timeline-dot::after { display: none; }

.timeline-content { padding-top: 0.5rem; }
.timeline-interval {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- SERVICE FINDER ---- */
.service-finder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.finder-step label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.finder-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.finder-select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.finder-select option { background: var(--navy); color: var(--white); }

.finder-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(232,93,4,0.12);
  border: 1px solid rgba(232,93,4,0.3);
  border-radius: var(--radius-sm);
  display: none;
}

.finder-result h5 { color: var(--orange-light); margin-bottom: 0.5rem; }
.finder-result p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }

/* ---- DARK SECTION ---- */
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--orange-light); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--orange);
  padding: 2rem 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group-bocapc { margin-bottom: 1.25rem; }

.form-label-bocapc {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control-bocapc {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.form-control-bocapc:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}

.form-control-bocapc.error { border-color: #ef4444; }
.form-error-msg { font-size: 0.8rem; color: #ef4444; margin-top: 0.25rem; display: none; }
.form-error-msg.visible { display: block; }

textarea.form-control-bocapc { resize: vertical; min-height: 130px; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner a { color: var(--orange-light); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

footer h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

footer a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

footer a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ---- BREADCRUMB ---- */
.page-header {
  background: var(--navy-mid);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/head.webp') center/cover;
  opacity: 0.08;
}

.page-header-content { position: relative; z-index: 2; }

.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }

.breadcrumb-bocapc {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-bocapc li { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb-bocapc li a { color: rgba(255,255,255,0.7); }
.breadcrumb-bocapc li a:hover { color: var(--orange-light); }
.breadcrumb-bocapc li.active { color: var(--orange-light); }
.breadcrumb-bocapc li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }

/* ---- MAP ---- */
.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---- INFO BOX ---- */
.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--silver);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange);
}

.info-box-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-box-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; }
.info-box-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* ---- PAGE CONTENT ---- */
.content-article h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-article h3 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--orange-dark); }
.content-article p { line-height: 1.8; margin-bottom: 1.25rem; }
.content-article ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.content-article ul li { margin-bottom: 0.5rem; color: var(--text-secondary); line-height: 1.7; }

.article-img-full {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  max-height: 420px;
  object-fit: cover;
}

/* ---- LEGAL PAGES ---- */
.legal-content h2 { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); font-size: 1.4rem; }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.8; font-size: 0.95rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; }

/* ---- THANK YOU ---- */
.thank-you-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.thank-you-icon {
  width: 90px;
  height: 90px;
  background: rgba(232,93,4,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--orange);
}

/* ---- REVIEW CAROUSEL ---- */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev { left: -25px; }
.carousel-control-next { right: -25px; }

/* ---- UTILITIES ---- */
.text-orange { color: var(--orange) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-silver { background: var(--silver) !important; }
.fw-800 { font-weight: 800; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- CAPTCHA ---- */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--silver);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
}

.captcha-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-mid);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.captcha-check.checked {
  background: #22c55e;
  border-color: #22c55e;
  color: var(--white);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.6rem; }
  .stats-bar .stat-number { font-size: 2rem; }
  .service-finder, .quiz-container { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.75rem; }
  .map-container { height: 260px; }
  footer { padding: 40px 0 0; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-bocapc, .btn-secondary-bocapc { justify-content: center; }
  .page-header { padding: 2rem 0 1.75rem; }
  .section-padding { padding: 60px 0; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.cookie-banner{
  display: none!important;
}