:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-alt: #edf3fb;
  --text: #17263d;
  --muted: #5f6d80;
  --primary: #2D2581;
  --primary-dark: #1D1751;
  --accent: #2dc2a7;
  --line: rgba(23, 38, 61, 0.08);
  --shadow: 0 20px 60px rgba(12, 26, 48, 0.08);
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
  --theme-1: #6C3992;
  --theme-2: #3B3388;
  --theme-3: #2D2581;
  --theme-4: #4B2578;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Utility Background Colors */
.bg-theme-1 { background-color: var(--theme-1) !important; color: white; }
.bg-theme-2 { background-color: var(--theme-2) !important; color: white; }
.bg-theme-3 { background-color: var(--theme-3) !important; color: white; }
.bg-theme-4 { background-color: var(--theme-4) !important; color: white; }

/* Let's make sure text within these dark backgrounds is legible */
.bg-theme-1 p, .bg-theme-1 h1, .bg-theme-1 h2, .bg-theme-1 h3, .bg-theme-1 .eyebrow, .bg-theme-1 .feature-list li, .bg-theme-1 .feature-list li:before,
.bg-theme-2 p, .bg-theme-2 h1, .bg-theme-2 h2, .bg-theme-2 h3, .bg-theme-2 .eyebrow, .bg-theme-2 .feature-list li, .bg-theme-2 .feature-list li:before,
.bg-theme-3 p, .bg-theme-3 h1, .bg-theme-3 h2, .bg-theme-3 h3, .bg-theme-3 .eyebrow, .bg-theme-3 .feature-list li, .bg-theme-3 .feature-list li:before,
.bg-theme-4 p, .bg-theme-4 h1, .bg-theme-4 h2, .bg-theme-4 h3, .bg-theme-4 .eyebrow, .bg-theme-4 .feature-list li, .bg-theme-4 .feature-list li:before {
  color: white !important;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 194, 167, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(22, 75, 155, 0.10), transparent 18%),
    var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 38, 61, 0.06);
  backdrop-filter: blur(12px);
}

.utility-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  padding: 10px 0;
}

.utility-right,
.nav-wrap,
.brand,
.site-nav,
.footer-bottom {
  display: flex;
  align-items: center;
}

.utility-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.utility-right a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.utility-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.utility-left a:hover {
  opacity: 0.8;
}

.utility-left a svg {
  width: 16px;
  height: 16px;
}

.nav-wrap {
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
  position: relative;
}

.brand {
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 174px;
  height: 64px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  color: var(--primary-dark);
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  gap: 28px;
}

.site-nav a {
  padding: 30px 0 25px;
  border-bottom: 3px solid transparent;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
}

.page-hero {
  padding: 0 0 44px;
}

.page-hero.home {
  padding-bottom: 26px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.banner-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 40, 76, 0.85) 0%, rgba(17, 40, 76, 0.1) 100%);
  z-index: 1;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.18;
  z-index: 1;
}

.hero-banner::before {
  width: 460px;
  height: 460px;
  left: -60px;
  top: 24px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-banner::after {
  width: 320px;
  height: 320px;
  right: 60px;
  top: 70px;
  background: rgba(14, 27, 48, 0.28);
}

.hero-banner-inner {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  color: #fff;
  max-width: 660px;
}

.hero-copy.centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.page-header .eyebrow,
.section .eyebrow,
.text-card .eyebrow,
.split-content .eyebrow,
.timeline-panel .eyebrow {
  color: var(--primary);
}

.hero-copy h1,
.section-heading h2,
.cta-card h2,
.split-content h3,
.timeline-panel h3,
.contact-side h3,
.data-panel h3 {
  margin: 0;
  line-height: 1.08;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-copy p,
.section-heading p,
.text-card p,
.info-card p,
.feature-card p,
.split-content p,
.timeline-item p,
.contact-card p,
.contact-side p,
.footer-top p,
.footer-bottom p,
.list-card li,
.data-panel p,
.note-card p {
  line-height: 1.75;
}

.hero-copy p:last-of-type {
  color: rgba(255, 255, 255, 0.9);
  margin: 22px 0 28px;
}

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

.hero-panel {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(9, 20, 38, 0.16);
  overflow: hidden;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.metric-card,
.text-card,
.info-card,
.feature-card,
.gallery-card,
.contact-card,
.contact-side,
.list-card,
.data-panel,
.note-card,
.cta-card,
.image-card,
.timeline-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px 24px;
  border-radius: 22px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.metric-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.46rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2664df);
  box-shadow: 0 14px 30px rgba(22, 75, 155, 0.28);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #fff;
}

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

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(14, 27, 48, 0.05);
}

