/* ===== SIZAT Solution — Global Styles ===== */

:root {
  --navy: #0F2A4D;
  --blue: #0B4DA2;
  --blue-dark: #093D82;
  --text-gray: #8A95A3;
  --bg-light-blue: #F1F7FD;
  --bg-light-purple: #F5F3FF;
  --bg-light-mint: #F0FDF4;
  --bg-offwhite: #F7F9FC;
  --white: #FFFFFF;
  --border-light: #E6ECF2;
  --green: #2FB35A;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: 44px; }
h2 { font-size: 34px; }
h3 { font-size: 20px; }

p { color: var(--text-gray); }

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section {
  padding: 80px 0;
}

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

.section-header p { margin-top: 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

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

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: #279a4c; transform: translateY(-1px); }
.btn-white:hover { background: var(--bg-offwhite); }

/* ===== Header ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar .top-right { display: flex; gap: 24px; align-items: center; }
.top-bar .top-right span { display: flex; align-items: center; gap: 6px; }
.top-bar .badge {
  background: rgba(255,255,255,0.12);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.top-bar .lang-switch { font-size: 12px; cursor: pointer; }
.top-bar .lang-switch i:last-child { font-size: 9px; margin-left: 2px; }

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 1px 0 var(--border-light);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}
.logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  flex-shrink: 0;
}
.logo .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo .logo-text small {
  font-size: 9px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-gray); text-transform: uppercase;
}
.footer-brand .logo .logo-text small { color: rgba(255,255,255,0.5); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active,
.main-nav a:hover { color: var(--blue); }
.main-nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blue); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-light);
  color: var(--navy);
}
.nav-toggle { display: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 13px;
}
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col .contact-item { display: flex; gap: 10px; margin-bottom: 16px; font-size: 13px; align-items: flex-start; }
.footer-col .contact-item i { color: var(--white); opacity: 0.7; margin-top: 3px; width: 14px; }
.footer-col .contact-item strong { display: block; color: var(--white); font-size: 13px; margin-bottom: 2px; }
.footer-col .contact-item span { color: rgba(255,255,255,0.55); }

.newsletter-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  margin: 40px 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-card h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.newsletter-card p { font-size: 13px; color: rgba(255,255,255,0.55); }
.newsletter { display: flex; gap: 10px; }
.newsletter input {
  width: 240px; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
  font-family: inherit; font-size: 14px; color: var(--white);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button {
  background: var(--blue); color: #fff; padding: 0 22px;
  border-radius: 8px; font-weight: 600; font-size: 14px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom .legal-links { display: flex; gap: 24px; }

/* ===== Utility placeholder blocks (stand-ins for real photography) ===== */
.ph {
  background: linear-gradient(135deg, var(--bg-light-blue), #dfeaf7);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.ph::before {
  content: '\1F4F7';
  font-size: 28px;
  opacity: 0.5;
}
.ph span {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  font-size: 11px; color: var(--blue); opacity: 0.8;
}

/* ===== Hero ===== */
.hero {
  background: var(--bg-light-blue);
  padding: 56px 0 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.hero-content .eyebrow { display: flex; align-items: center; gap: 8px; }
.hero-content h1 { margin-bottom: 18px; }
.hero-content h1 .accent { color: var(--blue); }
.hero-content p { font-size: 16px; max-width: 460px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 18px; }
.hero-trust-line { font-size: 13px; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }
.hero-trust-line i { color: var(--blue); }

.hero-media { position: relative; }
.hero-media .ph { height: 380px; }
.hero-media img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.hero-media .deco-circle { position: absolute; border-radius: 50%; z-index: 0; }
.hero-media .deco-circle.blue { width: 70px; height: 70px; background: #B7D3F2; top: 40%; right: 6%; }
.hero-media .deco-circle.pink { width: 34px; height: 34px; background: #F3B9C4; bottom: 8%; right: 0; }

.float-card {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: 10px 14px; box-shadow: 0 10px 26px rgba(15,42,77,0.12);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--navy); z-index: 2;
  white-space: nowrap;
}
.float-card .icon { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-light-blue); color: var(--blue); display:flex;align-items:center;justify-content:center; font-size: 13px; flex-shrink:0; }
.float-card .float-sub { font-weight: 500; color: var(--text-gray); font-size: 13px; margin-left: 4px; }
.float-card.top-right .float-sub { color: var(--blue); }
.float-card.top-right { top: -16px; right: 24px; }
.float-card.bottom-left { bottom: -16px; left: -24px; }
.float-card .dot-live { width: 7px; height: 7px; border-radius: 50%; background: #33C481; display: inline-block; margin-left: 4px; }

.trust-strip { border-top: 1px solid var(--border-light); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 26px 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; color: var(--navy); }
.trust-item span { font-size: 12px; color: var(--text-gray); }

/* ===== About SIZAT split (home page) ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-split .ph { height: 320px; }
.about-split .about-img { width: 100%; height: 490px; object-fit: cover; border-radius: var(--radius); }

/* ===== Feature / offer cards ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--bg-light-blue);
  border-radius: var(--radius);
  padding: 28px;
}
.offer-card.mint { background: var(--bg-light-mint); }
.offer-card.purple2 { background: var(--bg-light-purple); }
.offer-card.purple2 .icon { color: #7B5CE0; }
.offer-card.mint .icon { color: #1a9e5c; }
.offer-card .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 18px; color: var(--blue);
}
.offer-card h3 { margin-bottom: 8px; font-size: 17px; }
.offer-card p { font-size: 14px; margin-bottom: 14px; }
.offer-card a { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ===== Specialties ===== */
.specialty-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.specialty-filters button {
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border-light); color: var(--text-gray);
}
.specialty-filters button.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.specialty-card {
  background: var(--white);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 26px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.specialty-card .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-light-blue); display:flex;align-items:center;justify-content:center; margin-bottom: 14px; color: var(--blue); font-size: 18px; }
.specialty-card.pink .icon { background: #FCE4E9; color: #D6567A; }
.specialty-card.mint .icon { background: var(--bg-light-mint); color: #1a9e5c; }
.specialty-card.purple .icon { background: var(--bg-light-purple); color: #7B5CE0; }
.specialty-card.peach .icon { background: #FCEEDD; color: #E0942E; }
.specialty-card h3 { font-size: 15px; margin-bottom: 4px; }
.specialty-card p { font-size: 13px; }

/* ===== How it works ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--bg-offwhite); border-radius: var(--radius); padding: 26px; position: relative; }
.step-card .num { font-size: 34px; font-weight: 800; color: rgba(11,77,162,0.15); margin-bottom: 10px; }
.step-card .icon-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; margin-bottom: 14px; }
.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13px; }
.steps-grid { position: relative; }
.step-card::after {
  content: ''; position: absolute; top: 40px; right: -28px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--blue);
}
.step-card:last-child::after { display: none; }

/* ===== Priority split section ===== */
.priority-section { background: var(--bg-light-blue); }
.priority-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.priority-content .eyebrow { }
.priority-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.priority-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--white); padding: 7px 16px; border-radius: 12px; }
.priority-list .check { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.priority-media .ph { height: 520px; }
.priority-media img { height: 520px; width: 100%; object-fit: cover; display: block; border-radius: var(--radius); }
.priority-media .stat-card {
  position: absolute; bottom: 16px; left: 16px; right: 16px; background: var(--white);
  border-radius: 14px; padding: 14px 18px; box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.priority-media { position: relative; }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { border: 1.5px solid var(--border-light); border-radius: var(--radius); padding: 26px; }
.testimonial-card .stars { color: #F5A623; font-size: 13px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--navy); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-light-purple); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue); font-size: 14px; }
.testimonial-author strong { font-size: 13px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--text-gray); }

/* ===== Insights ===== */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 8px 24px rgba(15,42,77,0.06); }
.insight-card .ph { height: 160px; border-radius: 0; }
.insight-card img { height: 160px; width: 100%; object-fit: cover; border-radius: 0; }
.insight-card .body { padding: 22px; }
.insight-card .insight-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.insight-card .tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--blue); background: var(--bg-light-blue); padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; }
.insight-card .tag.tag-red { color: #C0392B; background: #FDECEA; }
.insight-card .meta-date { font-size: 12px; color: var(--text-gray); }
.insight-card h3 { font-size: 16px; margin: 0 0 10px; line-height: 1.35; }
.insight-card p { font-size: 13px; color: var(--text-gray); margin-bottom: 16px; }
.insight-card .read-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 700; }

/* ===== CTA banner ===== */
.cta-banner {
  background: radial-gradient(120% 160% at 30% 20%, var(--blue) 0%, var(--navy) 70%);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.cta-banner .btn-actions { display: flex; gap: 16px; justify-content: center; }

/* Responsive rules for every section above live at the end of this file
   (main.css) so they win the cascade regardless of where each base rule
   is declared. */

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: radial-gradient(120% 160% at 20% 0%, var(--blue) 0%, var(--navy) 65%);
  padding: 64px 0 56px;
}
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb i { font-size: 10px; margin: 0 8px; }
.page-hero h1 { color: var(--white); max-width: 640px; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 16px; }

/* ===== About page: our story split ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid .ph { height: 380px; }
.story-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }

/* ===== Service grid (Services page) ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-item {
  background: var(--bg-light-blue); border-radius: var(--radius-sm);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.service-item .icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--white);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.service-item h3 { font-size: 15px; margin-bottom: 6px; }
.service-item p { font-size: 13px; }

/* ===== Featured service split ===== */
.featured-service { background: var(--bg-light-blue); }
.featured-service .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.featured-service img { width: 100%; height: 485px; object-fit: cover; border-radius: var(--radius); }
.featured-service .checklist { margin: 20px 0 28px; }
.featured-service .checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.featured-service .checklist .check { width: 20px; height: 20px; border-radius: 50%; background: var(--bg-light-mint); color: #1a9e5c; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }

/* ===== Patient journey stepper ===== */
.journey-steps { display: flex; align-items: flex-start; justify-content: space-between; max-width: 900px; margin: 0 auto; position: relative; }
.journey-steps::before { content: ''; position: absolute; top: 15px; left: 40px; right: 40px; height: 2px; background: var(--border-light); z-index: 0; }
.journey-step { display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; z-index: 1; flex: 1; }
.journey-step .num { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.journey-step span { font-size: 12px; font-weight: 600; color: var(--navy); text-align: center; }

.journey-icons { background: var(--bg-light-blue); padding: 40px 0; }
.journey-icons .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.journey-icon-card { background: var(--white); border-radius: var(--radius-sm); padding: 20px 12px; text-align: center; }
.journey-icon-card .icon { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 15px; }
.journey-icon-card span { font-size: 12px; font-weight: 700; color: var(--navy); }

/* ===== Contact page ===== */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { border-radius: var(--radius); padding: 30px 20px; text-align: center; }
.contact-card .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 18px; }
.contact-card h3 { font-size: 15px; margin-bottom: 6px; }
.contact-card .value { display: block; color: var(--blue); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-card span.sub { font-size: 12px; color: var(--text-gray); }

.consultation-form-wrap { background: var(--bg-light-blue); }
.consultation-card { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: 0 12px 40px rgba(15,42,77,0.06); }
.consultation-card h2 { margin-bottom: 8px; }
.consultation-card > p { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--border-light);
  font-family: inherit; font-size: 14px; color: var(--navy); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.upload-box {
  border: 1.5px dashed var(--border-light); border-radius: 10px; padding: 30px; text-align: center;
  color: var(--text-gray); font-size: 13px; cursor: pointer; display: block;
}
.upload-box i { font-size: 20px; color: var(--blue); margin-bottom: 8px; display: block; }
.form-notice { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.form-notice-success { background: var(--bg-light-mint); color: #1a9e5c; }
.form-notice-error { background: #FDECEA; color: #C0392B; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 12px; color: var(--text-gray); }
.consent-row input { margin-top: 3px; }
.consent-row a { color: var(--blue); font-weight: 600; }

.office-location { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius); padding: 60px 40px; text-align: center; max-width: 800px; margin: 0 auto; }
.office-location i { font-size: 24px; color: var(--blue); margin-bottom: 12px; display: block; }
.office-location h3 { font-size: 16px; margin-bottom: 6px; }
.office-location p { font-size: 13px; }

.emergency-banner { background: #FDECEE; padding: 20px 0; }
.emergency-banner .container { display: flex; align-items: center; gap: 14px; }
.emergency-banner .icon { width: 40px; height: 40px; border-radius: 50%; background: #FBD5D9; color: #D6284A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.emergency-banner strong { display: block; color: #D6284A; font-size: 14px; }
.emergency-banner span { font-size: 13px; color: #B8324A; }

/* ===== Blog ===== */
.blog-search {
  max-width: 480px; margin: 0 auto; position: relative;
}
.blog-search i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.6); }
.blog-search input {
  width: 100%; padding: 14px 20px 14px 46px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.12);
  color: var(--white); font-family: inherit; font-size: 14px;
}
.blog-search input::placeholder { color: rgba(255,255,255,0.6); }

.featured-article {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1.5px solid var(--border-light); border-radius: var(--radius); overflow: hidden;
}
.featured-article img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.featured-article .body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-article .tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--blue); background: var(--bg-light-blue); padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; width: fit-content; }
.featured-article h2 { font-size: 24px; margin-bottom: 14px; }
.featured-article p { margin-bottom: 18px; }
.featured-article .byline { font-size: 12px; color: var(--text-gray); margin-bottom: 20px; }

.insight-card .byline { font-size: 11px; color: var(--text-gray); margin-top: 10px; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border-light); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card h3 { font-size: 15px; margin: 16px 20px 2px; }
.team-card .role { display: block; font-size: 12px; color: var(--blue); font-weight: 700; margin: 0 20px 10px; }
.team-card p { font-size: 13px; margin: 0 20px 20px; }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-weight: 600; font-size: 14px; color: var(--navy); cursor: pointer; }
.faq-q i { color: var(--blue); transition: transform 0.2s ease; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 22px 18px; font-size: 13px; color: var(--text-gray); }

/* ===== Single article content ===== */
.article-content { font-size: 15px; line-height: 1.8; }
.article-content p { margin-bottom: 18px; color: var(--navy); }
.article-content h2 { font-size: 24px; margin: 32px 0 14px; }
.article-content h3 { font-size: 18px; margin: 24px 0 10px; }
.article-content ul, .article-content ol { margin: 0 0 18px 22px; list-style: revert; color: var(--navy); }
.article-content img { border-radius: var(--radius); margin: 20px 0; }
.article-content a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ============================================================
   ===== Responsive (kept last so it wins the cascade) =====
   ============================================================ */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .offer-grid, .specialty-grid, .steps-grid, .testimonial-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container, .priority-section .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-top: 8px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .float-card.bottom-left { left: 6%; }
  .about-split, .story-grid { grid-template-columns: 1fr; }
  .about-split .about-img, .about-split .ph { height: 340px; }
  .story-img, .story-grid .ph { height: 320px; }
  .featured-service .container { grid-template-columns: 1fr; }
  .featured-service img { height: 340px; }
  .journey-icons .container { grid-template-columns: repeat(3, 1fr); }
  .mission-grid, .approach-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 24px 16px; box-shadow: 0 12px 24px rgba(15,42,77,0.1);
    max-height: 70vh; overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .section { padding: 56px 0; }
  .top-bar .top-links { display: none; }
  .top-bar .top-right { gap: 14px; font-size: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; align-items: flex-start; }
  .top-bar .top-right span:not(.badge):not(.lang-switch) { display: none; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .journey-icons .container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .offer-grid, .specialty-grid, .steps-grid, .testimonial-grid, .insight-grid,
  .priority-list, .trust-strip .container, .service-grid, .featured-article,
  .mission-grid, .approach-grid, .team-grid, .contact-layout, .form-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; margin: 0 16px; }
  .hero-actions, .cta-banner .btn-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-banner .btn { justify-content: center; }
  .float-card { font-size: 11px; padding: 8px 10px; max-width: calc(100% - 24px); }
  .float-card.bottom-left { left: 2%; bottom: -12px; }
  .float-card.top-right { right: 2%; top: -12px; }
  .newsletter { flex-direction: column; width: 100%; }
  .newsletter input { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .priority-section .container { gap: 32px; }
  .priority-media .ph, .priority-media img { height: 260px; }
  .hero-media .ph, .hero-media img { height: 260px; }
  .about-split .about-img, .about-split .ph { height: 240px; }
  .story-img, .story-grid .ph { height: 240px; }
  .featured-service img { height: 240px; }
  .insight-grid { grid-template-columns: 1fr !important; }
  .consultation-card { padding: 28px 20px; }
  .journey-icons .container { grid-template-columns: repeat(2, 1fr) !important; }
  .journey-steps { flex-direction: column; align-items: flex-start; gap: 16px; }
  .journey-steps::before { display: none; }
  .journey-step { flex-direction: row; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .featured-article img { min-height: 220px; }
  .team-card img { height: 200px; }
}

@media (max-width: 420px) {
  .contact-cards { grid-template-columns: 1fr; }
}
