/* Gurman Logistics — Main Styles
   Variables, typography, base, layout
   ================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  /* Brand Colors */
  --color-primary:       #1e5fad;
  --color-primary-dark:  #164477;
  --color-primary-light: #ddeaf9;
  --color-secondary:     #506575;

  /* UI Colors */
  --color-surface:       #ffffff;
  --color-bg:            #f2f7fd;
  --color-border:        #d4e2f0;

  /* Text */
  --color-text:          #1a2c3d;
  --color-text-body:     #3d5166;
  --color-text-muted:    #506575;

  /* Semantic */
  --color-success:       #0ea572;
  --color-warning:       #f59e0b;
  --color-danger:        #dc2626;
  --color-neutral:       #94a3b8;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;
  --transition-slow: 320ms ease;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(30, 95, 173, 0.06);
  --shadow-md:  0 4px 16px rgba(30, 95, 173, 0.1);
  --shadow-lg:  0 8px 32px rgba(30, 95, 173, 0.14);

  /* Layout */
  --container-max: 1280px;
  --header-height: 72px;
  --nav-z-index:    50;
  --modal-z-index:  60;
}

/* ========== Motion ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ========== Base Reset ========== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
}

p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-body);
}

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

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

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

/* ========== Container ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 640px)  { .container { padding: 0 var(--space-lg); } }
@media (min-width: 768px)  { .container { padding: 0 var(--space-xl); } }
@media (min-width: 1280px) { .container { padding: 0 var(--space-2xl); } }

/* ========== Section ========== */
.section { padding: var(--space-3xl) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 999px;
  margin-bottom: var(--space-md);
}

.section-title { margin-bottom: var(--space-sm); }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ========== Image Placeholder ========== */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #d4e2f0 0%, #bfd3eb 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px dashed var(--color-border);
  overflow: hidden;
  position: relative;
}

.img-placeholder svg {
  opacity: 0.45;
}

.img-placeholder-label {
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
  padding: 0 var(--space-md);
}

/* ========== Lucide icon sizing ========== */
.lucide-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}

.lucide-icon-sm {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image:
    url('../images/hero.webp'),
    linear-gradient(105deg, rgba(22, 68, 119, 0.92) 0%, rgba(30, 95, 173, 0.75) 45%, rgba(22, 68, 119, 0.6) 100%);
  background-position: 100% 100%, 0 0;
  background-size: 70vw auto, cover;
  background-repeat: no-repeat, no-repeat;
  z-index: 1;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(30, 95, 173, 0.35) 0%, transparent 65%),
    linear-gradient(145deg, #0d2d52 0%, #1a4a8a 50%, #112d52 100%);
  overflow: hidden;
}

/* Grid overlay for depth */
.hero-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Diagonal accent bar */
.hero-bg-placeholder::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(135deg, rgba(30, 95, 173, 0.18) 0%, rgba(30, 95, 173, 0) 60%);
  border-left: 1px solid rgba(255,255,255,0.06);
  transform: skewX(-12deg);
}

/* Replace hero-bg-placeholder with real image:
   background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
   Then remove hero-bg-placeholder entirely. */

/* Hero entrance animations */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-inner {
  animation: hero-fade-up 0.8s ease-out both;
}

.hero-img-placeholder,
.hero-img {
  animation: hero-fade-in 0.9s 0.15s ease-out both;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.hero-inner {
  max-width: 680px;
}

/* ---- Hero image (real photo once available) ---- */
.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
}

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

/* ---- Hero image placeholder ---- */
.hero-img-placeholder {
  display: none; /* hidden on mobile — text-only on small screens */
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .hero-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: var(--space-xl);
}

.hero-img-placeholder-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.hero-img-placeholder-hint {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  margin-bottom: var(--space-lg);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #5bbdff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.25rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-title .highlight {
  color: #5bbdff;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 767px) {
  .hero-cta .btn {
    width: 100%;
  }
}

/* Hero stats — card-style strip, one row, equal size */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-xl);
}

.hero-stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  min-height: 88px;
  isolation: isolate;
  overflow: hidden;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  -moz-backdrop-filter: blur(20px) saturate(1.3);
  border-radius: inherit;
  z-index: -1;
}

