/* =============================================
   Repair My PST — Main Stylesheet
   od-style.css
   ============================================= */

:root {
  --od-primary: #1a3a5c;
  --od-primary-light: #2a5a8c;
  --od-accent: #e87722;
  --od-accent-light: #f59a4f;
  --od-dark: #0d1f33;
  --od-gray-900: #111827;
  --od-gray-800: #1f2937;
  --od-gray-700: #374151;
  --od-gray-600: #4b5563;
  --od-gray-400: #9ca3af;
  --od-gray-200: #e5e7eb;
  --od-gray-100: #f3f4f6;
  --od-white: #ffffff;
  --od-success: #10b981;
  --od-warning: #f59e0b;
  --od-danger: #ef4444;
  --od-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --od-shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --od-shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --od-shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --od-radius-sm: 6px;
  --od-radius-md: 12px;
  --od-radius-lg: 20px;
  --od-radius-xl: 32px;
  --od-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --od-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--od-white);
  color: var(--od-gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--od-gray-900);
}

.od-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.od-heading-xl { font-size: clamp(2rem, 4vw, 3.5rem); }
.od-heading-lg { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.od-heading-md { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.od-heading-sm { font-size: 1.3rem; }

.od-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--od-gray-600);
  line-height: 1.8;
}

.od-text-accent { color: var(--od-accent); }
.od-text-primary { color: var(--od-primary); }
.od-text-muted { color: var(--od-gray-400); }

/* ---- Layout Utilities ---- */
.od-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.od-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.od-section {
  padding: 96px 0;
}

.od-section-sm {
  padding: 60px 0;
}

.od-section-lg {
  padding: 128px 0;
}

/* ---- Navigation ---- */
.od-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--od-transition), box-shadow var(--od-transition), padding var(--od-transition);
  padding: 20px 0;
}

.od-nav.od-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--od-shadow-md);
  padding: 12px 0;
  backdrop-filter: blur(12px);
}

.od-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.od-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--od-primary);
  text-decoration: none;
}

.od-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--od-primary), var(--od-primary-light));
  border-radius: var(--od-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,58,92,0.3);
}

.od-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.od-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--od-gray-700);
  padding: 8px 16px;
  border-radius: var(--od-radius-sm);
  transition: color var(--od-transition), background var(--od-transition);
  text-decoration: none;
}

.od-nav-link:hover {
  color: var(--od-primary);
  background: var(--od-gray-100);
}

.od-nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--od-accent);
  color: white;
  padding: 10px 22px;
  border-radius: var(--od-radius-sm);
  transition: background var(--od-transition), transform var(--od-transition), box-shadow var(--od-transition);
  text-decoration: none;
}

.od-nav-cta:hover {
  background: var(--od-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,119,34,0.35);
  color: white;
}

.od-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--od-gray-800);
  font-size: 1.4rem;
}

.od-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: white;
  border-top: 1px solid var(--od-gray-200);
  box-shadow: var(--od-shadow-md);
}

.od-nav-mobile.od-open {
  display: flex;
}

.od-nav-mobile .od-nav-link {
  padding: 12px 16px;
  border-radius: var(--od-radius-sm);
}

/* ---- Buttons ---- */
.od-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--od-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--od-transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.od-btn-primary {
  background: var(--od-primary);
  color: white;
}

.od-btn-primary:hover {
  background: var(--od-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,0.3);
  color: white;
}

.od-btn-accent {
  background: var(--od-accent);
  color: white;
}

.od-btn-accent:hover {
  background: var(--od-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,119,34,0.35);
  color: white;
}

.od-btn-outline {
  background: transparent;
  color: var(--od-primary);
  border: 2px solid var(--od-primary);
}

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

.od-btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}

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

.od-btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.od-btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ---- Hero Section ---- */
.od-hero {
  min-height: 100vh;
  background: var(--od-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.od-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.od-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,51,0.95) 0%,
    rgba(26,58,92,0.85) 50%,
    rgba(13,31,51,0.75) 100%
  );
}

