/* ========================================
   Transport Marfă Iași - Business Stylesheet
   Professional, Corporate, Conversion-focused
   Color: Warm Red (#C0392B) + Dark Navy
   ======================================== */

/* CSS Variables */
:root {
  --primary: #C0392B;
  --primary-dark: #A93226;
  --primary-darker: #922B21;
  --primary-light: #fdf4f3;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-mid: #334155;
  --white: #ffffff;
  --black: #0A0A0A;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --success: #16A34A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.15);
  --transition: all 0.25s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: var(--gray-400);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--primary);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--gray-300);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ========== HEADER / NAVBAR ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo img {
  height: 32px;
  width: auto;
}

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: var(--transition);
  z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  text-transform: none;
  border-bottom: none;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

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

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

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

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
  min-height: 44px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary);
  z-index: 2;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 3px solid rgba(255,255,255,0.1);
}

.hero-image .floating-card {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-image .floating-card.top-right {
  top: -16px;
  right: -16px;
}

.hero-image .floating-card.bottom-left {
  bottom: 24px;
  left: -24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card .icon-circle {
  width: 40px;
  height: 40px;
}

.icon-green {
  background: #F0FDF4;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-primary {
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card .fc-text strong {
  font-size: 0.85rem;
  display: block;
  color: var(--navy);
}

.floating-card .fc-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== SERVICES GRID ========== */
.services-section {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon.primary { background: var(--primary-light); color: var(--primary); }
.service-icon.navy { background: #EEF2FF; color: var(--navy); }
.service-icon.green { background: #F0FDF4; color: var(--success); }
.service-icon.orange { background: #FFF7ED; color: #EA580C; }
.service-icon.dark { background: var(--gray-100); color: var(--navy); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

/* ========== WHY US ========== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--navy);
  color: var(--white);
}

.testimonials-section .section-label {
  background: var(--primary);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: var(--gray-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--navy-light);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.03) 40px,
      rgba(0,0,0,0.03) 80px
    );
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-phone {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-phone a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-phone a:hover {
  text-decoration: underline;
}

.cta-phone svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(192, 57, 43, 0.15);
}

/* ========== CONTACT / FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 2px;
  line-height: 1.5;
}

.contact-info-item a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-main);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
  background: var(--gray-50);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ========== PAGE HERO (Service pages) ========== */
.page-hero {
  padding: 130px 0 60px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(192, 57, 43, 0.03) 60px,
      rgba(192, 57, 43, 0.03) 120px
    );
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* ========== SERVICE PAGE CONTENT ========== */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 40px;
  letter-spacing: -0.02em;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 14px;
}

.service-content ul {
  margin-bottom: 24px;
}

.service-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 10px;
  height: 10px;
  background: var(--primary);
}

.service-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-card {
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-left: 3px solid transparent;
  margin-bottom: 2px;
  font-weight: 500;
}

.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  border-left-color: var(--primary);
}

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border: none;
}

.sidebar-cta h3 {
  color: var(--white);
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.sidebar-cta .phone {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.sidebar-cta .phone a {
  color: var(--primary);
}

.sidebar-cta .btn {
  width: 100%;
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-300);
}

.sidebar-cta .btn:hover {
  background: var(--gray-100);
}

.sidebar-card .sidebar-schedule {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ========== ABOUT PAGE ========== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-value {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
}

.about-value h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-value p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ========== ABOUT PAGE SPECIFICS ========== */
.about-intro .section-title {
  text-align: left;
}

.about-intro p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-value .why-icon {
  flex-shrink: 0;
}

.about-stats-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.contact-section {
  padding: 80px 0;
}

/* ========== MAP SECTION ========== */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  border: 0;
  display: block;
}

/* ========== CONTACT PAGE SPECIFICS ========== */
.contact-section .section-title {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-section .section-subtitle {
  text-align: left;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form .form-intro {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.contact-form .form-disclaimer {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}

.contact-phone-big {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.contact-whatsapp-icon {
  background: #F0FDF4;
  color: #25D366;
}

/* ========== TABLE STYLES - RESPONSIVE ========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

table th {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

table td {
  border: 1px solid #ddd;
  padding: 12px;
}

table tr:nth-child(odd) {
  background-color: #ffffff;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #f0f0f0;
}

/* Mobile-responsive table wrapper */
@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
    margin: 16px 0;
  }

  table th, table td {
    padding: 8px;
  }

  /* Stack tables on mobile */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table thead {
    display: none;
  }

  table tbody, table tr, table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 16px;
    border: 1px solid #ddd;
  }

  table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #ddd;
  }

  table td:before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    font-weight: 700;
    color: var(--navy);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }

  .hero-buttons { justify-content: center; }

  .hero-stats { justify-content: center; }

  .hero-image {
    max-width: 560px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-steps::before { display: none; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .top-bar { display: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
    z-index: 999;
  }

  .nav-links.active a {
    text-align: left;
    border-bottom: none;
    padding: 12px 16px;
  }

  .nav-links.active .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    transition: opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s;
  }

  .nav-links.active .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero h1 { font-size: 2.2rem; }

  .section-title { font-size: 1.9rem; }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section .section-title {
    font-size: 1.5rem;
  }

  .contact-section .section-subtitle {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-phone-big {
    font-size: 1.1rem;
  }

  .sidebar-cta .phone {
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-hero h1 { font-size: 1.9rem; }

  .form-row { grid-template-columns: 1fr; }

  .cta-phone { font-size: 1.6rem; }
  .cta-phone svg { width: 24px; height: 24px; }

  .hero-image .floating-card { display: none; }

  .hero-stats { gap: 24px; }

  .hero-stat .number { font-size: 1.8rem; }

  .contact-form { padding: 24px; }

  .contact-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }

  .section-title { font-size: 1.6rem; }

  .hero h1 { font-size: 1.8rem; }

  .hero-buttons { flex-direction: column; }

  .btn-lg { padding: 14px 28px; font-size: 0.88rem; }

  .why-us-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 1.5rem; }

  .page-hero { padding: 110px 0 40px; }

  .hero-stat .number { font-size: 1.5rem; }

  .hero-stats { flex-wrap: wrap; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  .contact-section .section-title { font-size: 1.3rem; }

  .contact-form { padding: 16px; }

  .contact-form h3 { font-size: 1.15rem; }

  .contact-info-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .cta-phone { font-size: 1.3rem; }
  .cta-phone svg { width: 20px; height: 20px; }

  .cta-section { padding: 48px 0; }

  .page-hero p { font-size: 0.92rem; }

  .footer { padding: 48px 0 0; }

  .footer h4 { margin-bottom: 12px; }

  .footer-grid { gap: 28px; }

  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; justify-content: center; }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ========== UTILITY CLASSES ========== */
.service-content img {
  margin: 24px 0;
  width: 100%;
}

.footer-links svg,
.contact-info-item svg {
  vertical-align: -2px;
}

.footer-links span {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--gray-400);
}

/* ========== SR-ONLY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========== BLOG STYLES ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

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

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image .blog-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body,
.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.blog-card-category {
  background: var(--primary);
  color: var(--white);
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card h3 a {
  color: inherit;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-card .read-more:hover {
  gap: 8px;
}

/* Blog card as link (used in related sections) */
a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

a.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 12px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Blog Article Page */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.article-meta .category,
.article-meta .article-category {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-meta .article-date,
.article-meta .article-read {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.article-body p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 0;
}

.article-body ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 10px;
  height: 10px;
  background: var(--primary);
}

.article-body ol {
  counter-reset: article-counter;
  list-style: none;
}

.article-body ol li {
  counter-increment: article-counter;
  padding: 6px 0 6px 36px;
  position: relative;
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.article-body ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.article-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--primary-dark);
}

/* Override article-body link styles for CTA buttons */
.article-cta a.btn,
.cta-box a.btn {
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.article-cta a.btn:hover,
.cta-box a.btn:hover {
  color: var(--white) !important;
}

.article-cta a:not(.btn),
.cta-box a:not(.btn) {
  color: var(--primary) !important;
  text-decoration: underline;
}

/* Outline button in CTA box */
.article-cta .btn-outline,
.cta-box .btn-outline {
  color: var(--white) !important;
  border-color: var(--white);
}

.article-cta .btn-outline:hover,
.cta-box .btn-outline:hover {
  background: var(--white);
  color: var(--navy) !important;
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  font-style: italic;
  color: var(--gray-700);
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-cta,
.cta-box {
  background: var(--navy);
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.article-cta h3,
.cta-box h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.article-cta p,
.cta-box p {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.article-cta .btn,
.cta-box .btn {
  margin: 0 6px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.article-tags span,
.article-tags a {
  padding: 4px 14px;
  background: var(--gray-100);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: var(--transition);
}

.article-tags a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Related Articles */
.related-articles {
  background: var(--gray-50);
}

.article-content .related-articles {
  background: var(--white);
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-200);
}

.article-content .related-articles h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Related Card (inside articles) */
.related-card {
  display: block;
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  border-top-color: var(--primary);
}

.related-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.related-card:hover h4 {
  color: var(--primary);
}

.related-card .badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 8px;
}

.related-card span:not(.badge) {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Table of Contents */
.article-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  padding: 24px;
  margin-bottom: 32px;
}

.article-toc h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-toc ol {
  counter-reset: toc-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc ol li {
  counter-increment: toc-counter;
  padding: 0;
}

.article-toc ol li a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
}

.article-toc ol li a:hover {
  color: var(--primary);
}

.article-toc ol li:last-child a {
  border-bottom: none;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .article-body h2 {
    font-size: 1.3rem;
  }
  .article-cta,
  .cta-box {
    padding: 24px 16px;
  }
  .article-cta .btn,
  .cta-box .btn {
    width: 100%;
    margin: 4px 0;
  }
  .related-card {
    padding: 20px;
  }
  .article-meta {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .blog-card-body {
    padding: 16px;
  }
  .article-body h2 {
    font-size: 1.15rem;
    margin: 28px 0 12px;
  }
  .article-toc {
    padding: 16px;
  }
  .related-card {
    padding: 16px;
  }
  .related-card h4 {
    font-size: 0.92rem;
  }
  .article-cta h3,
  .cta-box h3 {
    font-size: 1.1rem;
  }
  .article-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