.hero-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-stat-card:hover::before {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-stat-card:hover .hero-stat-icon {
  background: var(--color-primary);
  color: #fff;
}

.hero-stat-icon [data-lucide] {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.hero-stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat-card {
    min-height: 80px;
  }
}

@media (min-width: 640px) {
  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat-card {
    padding: var(--space-lg) var(--space-xl);
    min-height: 104px;
  }

  .hero-stat-value {
    font-size: 1.75rem;
  }

  .hero-stat-label {
    font-size: 0.8125rem;
    text-transform: none;
    letter-spacing: 0;
  }
}

/* ========== Why Gurman ========== */
.pillars-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  text-align: center;
  padding: var(--space-xl);
}

.pillar-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
  transition: background var(--transition-base), transform var(--transition-base);
}

.pillar-card:hover .pillar-icon-wrap {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.pillar-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.pillar-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========== Services Grid ========== */
.services-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  padding: var(--space-xl);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  transition: background var(--transition-base), color var(--transition-base);
}

.service-card:hover .service-icon-wrap {
  background: var(--color-primary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ========== Stats Strip ========== */
.stats-strip {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-grid {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ========== Carrier CTA Banner ========== */
.carrier-cta {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.carrier-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

@media (min-width: 768px) {
  .carrier-cta {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .carrier-cta-text { max-width: 600px; }
}

.carrier-cta h2 { margin-bottom: var(--space-sm); }

.carrier-cta p {
  margin: 0;
  color: var(--color-text-muted);
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0a1929 0%, #0d2040 50%, #0a1929 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.9fr 1.2fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
}

/* Brand column */
.footer-brand {
  max-width: 280px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-md);
  transition: opacity var(--transition-fast);
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 var(--space-lg);
  line-height: 1.5;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer-cta:hover {
  color: #fff;
}

/* Column titles */
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Links columns */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

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

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-contact-item [data-lucide] {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
}

a.footer-contact-item:hover [data-lucide] {
  color: var(--color-primary-light);
}

.footer-contact-address {
  cursor: default;
  text-decoration: none;
}

.footer-contact-address span {
  line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
  padding: var(--space-lg) 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-domain {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.page-hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  margin: 0;
  max-width: 520px;
}

/* ========== About Page ========== */
.about-layout {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .about-layout { grid-template-columns: 1fr 1fr; align-items: center; }
}

.about-content h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.about-content h2:first-of-type { margin-top: 0; }

/* Values section — below about-layout, 4 cards in a row */
.values-section {
  margin-top: var(--space-3xl);
}

.values-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
}

.values-cards {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  margin: 0;
}

@media (min-width: 640px) {
  .values-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values-cards { grid-template-columns: repeat(4, 1fr); }
}

.values-card {
  position: relative;
  padding: var(--space-xl);
  border: 1px solid rgba(30, 95, 173, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.values-card:hover {
  border-color: rgba(30, 95, 173, 0.25);
  box-shadow: 0 8px 32px rgba(30, 95, 173, 0.08);
  transform: translateY(-2px);
}

.values-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  -moz-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: inherit;
  z-index: -1;
}

.values-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.values-card-icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.values-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
}

.values-card-desc {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin: 0;
}

.about-address { font-style: normal; }
.about-address p { margin-bottom: var(--space-sm); }

.about-img {
  height: 400px;
}

.about-teaser-img,
.about-photo-img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}


/* ========== Services Detail Grid ========== */
.services-detail-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-detail-card { padding: 0; overflow: hidden; }
.service-detail-card > .service-icon-wrap { margin: var(--space-lg) var(--space-xl) var(--space-md); }
.service-detail-card h3 { margin-bottom: var(--space-sm); }
.service-detail-img { border-radius: 0; }
.service-detail-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ========== About Contact Grid ========== */
.about-contact-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .about-contact-grid { grid-template-columns: 1fr 1fr; }
}

.about-contact-grid > .card {
  display: flex;
  flex-direction: column;
}

.about-map-embed {
  min-height: 320px;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .about-map-embed {
    min-height: 0;
  }
}

.about-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

@media (min-width: 768px) {
  .about-map-embed iframe {
    min-height: 0;
  }
}

/* ========== About Teaser ========== */
.about-teaser-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-teaser-grid { grid-template-columns: 1fr 1fr; }
}

.about-teaser-content h2 { margin-bottom: var(--space-md); }

.about-teaser-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 767px) {
  .about-teaser-ctas .btn {
    width: 100%;
  }
}

/* ========== Contact Page ========== */
.contact-layout {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--color-text);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--color-text);
}

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

.contact-form-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.contact-map-section {
  padding: 0;
  background: var(--color-bg);
}

.contact-map-embed {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: top;
}