.page-header {
  padding: 54px 0 26px;
}

.page-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
}

.page-header-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0;
}

.page-header-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.page-header-art,
.image-card,
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-header-art img,
.image-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 34px 0 44px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 244, 251, 0.9));
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 14px;
}

.grid-2,
.grid-3,
.grid-4,
.preview-grid,
.gallery-grid,
.data-grid,
.contact-layout,
.footer-top,
.feature-split,
.timeline-grid {
  display: grid;
  gap: 20px;
}

.grid-2,
.feature-split,
.contact-layout {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid-4,
.data-grid {
  grid-template-columns: repeat(4, 1fr);
}

.text-card,
.info-card,
.feature-card,
.contact-card,
.contact-side,
.list-card,
.data-panel,
.note-card,
.cta-card,
.timeline-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.text-card.dark,
.cta-card.dark {
  background: linear-gradient(160deg, #0b1f3a, #173a68);
  color: #fff;
}

.text-card.dark p,
.cta-card.dark p,
.text-card.dark li {
  color: rgba(255, 255, 255, 0.86);
}

.info-card h3,
.feature-card h3,
.contact-card h3,
.contact-side h3,
.list-card h3,
.data-panel h3,
.note-card h3,
.cta-card h2,
.timeline-panel h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.note-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.info-card ul,
.list-card ul,
.contact-card ul,
.note-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.info-card li,
.list-card li,
.contact-card li,
.note-card li {
  margin-bottom: 10px;
}

.preview-card {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-card-body {
  padding: 24px;
}

.preview-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.preview-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.link-arrow {
  color: var(--primary);
  font-weight: 700;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-alt);
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
}

.gallery-grid .gallery-card {
  aspect-ratio: 4 / 3;
}

.data-panel {
  text-align: center;
}

.data-panel strong {
  display: block;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.contact-layout {
  align-items: start;
}

.contact-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #183765;
}

.contact-hero-media,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.contact-hero-overlay {
  background: linear-gradient(0deg, rgba(12, 32, 63, 0.68), rgba(12, 32, 63, 0.68));
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero-inner .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.contact-hero-inner h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-hero-inner p:last-child {
  margin: 18px 0 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-reference-section {
  padding-top: 34px;
}

.contact-reference-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-info-card,
.contact-form-card,
.office-hours-card,
.timezone-card,
.map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-info-card,
.contact-form-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.contact-card-heading h2,
.office-title h2,
.timezone-card h3 {
  margin: 0;
}

.contact-card-heading p,
.office-note,
.timezone-card p {
  color: var(--muted);
}

/* CTA Section Styles */
.cta-section {
  background-color: #f4f7f9;
  padding: 80px 0;
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.cta-image-backdrop {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #e2e8f0;
  z-index: 0;
}

.cta-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border: 12px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: block;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--primary-dark);
  margin: 0 0 16px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin: 0 0 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta-image-wrapper {
    margin-bottom: 40px;
  }
  .cta-image-backdrop {
    top: 10px;
    left: 15px;
  }
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e9f1ff;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-badge.accent {
  background: rgba(45, 194, 167, 0.14);
  color: #177a68;
}

.contact-divider {
  height: 1px;
  margin: 20px 0 22px;
  background: rgba(22, 75, 155, 0.18);
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item strong,
.office-hour-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.contact-info-item span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-pin-list {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.contact-pin-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-pin-list p + p {
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(23, 38, 61, 0.12);
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232D2581' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(45, 37, 129, 0.14);
  border-color: rgba(45, 37, 129, 0.34);
}

.contact-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.office-section {
  padding-top: 0;
}

.office-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.office-hours-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.office-title {
  margin-bottom: 18px;
}

.office-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.office-hour-item {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-alt);
}

.office-hour-item span {
  color: var(--muted);
}

.office-note {
  margin: 16px 0 0;
}

.timezone-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(160deg, #1d4e9c, #143a78);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timezone-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timezone-card h3 {
  margin-top: 18px;
  font-size: 2rem;
}

.timezone-card p,
.timezone-card strong {
  color: rgba(255, 255, 255, 0.9);
}

.timezone-card strong {
  margin-top: 14px;
}

.map-section {
  padding-top: 0;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-card img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.contact-card p,
.contact-side p,
.note-card p,
.list-card p,
.text-card p,
.info-card p,
.feature-card p,
.timeline-item p,
.data-panel p {
  color: var(--muted);
  margin: 0;
}

.contact-card p + p,
.contact-side p + p,
.text-card p + p,
.note-card p + p {
  margin-top: 10px;
}

.site-footer {
  margin-top: 26px;
  padding: 44px 0 28px;
  background: #0d1f39;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.footer-top {
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-qr-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qr-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
}

.qr-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.footer-top h3 {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #fff;
}

.footer-top p,
.footer-top a,
.footer-top li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-top ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.overview-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.overview-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.overview-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(22, 75, 155, 0.06);
  color: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-text h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.feature-text h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.feature-text h3 a:hover {
  color: var(--primary);
}

.feature-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.align-center {
  align-items: center;
}

@media (max-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-split .image-card,
  .feature-split .image-card img,
  .feature-split .image-card > div {
    min-height: 260px !important;
    height: auto !important;
  }
}

@media (max-width: 1080px) {
  .hero-banner-inner,
  .page-header-grid,
  .grid-4,
  .data-grid,
  .footer-top,
  .timeline-grid,
  .feature-split,
  .grid-3,
  .preview-grid,
  .gallery-grid,
  .grid-2,
  .contact-layout,
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-reference-grid,
  .office-wrap {
    grid-template-columns: 1fr;
  }

  .office-hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .utility-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 38, 61, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-banner,
  .hero-banner-inner {
    min-height: 460px;
  }

  .contact-hero,
  .contact-hero-inner {
    min-height: 300px;
  }

  .hero-banner-inner,
  .page-header-grid,
  .grid-4,
  .data-grid,
  .footer-top,
  .timeline-grid,
  .feature-split,
  .grid-3,
  .preview-grid,
  .gallery-grid,
  .grid-2,
  .contact-layout,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .footer-top {
    gap: 32px;
  }

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

  .contact-reference-grid,
  .office-wrap,
  .office-hours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 140px;
    height: auto;
  }

  .brand-copy span {
    display: none;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .hero-copy h1,
  .page-header-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-banner,
  .hero-banner-inner {
    min-height: 400px;
  }

  .contact-hero,
  .contact-hero-inner {
    min-height: 260px;
  }

  .contact-hero-inner p:last-child {
    font-size: 1rem;
  }

  .text-card,
  .info-card,
  .feature-card,
  .contact-card,
  .contact-side,
  .list-card,
  .data-panel,
  .note-card,
  .cta-card,
  .timeline-panel,
  .preview-card-body,
  .contact-info-card,
  .contact-form-card,
  .office-hours-card,
  .timezone-card,
  .split-content[style*="padding"],
  .overview-content[style*="padding"] {
    padding: 24px !important;
  }
}

/* 页面Banner样式 */
.page-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-title {
  position: relative;
  z-index: 10;
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  text-align: center;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bannerZoom 20s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* 动画效果 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 悬停效果 */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(9, 20, 38, 0.15);
}

/* 延迟动画 */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1.0s;
}

.delay-6 {
  animation-delay: 1.2s;
}

/* 功能列表样式 */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .page-banner {
    height: 240px;
    margin-bottom: 30px;
  }
  
  .banner-image {
    animation: bannerZoom 15s ease-in-out infinite alternate;
  }
}

@media (max-width: 560px) {
  .page-banner {
    height: 200px;
    margin-bottom: 25px;
  }
}

/* 数据面板子标题样式 */
.data-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* 列表介绍样式 */
.list-intro,
.note-intro {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* 故事卡片样式 */
.story-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(9, 20, 38, 0.15);
}

.story-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 75, 155, 0.06);
  color: var(--primary);
  border-radius: 16px;
  margin-bottom: 20px;
}

.story-image {
  width: 100%;
  height: 200px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* 网格3列布局 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* 步骤编号样式 */
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(22, 75, 155, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.note-card .step-number {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .step-number {
    font-size: 2rem;
  }
  
  .note-card .step-number {
    font-size: 1.8rem;
  }
}
