/*
 * SINERGI RISK — Global Stylesheet
 * Brand colors:
 *   Blue:        #293A92  (primary brand blue, used for blue sections)
 *   Light Blue:  #25AAE1  (accent / "Call us" button)
 *   Near-white:  #fefefe
 *   Dark text:   #111827
 *   Mid text:    #374151
 *   Light text:  #6B7280
 * Font: Inter (Google Fonts)
 */

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ────────────────────────────────────────────────────────────── */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
  max-width: 1520px;
  margin: 0 auto;
}

/* Left nav */
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: center;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active { color: #293A92; }

/* Center logo */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo img {
  height: 150px;
  width: auto;
}

/* Right actions */
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-call {
  display: inline-block;
  background: transparent;
  border: 2px solid #25AAE1;
  color: #25AAE1;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-call:hover {
  background: #25AAE1;
  color: #ffffff;
}

/* Mobile hamburger */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.mobile-logo img { height: 70px; width: auto; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 12px 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  padding: 12px 24px;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: #f9fafb; color: #293A92; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 60px 24px;
  max-width: 1100px;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #293A92;
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────────────────── */
.page-hero {
  background: #293A92;
  color: #ffffff;
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.page-hero p {
  font-size: 16px;
  margin-top: 12px;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SECTIONS — White ──────────────────────────────────────────────────── */
.section-white { background: #fefefe; }
.section-white-pure { background: #ffffff; }

.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 48px 0; }

/* ─── SECTIONS — Blue ───────────────────────────────────────────────────── */
.section-blue {
  background: #293A92;
  color: #ffffff;
}

.section-blue h2,
.section-blue h3,
.section-blue p,
.section-blue li { color: #ffffff; }

/* ─── TEXT UTILITIES ─────────────────────────────────────────────────────── */
.text-center { text-align: center; }

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: #6B7280;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.section-blue .section-subtitle { color: rgba(255,255,255,0.8); }

/* ─── PEACE OF MIND SECTION ─────────────────────────────────────────────── */
.peace-section {
  background: #fefefe;
  padding: 64px 24px;
  text-align: center;
}

.peace-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.peace-section p {
  font-size: 16px;
  color: #374151;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

.btn-outline-blue {
  display: inline-block;
  border: 2px solid #293A92;
  color: #293A92;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-blue:hover {
  background: #293A92;
  color: #ffffff;
}

/* ─── FAST CLAIMS SECTION ───────────────────────────────────────────────── */
.fast-claims {
  background: #ffffff;
  padding: 64px 0;
}

.fast-claims-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fast-claims-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.fast-claims-text p {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
}

.fast-claims-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

/* ─── AFFORDABLE PROTECTION ─────────────────────────────────────────────── */
.affordable {
  background: #293A92;
  padding: 64px 24px;
  text-align: center;
}

.affordable h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.affordable p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── WHAT WE OFFER ─────────────────────────────────────────────────────── */
.offer-section {
  background: #fefefe;
  padding: 64px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.offer-card {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.offer-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.offer-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.offer-card-label {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: center;
  background: #ffffff;
}

/* Sasria logo card */
.offer-card-sasria {
  height: 180px;
  background: #ffffff;
  padding: 0;
}

.offer-card-sasria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────────────────── */
.why-section {
  background: #2B3B92;
  padding: 64px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  text-align: center;
  padding: 24px;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon svg { width: 28px; height: 28px; color: #ffffff; }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ─── INDUSTRIES ────────────────────────────────────────────────────────── */
.industries-section {
  background: #ffffff;
  padding: 64px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.industry-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.industry-card-body {
  padding: 14px;
}

.industry-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.industry-card-body p {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
}

/* ─── MISSION TEXT ──────────────────────────────────────────────────────── */
.mission-section {
  background: #ffffff;
  padding: 64px 24px;
  text-align: center;
}

.mission-section p {
  font-size: 16px;
  color: #374151;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

/* ─── RESOURCES ─────────────────────────────────────────────────────────── */
.resources-section {
  background: #293A92;
  padding: 64px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.resource-card {
  text-align: center;
  padding: 24px 16px;
}

.resource-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 170, 225, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.resource-icon svg { width: 28px; height: 28px; color: #25AAE1; }

.resource-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.resource-card a {
  color: #25AAE1;
  font-weight: 500;
}

/* ─── HEAD OFFICE ───────────────────────────────────────────────────────── */
.office-section {
  background: #ffffff;
  padding: 64px 0;
}

.office-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.office-info h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.office-info p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.6;
}

.office-info a { color: #293A92; font-weight: 500; }

.office-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 4px;
}

/* ─── GET IN TOUCH ──────────────────────────────────────────────────────── */
.contact-section {
  background: #2B3B92;
  padding: 64px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-info a { color: #25AAE1; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: #25AAE1; }

.contact-form textarea { min-height: 120px; resize: vertical; }

.captcha-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.captcha-field label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.captcha-error {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  margin: -2px 0 0;
}

.btn-send {
  display: inline-block;
  background: #25AAE1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-send:hover { background: #1a8fc0; }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: #6B7280;
  margin-top: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  transition: background 0.2s;
}

.footer-social a:hover { background: #293A92; }
.footer-social svg { width: 18px; height: 18px; }

.footer-contact-link {
  font-size: 14px;
  font-weight: 600;
  color: #293A92;
  text-decoration: underline;
  margin-left: 8px;
}

/* ─── SERVICES PAGE ─────────────────────────────────────────────────────── */
.services-hero {
  background: #293A92;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  padding: 64px 24px 80px;
  color: #ffffff;
  min-width: 60%;
  display: inline-block;
}

.services-hero-wrapper {
  background: #f9fafb;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.services-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.services-banner {
  background: #293A92;
  padding: 150px 0 64px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 33%, 100% 5%, 100% 100%, 0 100%);
}

.services-banner::after {
  display: none;
}

.services-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  text-align: center;
}

.services-banner-content h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.services-banner-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto;
}

/* Services anchor nav */
.services-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.services-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}

.services-nav a {
  display: block;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.services-nav a:hover {
  background: #f3f4f6;
  color: #293A92;
}

/* Service content sections */
.service-section {
  padding: 64px 0;
  border-bottom: 1px solid #f3f4f6;
  scroll-margin-top: 170px;
}

.sasria-section {
  scroll-margin-top: 170px;
}

.service-section:last-child { border-bottom: none; }

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

.service-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.service-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 12px;
}

.service-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.service-text ul li {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 6px;
}

.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.service-image-sasria img {
  background: #ffffff;
  object-fit: cover;
}

.services-cta {
  padding: 80px 24px;
  text-align: center;
}

.services-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.services-cta p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 560px;
}

/* Sasria section */
.sasria-section {
  padding: 64px 0;
  border-bottom: 1px solid #f3f4f6;
}

.sasria-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sasria-logo-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.sasria-logo-wrap img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ─── BLOG PAGE ─────────────────────────────────────────────────────────── */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-header h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #111827;
}

.blog-search {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.blog-search input {
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 220px;
}

.blog-search button {
  background: #293A92;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-search button svg { width: 16px; height: 16px; color: #ffffff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-body a {
  font-size: 14px;
  font-weight: 600;
  color: #293A92;
  text-decoration: underline;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.blog-pagination a,
.blog-pagination span,
.blog-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  color: #374151;
  transition: background 0.2s;
  background: #ffffff;
  cursor: pointer;
  font-family: inherit;
}

.blog-pagination a:hover,
.blog-pagination button:hover { background: #f3f4f6; }
.blog-pagination .active { background: #293A92; color: #ffffff; border-color: #293A92; }

/* Blog detail page */
.blog-detail-hero {
  background: #293A92;
  color: #ffffff;
  padding: 72px 0 78px;
  text-align: center;
}

.blog-detail-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  max-width: 1040px;
  margin: 0 auto;
}

.blog-detail-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-detail {
  padding: 72px 0 84px;
}

.blog-detail-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-detail-feature {
  margin: 0 0 48px;
}

.blog-detail-feature img,
.blog-detail-content figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-detail-content {
  max-width: 820px;
  margin: 0 auto;
}

.blog-detail-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin: 42px 0 16px;
}

.blog-detail-content h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 34px 0 14px;
}

.blog-detail-content p,
.blog-detail-content li {
  font-size: 17px;
  color: #374151;
  line-height: 1.85;
}

.blog-detail-content p {
  margin-bottom: 18px;
}

.blog-detail-content figure {
  margin: 38px 0;
}

.blog-detail-content ul,
.blog-detail-content ol {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 24px;
}

.blog-detail-content ol {
  list-style: decimal;
}

.blog-detail-content li {
  margin-bottom: 10px;
}

/* ─── FAQ PAGE ──────────────────────────────────────────────────────────── */
.faq-page {
  background: #293A92;
  min-height: calc(100vh - 182px);
  padding: 64px 0;
}

.faq-page h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 32px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ─── ABOUT US PAGE ─────────────────────────────────────────────────────── */
.about-content {
  background: #ffffff;
  padding: 64px 0;
}

.about-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  margin-top: 32px;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── CONTACT PAGE ──────────────────────────────────────────────────────── */
.contact-page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 58, 146, 0.7);
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 600px;
}

.contact-page-hero-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.contact-map-section {
  background: #ffffff;
  padding: 0;
}

.contact-map-wrapper {
  position: relative;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.contact-location-card {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 24px;
  min-width: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-location-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.contact-location-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.contact-page-form-section {
  background: #2B3B92;
  padding: 64px 0;
}

.contact-page-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-page-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-page-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-page-info a { color: #25AAE1; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-inner { display: none; }
  .mobile-header { display: flex; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-banner-content { width: 80%; }
}

@media (max-width: 768px) {
  .fast-claims-inner { grid-template-columns: 1fr; }
  .office-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-page-form-inner { grid-template-columns: 1fr; }
  .service-inner { grid-template-columns: 1fr; }
  .service-inner.reverse { direction: ltr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-location-card { position: static; transform: none; margin: 0 24px 24px; }
  .services-banner-content { width: 100%; }
  .services-banner::after { display: none; }
}

@media (max-width: 480px) {
  .offer-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* Homepage visual pass to mirror the live Sinergi Risk site */
body {
  font-family: 'Inter', Arial, sans-serif;
  color: #222222;
}

.container,
.header-inner,
.fast-claims-inner,
.office-inner,
.contact-inner,
.footer-inner {
  max-width: 1180px;
}

header {
  border-bottom: 0;
  box-shadow: 0 2px 18px rgba(17, 24, 39, 0.08);
}

.header-inner {
  min-height: 132px;
  padding: 10px 0 12px;
}

.header-logo img {
  height: 122px;
}

.header-nav {
  gap: 2px;
}

.header-nav a {
  color: #111827;
  font-size: 14px;
  padding: 8px 10px;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.header-nav a.active {
  color: #111827;
  text-decoration: underline;
}

.mobile-menu a.active {
  color: #293A92;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-call,
.btn-outline-blue,
.btn-outline-white,
.btn-send {
  border-radius: 0;
  letter-spacing: 0;
}

.btn-call {
  color: #25AAE1;
  border-color: #25AAE1;
  padding: 10px 24px;
}

.hero {
  min-height: 585px;
}

.hero-bg {
  background-position: center 45%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.44);
}

.hero-content h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero-content p {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 34px;
}

.btn-outline-white {
  min-width: 138px;
  padding: 11px 26px;
  font-weight: 600;
}

.peace-section,
.fast-claims,
.affordable,
.offer-section,
.why-section,
.industries-section,
.mission-section,
.resources-section,
.contact-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.peace-section h2,
.affordable h2,
.section-title,
.fast-claims-text h2,
.contact-info h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
}

.peace-section p,
.affordable p,
.mission-section p,
.fast-claims-text p {
  font-size: 17px;
  color: #2f3744;
  line-height: 1.85;
}

.peace-section p,
.affordable p {
  max-width: 940px;
}

.affordable,
.why-section,
.resources-section,
.contact-section {
  background: #293A92;
}

.affordable p,
.why-card p,
.resource-card p,
.contact-info p {
  color: rgba(255, 255, 255, 0.88);
}

.fast-claims-inner {
  grid-template-columns: minmax(520px, 620px) minmax(560px, 1fr);
  gap: 140px;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  margin-left: max(24px, calc((100vw - 1660px) / 2));
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.fast-claims {
  padding-bottom: 0;
  overflow: hidden;
}

.fast-claims-text {
  padding-bottom: 0;
}

.fast-claims-text h2 {
  white-space: nowrap;
}

.fast-claims-image img {
  height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

@media (max-width: 768px) {
  .fast-claims-inner {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 0 24px;
    gap: 32px;
  }
}

.offer-grid {
  gap: 28px;
}

.offer-card,
.industry-card,
.blog-card {
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(17, 24, 39, 0.08);
}

.offer-card:hover,
.industry-card:hover,
.blog-card:hover {
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14);
}

.offer-card-img,
.offer-card-sasria {
  height: 205px;
}

.offer-card-label {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #293A92;
}

.why-card {
  padding: 10px 24px;
}

.why-card h3,
.resource-card h3 {
  font-size: 18px;
}

.industries-grid {
  align-items: stretch;
}

.industry-card-img {
  height: 155px;
}

.industry-card-body {
  padding: 18px;
}

.industry-card-body h3 {
  color: #293A92;
  font-size: 16px;
}

.industry-card-body p {
  font-size: 13px;
}

.mission-section {
  background: #ffffff;
  padding-top: 52px;
}

.resources-section .section-title {
  color: #ffffff;
}

.resource-icon {
  background: rgba(255, 255, 255, 0.13);
}

.contact-inner {
  gap: 64px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  background: #ffffff;
  border-color: #ffffff;
  color: #111827;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6B7280;
}

.btn-send {
  background: #25AAE1;
  min-width: 112px;
}

.recaptcha-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.recaptcha-note a {
  color: #ffffff;
  text-decoration: underline;
}

footer {
  border-top: 0;
}

@media (max-width: 1024px) {
  .mobile-logo img { height: 76px; }
  .hero { min-height: 520px; }
}

@media (max-width: 768px) {
  .peace-section,
  .fast-claims,
  .affordable,
  .offer-section,
  .why-section,
  .industries-section,
  .mission-section,
  .resources-section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    white-space: normal;
  }

  .contact-inner {
    gap: 32px;
  }

  .fast-claims {
    padding-bottom: 0;
  }
}

/* Match the reference image for the Expertise / Coverage / Approach band */
.why-section {
  background: #293A92;
  padding: 36px 0 32px;
}

.why-section .container {
  max-width: none;
  padding: 0 24px;
}

.why-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.why-card {
  max-width: 940px;
  padding: 0;
  text-align: center;
}

.why-card h3 {
  color: #ffffff;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 22px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 900px;
}

@media (max-width: 768px) {
  .why-section {
    padding: 44px 0 40px;
  }

  .why-grid {
    gap: 30px;
  }

  .why-card h3 {
    margin-bottom: 14px;
  }

  .why-card p {
    font-size: 17px;
  }
}

/* Match the reference image for Industries We Serve and mission copy */
.industries-section {
  background: #ffffff;
  padding: 74px 0 34px;
}

.industries-section .container,
.mission-section .container {
  max-width: 1180px;
}

.industries-section .section-title {
  color: #111827;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 600;
  margin-bottom: 24px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 62px 88px;
  align-items: start;
  margin-top: 0;
}

.industry-card {
  grid-column: span 2;
  border: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  text-align: center;
}

.industry-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.industry-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.industry-card:hover {
  box-shadow: none;
}

.industry-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.industry-card-body {
  padding: 0;
}

.industry-card-body h3 {
  color: #111827;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
}

.industry-card-body p {
  color: #374151;
  font-size: 17px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 430px;
}

.mission-section {
  background: #ffffff;
  padding: 58px 0 72px;
  text-align: left;
}

.mission-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 72px;
  align-items: center;
}

.mission-image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.mission-copy {
  text-align: left;
}

.mission-section .mission-copy p {
  color: #2f3744;
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 22px;
  max-width: 560px;
  text-align: left;
}

.mission-section .mission-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .industries-section {
    padding: 56px 0 28px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .industry-card,
  .industry-card:nth-child(4),
  .industry-card:nth-child(5) {
    grid-column: auto;
  }

  .mission-section {
    padding: 38px 0 56px;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mission-section .mission-copy p {
    max-width: none;
  }
}

/* Match the reference image for the Resources wave section */
.resources-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #293A92;
  padding: 210px 0 92px;
}

.resources-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 0;
  width: 100%;
  height: 210px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V23C1248 80 1091 139 872 105C653 70 548 -34 268 28C166 51 78 81 0 109V0Z'/%3E%3C/svg%3E")
    center top / 100% 100% no-repeat;
  pointer-events: none;
}

.resources-section .container {
  max-width: 1520px;
  position: relative;
  z-index: 1;
}

.resources-section .section-title {
  color: #ffffff;
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 600;
  margin-bottom: 24px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 58px 120px;
  margin-top: 0;
  align-items: start;
}

.resource-card {
  grid-column: span 2;
  padding: 0;
  text-align: center;
}

.resource-card:nth-child(4) {
  grid-column: 3 / span 2;
}

.resource-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  background: transparent;
  border-radius: 0;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
}

.resource-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 680px;
}

.resource-card a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .resources-section {
    padding: 150px 0 64px;
  }

  .resources-section::before {
    height: 150px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .resource-card,
  .resource-card:nth-child(4) {
    grid-column: auto;
  }
}

/* Head office location banner */
.office-section {
  background: #ffffff;
  padding: 76px 0;
}

.office-inner {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.office-map iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
  border-radius: 0;
}

.office-info {
  text-align: left;
}

.office-info h2 {
  color: #111827;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
}

.office-info p {
  color: #2f3744;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.office-info a {
  color: #293A92;
  font-weight: 600;
}

.office-directions {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 2px solid #25AAE1;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .office-section {
    padding: 56px 0;
  }

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

  .office-map iframe {
    height: 340px;
  }
}

/* Services page category navigation */
.services-nav {
  background: #ffffff;
  border-bottom: 0;
  padding: 78px 0 72px;
}

.services-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px 34px;
  justify-items: center;
  align-items: center;
}

.services-nav a {
  grid-column: span 2;
  display: block;
  padding: 0;
  border: 0;
  color: #111827;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  transition: color 0.2s;
}

.services-nav a:hover {
  background: transparent;
  color: #293A92;
}

@media (max-width: 768px) {
  .services-nav {
    padding: 54px 0 48px;
  }

  .services-nav-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-nav a {
    grid-column: auto;
  }
}