.od-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.od-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.od-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--od-accent), transparent);
  top: -200px; right: -100px;
  animation: od-float 8s ease-in-out infinite;
}

.od-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--od-primary-light), transparent);
  bottom: -100px; left: -100px;
  animation: od-float 12s ease-in-out infinite reverse;
}

.od-shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, white, transparent);
  top: 40%; left: 55%;
  animation: od-float 6s ease-in-out infinite;
  opacity: 0.04;
}

@keyframes od-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.od-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.od-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--od-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.od-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--od-accent);
  display: block;
}

.od-hero-title {
  color: white;
  margin-bottom: 24px;
}

.od-hero-title span {
  color: var(--od-accent);
  display: block;
}

.od-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.od-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.od-hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.od-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
}

.od-trust-item i {
  color: var(--od-success);
  font-size: 1rem;
}

/* ---- Stats Strip ---- */
.od-stats-strip {
  background: var(--od-primary);
  padding: 60px 0;
}

.od-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.od-stat-item {
  text-align: center;
  color: white;
}

.od-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--od-accent);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.od-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ---- Cards ---- */
.od-card {
  background: white;
  border-radius: var(--od-radius-lg);
  box-shadow: var(--od-shadow-md);
  overflow: hidden;
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}

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

.od-card-body { padding: 32px; }

.od-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---- Service Cards ---- */
.od-service-card {
  background: white;
  border-radius: var(--od-radius-lg);
  padding: 36px;
  border: 1px solid var(--od-gray-200);
  transition: all var(--od-transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.od-service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--od-primary), var(--od-primary-light));
  border-radius: var(--od-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform var(--od-transition);
}

.od-service-card:hover .od-service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.od-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--od-gray-900);
}

.od-service-card p {
  color: var(--od-gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---- Section Headers ---- */
.od-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--od-accent);
  margin-bottom: 12px;
}

.od-section-title {
  margin-bottom: 16px;
}

.od-section-desc {
  color: var(--od-gray-600);
  max-width: 600px;
}

.od-section-header {
  margin-bottom: 56px;
}

.od-section-header-centered {
  text-align: center;
}

.od-section-header-centered .od-section-desc {
  margin: 0 auto;
}

/* ---- Feature Grid ---- */
.od-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.od-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.od-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---- Article Cards ---- */
.od-article-card {
  background: white;
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  box-shadow: var(--od-shadow-sm);
  border: 1px solid var(--od-gray-200);
  transition: all var(--od-transition);
  display: flex;
  flex-direction: column;
}

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

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

.od-article-body {
  padding: 28px!important;
  display: flex;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.od-cta-banner{
  padding: 60px 0;
}
.od-article-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--od-accent);
  margin-bottom: 10px;
}

.od-article-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--od-gray-900);
}

.od-article-excerpt {
  color: var(--od-gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.od-article-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--od-gray-400);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

/* ---- Testimonials ---- */
.od-testimonials-section {
  background: var(--od-gray-100);
}

.od-testimonial-card {
  background: white;
  border-radius: var(--od-radius-lg);
  padding: 36px;
  box-shadow: var(--od-shadow-md);
}

.od-testimonial-quote {
  color: var(--od-primary);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.od-testimonial-text {
  color: var(--od-gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.od-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.od-author-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--od-gray-900);
}

.od-author-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--od-gray-400);
}

.od-stars {
  color: var(--od-warning);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ---- Team ---- */
.od-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.od-team-card {
  text-align: center;
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--od-shadow-sm);
  border: 1px solid var(--od-gray-200);
  transition: all var(--od-transition);
}

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

.od-team-img-wrap {
  position: relative;
  overflow: hidden;
}

.od-team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--od-transition-slow);
}

.od-team-card:hover .od-team-img {
  transform: scale(1.06);
}

.od-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,51,0.7), transparent);
  opacity: 0;
  transition: opacity var(--od-transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.od-team-card:hover .od-team-overlay {
  opacity: 1;
}

.od-team-body {
  padding: 20px;
}

.od-team-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--od-gray-900);
}

