/* ============================================================
   IMETC International Solutions – Shared Stylesheet
   Color: Navy #0A1F3D | Ocean #1A5D7A | Gold #C9992A
   Fonts: Playfair Display (headings) + Nunito Sans (body)
   ============================================================ */

/* Google Fonts — preconnect for speed, loaded async to avoid render-blocking */
/* Fallback stacks keep layout intact if fonts cannot load */

/* ── CSS Variables ── */
:root {
  --navy:       #0A1F3D;
  --navy-dark:  #061529;
  --ocean:      #1A5D7A;
  --ocean-light:#2980B9;
  --gold:       #C9992A;
  --gold-light: #E8B84B;
  --white:      #FFFFFF;
  --off-white:  #F5F8FC;
  --light-gray: #EAF0F6;
  --text:       #1A202C;
  --text-muted: #5A6A7A;
  --border:     #D6E4EE;
  --shadow-sm:  0 2px 8px rgba(10,31,61,0.08);
  --shadow-md:  0 6px 24px rgba(10,31,61,0.12);
  --shadow-lg:  0 16px 48px rgba(10,31,61,0.16);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--off-white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,153,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Navigation ── */

/* Mobile nav hidden by default — only revealed inside media query */
.mobile-nav { display: none; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 13px 0;
  background: rgba(6, 21, 41, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo .logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .logo-text strong {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .logo-text span {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li > a {
  display: block;
  padding: 7px 15px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 15px; right: 15px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #05111e;
  border-radius: 8px;
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #05111e;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  border-radius: 5px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-left: 2px solid transparent;
}
.dropdown li a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 20px;
}

/* CTA button */
.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid var(--gold);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,61,0.92) 0%, rgba(26,93,122,0.7) 60%, rgba(10,31,61,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 600px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,61,0.95) 40%, rgba(10,31,61,0.65));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card-body { padding: 26px; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 18px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ocean);
  transition: all var(--transition);
}
.read-more:hover { color: var(--gold); gap: 10px; }
.read-more svg { transition: transform var(--transition); }
.read-more:hover svg { transform: translateX(4px); }

/* ── Features / Why Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.feature-item:hover::before { transform: scaleY(1); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-item h4 { margin-bottom: 8px; }
.feature-item p { font-size: 0.88rem; }

/* ── Two-Column Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.split-img .img-badge {
  position: absolute;
  bottom: -20px; right: 28px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.split-img .img-badge .num {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.split-img .img-badge .lbl {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.check-list li .check {
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--navy);
  margin-top: 2px;
  font-weight: 800;
}

/* ── Stats Banner ── */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
}
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ── News/Blog Cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.news-card-img {
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 24px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-tag {
  background: var(--off-white);
  color: var(--ocean);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-date {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.news-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.news-card-body p { font-size: 0.87rem; margin-bottom: 16px; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(201,153,42,0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail .icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ocean);
}
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.contact-detail span { font-size: 0.88rem; color: var(--text-muted); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,93,122,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; margin-top: 14px; max-width: 300px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-newsletter { margin-top: 16px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-light); }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    flex-direction: column;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    color: rgba(255,255,255,0.75);
    font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
  .mobile-nav .close-nav {
    position: absolute;
    top: 22px; right: 24px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: all 0.2s ease;
  }
  .mobile-nav .close-nav:hover { border-color: var(--gold); color: var(--gold); }
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-ocean { color: var(--ocean); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Service Detail Styles ── */
.service-intro { max-width: 720px; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; counter-reset: step; }
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.process-step .step-icon { font-size: 2rem; margin-bottom: 14px; margin-top: 8px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; }

/* ── Accordion ── */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-header {
  width: 100%; text-align: left;
  padding: 18px 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--off-white); }
.accordion-header.open { background: var(--navy); color: var(--white); }
.accordion-header .arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.accordion-header.open .arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body.open { max-height: 400px; }
.accordion-body-inner { padding: 18px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ── Blog Article ── */
.blog-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content h2 { margin: 36px 0 14px; font-size: 1.6rem; }
.blog-content h3 { margin: 28px 0 12px; font-size: 1.25rem; color: var(--ocean); }
.blog-content p { margin-bottom: 20px; color: var(--text-muted); font-size: 0.97rem; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content ul li, .blog-content ol li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; }
.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
}

/* ── Partner logos strip ── */
.partners-strip {
  background: var(--off-white);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Raleway', 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition);
}

/* ── Blog post page layout ── */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  ga