/* =========================================
   Remote Computer Repair - Main Stylesheet
   ========================================= */

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2338;
  --primary-light: #2563a8;
  --accent: #00b4d8;
  --accent-light: #90e0ef;
  --accent-hover: #0096c7;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
}

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

h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.1rem; }
a { color: var(--accent-hover); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

/* ---- NAVIGATION ---- */
.navbar-rcr {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,58,92,0.09);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar-rcr.scrolled {
  box-shadow: 0 3px 20px rgba(26,58,92,0.16);
}

.navbar-brand-rcr {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 0.03em;
}

.nav-link-rcr {
  color: var(--gray-700) !important;
  font-weight: 500;
  padding: 0.45rem 0.85rem !important;
  border-radius: 6px;
  transition: all var(--transition);
  font-size: 0.96rem;
}

.nav-link-rcr:hover,
.nav-link-rcr.active {
  color: var(--primary) !important;
  background: rgba(26,58,92,0.06);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 7px !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero-bg-shape {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,180,216,0.12);
}

.hero-circle-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: -50px; left: 100px; background: rgba(0,180,216,0.08); }
.hero-circle-3 { width: 180px; height: 180px; top: 40%; right: 30%; background: rgba(255,255,255,0.04); }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,180,216,0.18);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.3rem;
  letter-spacing: 0.04em;
}