.od-team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--od-accent);
  font-weight: 600;
}

/* ---- FAQ ---- */
.od-faq-item {
  border: 1px solid var(--od-gray-200);
  border-radius: var(--od-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--od-transition);
}

.od-faq-item.od-open {
  box-shadow: var(--od-shadow-md);
}

.od-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--od-gray-900);
  transition: background var(--od-transition);
}

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

.od-faq-question i {
  color: var(--od-accent);
  transition: transform var(--od-transition);
  flex-shrink: 0;
}

.od-faq-item.od-open .od-faq-question i {
  transform: rotate(180deg);
}

.od-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--od-transition-slow);
}

.od-faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--od-gray-600);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ---- Quiz ---- */
.od-quiz-section {
  background: linear-gradient(135deg, var(--od-primary) 0%, var(--od-dark) 100%);
  padding: 80px 0;
}

.od-quiz-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--od-radius-xl);
  padding: 48px;
  backdrop-filter: blur(8px);
}

.od-quiz-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.od-quiz-subtitle {
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

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

.od-quiz-progress-bar {
  height: 100%;
  background: var(--od-accent);
  border-radius: 2px;
  transition: width var(--od-transition);
}

.od-quiz-question {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.od-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.od-quiz-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--od-radius-md);
  padding: 16px 20px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--od-transition);
  text-align: left;
  width: 100%;
}

.od-quiz-option:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--od-accent);
}

.od-quiz-option.od-selected {
  background: rgba(232,119,34,0.2);
  border-color: var(--od-accent);
  color: var(--od-accent-light);
}

.od-quiz-result {
  display: none;
  text-align: center;
}

.od-quiz-result.od-visible {
  display: block;
}

.od-quiz-result-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.od-quiz-result-title {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.od-quiz-result-text {
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---- Carousel ---- */
.od-carousel {
  position: relative;
  overflow: hidden;
}

.od-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.od-carousel-slide {
  min-width: 100%;
  padding: 0 4px;
}

.od-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.od-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--od-gray-200);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--od-primary);
  font-size: 1rem;
  transition: all var(--od-transition);
}

.od-carousel-btn:hover {
  background: var(--od-primary);
  color: white;
  border-color: var(--od-primary);
}

.od-carousel-dots {
  display: flex;
  gap: 8px;
}

.od-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--od-gray-300);
  cursor: pointer;
  transition: all var(--od-transition);
}

.od-dot.od-active {
  background: var(--od-primary);
  width: 24px;
  border-radius: 4px;
}

/* ---- Diagnostic Tool ---- */
.od-diagnostic {
  background: white;
  border-radius: var(--od-radius-xl);
  padding: 48px;
  box-shadow: var(--od-shadow-lg);
  border: 1px solid var(--od-gray-200);
  max-width: 680px;
}

.od-diagnostic-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--od-gray-900);
}

.od-diagnostic-subtitle {
  color: var(--od-gray-600);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.od-symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.od-symptom-btn {
  border: 1px solid var(--od-gray-200);
  background: var(--od-gray-100);
  border-radius: var(--od-radius-md);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--od-gray-700);
  cursor: pointer;
  transition: all var(--od-transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.od-symptom-btn:hover {
  border-color: var(--od-primary);
  color: var(--od-primary);
  background: rgba(26,58,92,0.05);
}

.od-symptom-btn.od-selected {
  border-color: var(--od-primary);
  background: rgba(26,58,92,0.1);
  color: var(--od-primary);
  font-weight: 600;
}

.od-symptom-btn i {
  font-size: 1rem;
  color: var(--od-accent);
}

.od-diagnostic-result {
  display: none;
  padding: 20px;
  border-radius: var(--od-radius-md);
  background: var(--od-gray-100);
  border-left: 4px solid var(--od-primary);
}

.od-diagnostic-result.od-visible { display: block; }

/* ---- Forms ---- */
.od-form-group {
  margin-bottom: 24px;
}

.od-form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--od-gray-700);
  margin-bottom: 8px;
}

