:root {
  --color-primary: #f15a29;
  --color-primary-dark: #d74c1f;
  --color-accent: #0059b3;
  --color-bg: #f5f7fb;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-text);
  background: white;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

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

.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.main-nav a {
  color: var(--color-muted);
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--color-primary);
  background: rgba(241, 90, 41, 0.08);
  transform: translateY(-2px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 70%;
}

.nav-cta {
  font-size: 14px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 12px 30px rgba(241, 90, 41, 0.55);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(241, 90, 41, 0.66);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-accent);
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #0b1120;
  background-image: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.82),
      rgba(15, 23, 42, 0.55),
      rgba(15, 23, 42, 0.3)
    ),
    url("images/1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(252, 211, 77, 0.5),
    transparent 50%
  );
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 60px 16px 80px;
}

.hero-text h1 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 10px 0 14px;
  color: #e5e7eb;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: #e5e7eb;
  max-width: 480px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 11px;
  color: #bfdbfe;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

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

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-score {
  font-weight: 700;
  color: #fffbeb;
}

.badge-label {
  font-size: 11px;
  color: #cbd5f5;
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-card h2 {
  margin: 0 0 4px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 14px;
}

/* Forms */

input,
select,
textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font: inherit;
  margin-top: 4px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-muted);
}

/* Sections */

.section {
  padding: 64px 0;
}

.section-light {
  background: var(--color-bg);
}

.section-accent {
  background: linear-gradient(135deg, #e0f2fe, #eff6ff);
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--color-primary), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.6s ease-out;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #ff6b35);
  border-radius: 2px;
}

.section-header p {
  margin: 12px auto 0;
  color: var(--color-muted);
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header.align-left {
  text-align: left;
}

/* Services Highlight */

.services-highlight {
  padding-top: 0;
}

.services-bar {
  width: 100%;
  background: #ff8c00;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 14px 16px;
  font-size: 15px;
}

.featured-services {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.featured-service-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.featured-service-card-main {
  transform: translateY(-10px);
}

.featured-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.26);
  border-color: rgba(15, 23, 42, 0.22);
}

.featured-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.featured-image-1 {
  background-image: url("images/service1.jpg");
}

.featured-image-2 {
  background-image: url("images/service2.jpg");
}

.featured-image-3 {
  background-image: url("images/service3.jpg");
}

.featured-body {
  padding: 20px 22px 22px;
}

.featured-body h3 {
  margin: 0 0 8px;
}

.featured-body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--color-muted);
}

.featured-services .featured-service-card:first-child {
  border-top: 4px solid var(--color-primary);
}

.featured-subtitle {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: transparent;
  border: none;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(241, 90, 41, 0.05), transparent);
  transition: width 0.3s ease;
}

.service-card:hover {
  padding-left: 20px;
  border-left-color: var(--color-primary);
  background: rgba(241, 90, 41, 0.02);
}

.service-card:hover::before {
  width: 100%;
}

.service-card h3 {
  margin: 0 0 6px;
  color: var(--color-primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  transform: translateX(5px);
  color: #d64a1f;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover p {
  color: #334155;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
}

.about-layout p {
  color: var(--color-muted);
}

.about-highlight {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.about-highlight p {
  color: #cbd5f5;
}

.about-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f1f5f9;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lists */

.check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.check-list li svg {
  flex-shrink: 0;
  color: var(--color-primary);
  background: rgba(241, 90, 41, 0.1);
  border-radius: 50%;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.pill-list li {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
}

/* Why Us */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  border: 2px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(241, 90, 41, 0.15);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary), #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(241, 90, 41, 0.3);
}

.why-icon svg {
  width: 40px;
  height: 40px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
  transition: color 0.3s ease;
}

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

.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: #334155;
}

/* Reviews */

.reviews-container {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.overall-rating-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.rating-label {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rating-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 18px;
  color: #d1d5db;
}

.star.filled {
  color: #fbbf24;
}

.rating-count {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--color-muted);
}

.review-btn {
  width: 100%;
}

.reviews-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.reviews-scroll::-webkit-scrollbar {
  height: 6px;
}

.reviews-scroll::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.15);
  border-radius: 999px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.reviewer-avatar-img {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.verified {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  margin-left: 4px;
}

.review-date {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.review-stars .star {
  font-size: 16px;
}

.review-text {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

.review-read-more {
  display: inline-block;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 10px;
  text-decoration: none;
}

.review-read-more:hover {
  text-decoration: underline;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
}

.source-icon {
  width: 16px;
  height: 16px;
}

.review-source a {
  color: var(--color-accent);
  text-decoration: none;
}

.review-source a:hover {
  text-decoration: underline;
}

/* Contact */

.contact-section-dark {
  background: #f8fafc;
  color: #0f172a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 28px;
}

.contact-info-panel {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-main-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.contact-description {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 40px;
  max-width: 100%;
}

.contact-touch-section {
  margin-top: 10px;
}

.contact-touch-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(15, 23, 42, 0.2);
}

.contact-touch-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-touch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
}

.contact-touch-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.contact-touch-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-touch-item a:hover {
  color: #d64a1f;
  text-decoration: underline;
}

.contact-map-section {
  margin-top: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
}

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

.contact-note {
  margin: 12px 0 0;
  padding: 10px;
  font-size: 12px;
  color: var(--color-muted);
  background: rgba(241, 90, 41, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}

.contact-form-panel {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  height: fit-content;
}

.contact-form-panel h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row label {
  flex: 1;
}

.contact-image-placeholder {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */

.site-footer {
  padding: 32px 0 20px;
  background: #020617;
  color: #9ca3af;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #e5e7eb;
}

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

.footer-col ul li {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-col a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
}

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

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

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

.footer-brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #e5e7eb;
}

.footer-brand-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-description {
  margin: 0;
  font-size: 13px;
  max-width: 320px;
}

.footer-call-btn {
  margin-top: 10px;
  font-size: 13px;
  padding-inline: 18px;
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

.footer-company-info {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-company-info p {
  margin: 6px 0;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-company-info p strong {
  color: #e5e7eb;
  font-size: 13px;
}

.footer-bottom > p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.officers-section {
  margin-top: 32px;
  padding: 24px;
  background: transparent;
}

.officers-section h4 {
  margin: 0 0 24px;
  font-size: 22px;
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.officers-section h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.officer-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.officer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(241, 90, 41, 0.2);
  border-color: var(--color-primary);
}

.officer-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.officer-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  margin-bottom: 4px;
}

.officer-position {
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.officer-id {
  color: #64748b;
  font-family: monospace;
  font-size: 13px;
  display: block;
}

.officer-nationality {
  color: #64748b;
  font-size: 13px;
  display: block;
}

.officer-address {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .hero-card {
    padding: 20px 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    flex-direction: column;
  }
}