.hero-title {
  color: white;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

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

.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-rcr {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 0.78rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-rcr:hover {
  background: #00c9f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.38);
  color: var(--primary-dark);
}

.btn-outline-rcr {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.72rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-rcr:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  color: white;
}

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

.hero-img-main {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 520px;
  display: block;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  animation: float 3.5s ease-in-out infinite;
}

.hero-float-card.card-1 { bottom: 15%; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 10%; right: -20px; animation-delay: 1.2s; }

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-float-icon.green { background: #e8f8f0; color: #22c55e; }
.hero-float-icon.blue { background: #e8f4ff; color: var(--accent-hover); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-hover);
  font-size: 1.05rem;
}

/* ---- SECTION STYLES ---- */
.section-rcr {
  padding: 80px 0;
}

.section-rcr.bg-light-rcr {
  background: var(--gray-100);
}

.section-rcr.bg-dark-rcr {
  background: var(--primary-dark);
  color: white;
}

.section-rcr.bg-dark-rcr h2,
.section-rcr.bg-dark-rcr h3,
.section-rcr.bg-dark-rcr h4 {
  color: white;
}

.section-badge {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

.section-title {
  margin-bottom: 0.7rem;
}

.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 580px;
}

.divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-wave svg { display: block; }

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

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,180,216,0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,58,92,0.09), rgba(0,180,216,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.1rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.service-card h3 {
  font-size: 1.13rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.service-link {
  color: var(--accent-hover);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 9px; }

/* ---- STATS ---- */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}

.testimonial-text {
  color: var(--gray-700);
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
  padding-top: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.2;
}

.testimonial-location {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

/* ---- TEAM ---- */
.team-card {
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.1rem;
  display: block;
  border: 3px solid var(--accent-light);
}

.team-name {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.team-role {
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.team-bio {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---- KNOWLEDGE / ARTICLES ---- */
.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

.article-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

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

.article-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-hover);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.article-excerpt {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  background: white;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover { background: var(--gray-100); }

.faq-question.open {
  background: rgba(26,58,92,0.04);
  color: var(--primary-light);
}

.faq-icon {
  transition: transform var(--transition);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
  background: white;
  padding: 0 1.4rem;
  color: var(--gray-700);
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 400px;
  padding: 1rem 1.4rem 1.2rem;
}

/* ---- QUIZ ---- */
.quiz-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}

.quiz-progress {
  height: 5px;
  background: var(--gray-200);
  border-radius: 10px;
  margin-bottom: 1.8rem;
  overflow: hidden;
}

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

.quiz-question {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.3rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.quiz-option {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-700);
  font-size: 0.97rem;
  text-align: left;
  background: white;
}

.quiz-option:hover { border-color: var(--accent); color: var(--primary); background: rgba(0,180,216,0.04); }
.quiz-option.selected { border-color: var(--primary); background: rgba(26,58,92,0.06); color: var(--primary); font-weight: 600; }

.quiz-result {
  text-align: center;
  padding: 1.5rem 0;
}

.quiz-result-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.quiz-result h3 { margin-bottom: 0.6rem; }

.quiz-result p { color: var(--gray-500); }

/* ---- CONTACT FORM ---- */
.form-group-rcr {
  margin-bottom: 1.3rem;
}

.form-label-rcr {
  display: block;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.form-control-rcr {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--gray-900);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control-rcr:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}

.form-control-rcr.error {
  border-color: #dc3545;
}

.form-error-msg {
  color: #dc3545;
  font-size: 0.82rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error-msg.visible { display: block; }

/* ---- FOOTER ---- */
.footer-rcr {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-brand-name {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 290px;
}

.footer-heading {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.3rem 0;
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 1.1rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

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

.cookie-text { font-size: 0.92rem; }
.cookie-text a { color: var(--accent-light); }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.btn-cookie-accept {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.btn-cookie-accept:hover { background: #00c9f0; }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header h1 { color: white; margin-bottom: 0.6rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0; }

.breadcrumb-rcr {
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
}

.breadcrumb-rcr a { color: rgba(255,255,255,0.6); }
.breadcrumb-rcr a:hover { color: var(--accent-light); }
.breadcrumb-rcr span { color: rgba(255,255,255,0.45); margin: 0 6px; }
.breadcrumb-rcr .current { color: rgba(255,255,255,0.9); }

/* ---- ARTICLE / BLOG ---- */
.article-content h2 { font-size: 1.6rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.article-content h3 { font-size: 1.25rem; margin-top: 1.6rem; margin-bottom: 0.6rem; }
.article-content p { margin-bottom: 1.2rem; line-height: 1.78; }
.article-content ul, .article-content ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.45rem; line-height: 1.65; }
.article-content img { border-radius: var(--radius); margin: 1.5rem 0; width: 100%; }
.article-content blockquote {
  border-left: 4px solid var(--accent);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(0,180,216,0.05);
  border-radius: 0 8px 8px 0;
  color: var(--gray-700);
  font-style: italic;
}

.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent-light);
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-hover);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.timeline-content h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.timeline-content p { color: var(--gray-500); font-size: 0.92rem; margin: 0; }

/* ---- TROUBLESHOOTING TOOL ---- */
.symptom-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.symptom-tag {
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: all var(--transition);
  background: white;
  user-select: none;
}

.symptom-tag:hover { border-color: var(--accent); color: var(--primary); }
.symptom-tag.selected { border-color: var(--primary); background: var(--primary); color: white; }

.recommendation-box {
  background: linear-gradient(135deg, rgba(26,58,92,0.05), rgba(0,180,216,0.07));
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  min-height: 80px;
  transition: all 0.3s ease;
}

/* ---- MAPS ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---- MISCELLANEOUS ---- */
.badge-rcr {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-rcr.blue { background: rgba(26,58,92,0.1); color: var(--primary); }
.badge-rcr.cyan { background: rgba(0,180,216,0.12); color: var(--accent-hover); }

.info-box {
  background: rgba(0,180,216,0.07);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-box i { color: var(--accent-hover); margin-top: 2px; flex-shrink: 0; }

.text-accent { color: var(--accent-hover); }
.text-primary-rcr { color: var(--primary); }

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  font-size: 1rem;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 70px 0; }
  .hero-float-card { display: none; }
  .section-rcr { padding: 55px 0; }
  .hero-image-wrap { margin-top: 2.5rem; }
  .hero-img-main { max-width: 100%; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-rcr, .btn-outline-rcr { justify-content: center; }
  .quiz-box { padding: 1.4rem 1.1rem; }
}




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

html{
  overflow-x: hidden;
}

.social-links{
  display: none;
}