.od-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--od-gray-200);
  border-radius: var(--od-radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--od-gray-800);
  background: white;
  transition: border-color var(--od-transition), box-shadow var(--od-transition);
  outline: none;
}

.od-form-control:focus {
  border-color: var(--od-primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

.od-form-control.od-error {
  border-color: var(--od-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

textarea.od-form-control {
  resize: vertical;
  min-height: 140px;
}

.od-field-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--od-danger);
  margin-top: 6px;
  display: none;
}

.od-field-error.od-visible { display: block; }

/* ---- SVG Dividers ---- */
.od-divider-svg {
  display: block;
  line-height: 0;
  margin: 0;
}

/* ---- Badge ---- */
.od-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(232,119,34,0.12);
  color: var(--od-accent);
}

.od-badge-primary {
  background: rgba(26,58,92,0.1);
  color: var(--od-primary);
}

.od-badge-success {
  background: rgba(16,185,129,0.1);
  color: var(--od-success);
}

/* ---- CTA Banner ---- */
.od-cta-banner {
  background: linear-gradient(135deg, var(--od-primary) 0%, var(--od-primary-light) 60%, var(--od-dark) 100%);
  position: relative;
  overflow: hidden;
}

.od-cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.od-cta-title {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.od-cta-text {
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

/* ---- Modal ---- */
.od-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--od-transition);
  backdrop-filter: blur(4px);
}

.od-modal-overlay.od-open {
  opacity: 1;
  visibility: visible;
}

.od-modal {
  background: white;
  border-radius: var(--od-radius-xl);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--od-shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--od-transition);
}

.od-modal-overlay.od-open .od-modal {
  transform: translateY(0) scale(1);
}

.od-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--od-gray-400);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: color var(--od-transition), background var(--od-transition);
}

.od-modal-close:hover {
  color: var(--od-gray-800);
  background: var(--od-gray-100);
}

/* ---- Cookie Banner ---- */
.od-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--od-dark);
  color: white;
  z-index: 8000;
  padding: 24px;
  transform: translateY(100%);
  transition: transform var(--od-transition-slow);
}

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

.od-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.od-cookie-text {
  flex: 1;
  min-width: 280px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.od-cookie-text a {
  color: var(--od-accent-light);
  text-decoration: underline;
}

.od-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.od-footer {
  background: var(--od-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.od-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 64px;
}

.od-footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.od-footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.od-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.od-footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--od-transition);
}

.od-footer-link:hover {
  color: white;
}

.od-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

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

.od-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
}

.od-footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.od-footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--od-transition);
}

.od-footer-legal-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ---- Breadcrumb ---- */
.od-breadcrumb {
  background: var(--od-gray-100);
  padding: 12px 0;
}

.od-breadcrumb-inner {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--od-gray-600);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.od-breadcrumb-inner a {
  color: var(--od-primary);
  text-decoration: none;
}

.od-breadcrumb-inner a:hover { text-decoration: underline; }

/* ---- Page Heroes ---- */
.od-page-hero {
  background: linear-gradient(135deg, var(--od-primary) 0%, var(--od-dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.od-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.od-page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.od-page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
}

/* ---- Two-Column Layout ---- */
.od-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.od-two-col-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--od-radius-xl);
  box-shadow: var(--od-shadow-xl);
}

/* ---- Feature List ---- */
.od-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.od-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.od-feature-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.od-feature-item p {
  color: var(--od-gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Legal Pages ---- */
.od-legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.od-legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--od-gray-900);
  padding-top: 16px;
  border-top: 1px solid var(--od-gray-200);
}

.od-legal-content h2:first-of-type {
  margin-top: 24px;
  border-top: none;
}

.od-legal-content p {
  color: var(--od-gray-700);
  margin-bottom: 16px;
  line-height: 1.8;
}

.od-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.od-legal-content ul li {
  color: var(--od-gray-700);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ---- Article Page ---- */
.od-article-hero {
  background: var(--od-gray-100);
  padding: 140px 0 60px;
}

.od-article-content {
  max-width: 780px;
  margin: 0 auto;
}

.od-article-content h2 {
  font-size: 1.7rem;
  margin: 48px 0 16px;
  color: var(--od-gray-900);
}

.od-article-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.od-article-content p {
  color: var(--od-gray-700);
  margin-bottom: 20px;
  line-height: 1.85;
}

.od-article-content ul, .od-article-content ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

.od-article-content ul { list-style: disc; }
.od-article-content ol { list-style: decimal; }

.od-article-content li {
  color: var(--od-gray-700);
  margin-bottom: 10px;
  line-height: 1.7;
}

.od-article-content img {
  border-radius: var(--od-radius-lg);
  box-shadow: var(--od-shadow-md);
  margin: 32px 0;
  width: 100%;
}

.od-article-content blockquote {
  border-left: 4px solid var(--od-accent);
  padding: 16px 24px;
  background: var(--od-gray-100);
  border-radius: 0 var(--od-radius-md) var(--od-radius-md) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--od-gray-700);
}

/* ---- Animations ---- */
.od-animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.od-animate-in.od-visible {
  opacity: 1;
  transform: translateY(0);
}

.od-animate-delay-1 { transition-delay: 0.1s; }
.od-animate-delay-2 { transition-delay: 0.2s; }
.od-animate-delay-3 { transition-delay: 0.3s; }
.od-animate-delay-4 { transition-delay: 0.4s; }

/* ---- Tabs ---- */
.od-tabs {
  display: flex;
  gap: 4px;
  background: var(--od-gray-100);
  border-radius: var(--od-radius-md);
  padding: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.od-tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--od-radius-sm);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--od-gray-600);
  transition: all var(--od-transition);
}

.od-tab-btn.od-active {
  background: white;
  color: var(--od-primary);
  box-shadow: var(--od-shadow-sm);
}

.od-tab-panel { display: none; }
.od-tab-panel.od-active { display: block; }

/* ---- Highlight Box ---- */
.od-highlight-box {
  background: linear-gradient(135deg, rgba(26,58,92,0.06), rgba(232,119,34,0.06));
  border: 1px solid rgba(26,58,92,0.1);
  border-radius: var(--od-radius-lg);
  padding: 32px;
}

/* ---- Map embed ---- */
.od-map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--od-radius-lg);
  border: none;
  box-shadow: var(--od-shadow-md);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .od-features-grid { grid-template-columns: repeat(2, 1fr); }
  .od-services-grid { grid-template-columns: repeat(2, 1fr); }
  .od-articles-grid { grid-template-columns: repeat(2, 1fr); }
  .od-team-grid { grid-template-columns: repeat(2, 1fr); }
  .od-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .od-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .od-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .od-two-col { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .od-nav-links { display: none; }
  .od-nav-toggle { display: flex; }
  .od-section { padding: 64px 0; }
  .od-features-grid { grid-template-columns: 1fr; }
  .od-services-grid { grid-template-columns: 1fr; }
  .od-articles-grid { grid-template-columns: 1fr; }
  .od-team-grid { grid-template-columns: repeat(2, 1fr); }
  .od-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .od-quiz-box { padding: 28px; }
  .od-symptom-grid { grid-template-columns: 1fr; }
  .od-diagnostic { padding: 28px; }
  .od-cta-banner-inner { flex-direction: column; text-align: center; }
  .od-hero-actions { justify-content: center; }
  .od-hero-trust { justify-content: center; }
  .od-two-col-img { height: 300px; }
}

@media (max-width: 480px) {
  .od-team-grid { grid-template-columns: 1fr; }
  .od-stats-grid { grid-template-columns: 1fr; }
  .od-hero-content { padding: 100px 24px 60px; }
}

/* ---- Print ---- */
@media print {
  .od-nav, .od-cookie-banner, .od-modal-overlay { display: none !important; }
  .od-hero { min-height: auto; }
}

/* ========================================
   ARTICLE PAGES
   ======================================== */

.od-article-hero {
  background: linear-gradient(135deg, var(--od-dark) 0%, var(--od-primary) 100%);
  padding: 7rem 0 3rem;
  color: #fff;
}
.od-article-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.od-tag {
  background: var(--od-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.od-meta-sep { color: rgba(255,255,255,0.4); }
.od-article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.od-article-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 680px;
}
.od-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  margin-top: 1.5rem;
}
.od-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}
.od-article-img-wrap {
  margin-top: -1px;
  padding: 2rem 0 0;
}
.od-article-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--od-radius-lg);
  box-shadow: var(--od-shadow-lg);
}
.od-img-caption {
  font-size: 0.8rem;
  color: #718096;
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}
.od-article-body {
  padding: 3rem 0 5rem;
}
.od-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--od-dark);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}
.od-article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--od-primary);
  margin: 1.75rem 0 0.75rem;
}
.od-article-body p {
  color: #374151;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.od-article-body code {
  background: #f0f4f8;
  color: var(--od-primary);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.88em;
}
.od-article-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
.od-article-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  color: #374151;
  line-height: 1.7;
  border-bottom: 1px solid #f0f4f8;
}
.od-article-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--od-accent);
  font-weight: bold;
}
.od-article-inline-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--od-radius);
  margin: 1.5rem 0 0.5rem;
}
.od-tip-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-left: 4px solid var(--od-primary);
  border-radius: 0 var(--od-radius) var(--od-radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.od-tip-box h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--od-primary);
  margin-bottom: 0.5rem;
}
.od-tip-box p { margin-bottom: 0; color: #1e3a5f; font-size: 0.95rem; }
.od-article-cta {
  background: linear-gradient(135deg, var(--od-primary), var(--od-primary-light));
  color: #fff;
  border-radius: var(--od-radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.od-article-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.od-article-cta p { color: rgba(255,255,255,0.87); margin-bottom: 1.25rem; }

/* Sidebar */
.od-sidebar { position: sticky; top: 90px; }
.od-sidebar-widget {
  background: #fff;
  border-radius: var(--od-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--od-shadow-sm);
  border: 1px solid #e8edf2;
}
.od-sidebar-widget h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--od-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--od-accent);
}
.od-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.od-sidebar-links li { margin-bottom: 0.5rem; }
.od-sidebar-links a {
  font-size: 0.9rem;
  color: var(--od-primary);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.od-sidebar-links a:hover { color: var(--od-accent); }
.od-checklist { list-style: none; padding: 0; margin: 0; }
.od-checklist li {
  font-size: 0.9rem;
  color: #374151;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0f4f8;
}
.od-sidebar-contact { background: linear-gradient(135deg, #f0f4f8, #e8edf2); }
.od-sidebar-contact h5 { color: var(--od-dark); }
.od-sidebar-contact p { font-size: 0.88rem; color: #4a5568; margin-bottom: 1rem; }

/* ========================================
   LEGAL PAGES
   ======================================== */

.od-legal-hero {
  background: linear-gradient(135deg, var(--od-dark) 0%, var(--od-primary) 100%);
  padding: 6.5rem 0 2.5rem;
  color: #fff;
}
.od-legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.od-legal-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.od-legal-body {
  padding: 3rem 0 5rem;
}
.od-legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--od-dark);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e8edf2;
}
.od-legal-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--od-primary);
  margin: 1.5rem 0 0.5rem;
}
.od-legal-body p, .od-legal-body li {
  color: #374151;
  line-height: 1.8;
  font-size: 0.97rem;
}
.od-legal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.od-legal-body li { margin-bottom: 0.4rem; }
.od-legal-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--od-radius);
  padding: 1.25rem 1.5rem;
  color: #1e40af;
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.od-legal-contact-block {
  background: #f8fafc;
  border-radius: var(--od-radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--od-accent);
  margin-top: 1rem;
}
.od-legal-contact-block p { margin: 0; }
.od-cookie-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.od-legal-table { font-size: 0.875rem; }
.od-legal-table th { background: var(--od-primary); color: #fff; white-space: nowrap; }
.od-legal-table code { font-size: 0.8em; }


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

html{
  overflow-x: hidden;
}