@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root{
  --primary:#0A2540;
  --secondary:#6B7280;
  --accent:#22D3EE;
  --bg:#F8FAFC;
  --dark:#020617;

  --text:#111827;
  --card:#ffffff;
  --border:#E5E7EB;

  --radius:8px;
  --shadow:0 8px 24px rgba(2,6,23,.08);
  --shadowHover:0 14px 34px rgba(2,6,23,.12);

  --container:1100px;
}

*{ box-sizing:border-box; }

html, body { height:100%; }

body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes floaty {
  0% { transform:translateY(0); }
  50% { transform:translateY(-6px); }
  100% { transform:translateY(0); }
}

@keyframes pulseGlow {
  0% { opacity:.32; transform:scale(.96); }
  50% { opacity:.55; transform:scale(1.02); }
  100% { opacity:.32; transform:scale(.96); }
}

section{
  animation:fadeUp .7s ease both;
  max-width:var(--container);
  margin:64px auto;
  padding:0 20px;
}

.fade-up { animation:fadeUp .7s ease both; }
.delay-1{ animation-delay:.12s; }
.delay-2{ animation-delay:.24s; }
.delay-3{ animation-delay:.36s; }

/* ===== Layout Helpers ===== */
.page{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* Pull content up slightly like a premium layout */
.page--lift{
  margin-top:-36px;
  padding-bottom:70px;
}

main{ display:block; }

/* ===== Header / Hero ===== */
header{
  color:#fff;
  text-align:center;
  padding:92px 20px 70px;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(34,211,238,.18), rgba(10,37,64,0) 60%),
    linear-gradient(180deg, #0A2540 0%, #061A2E 100%);
}

.header-content{ display:flex; flex-direction:column; align-items:center; gap:12px; }

header h1{
  margin:0 0 10px;
  font-weight:600;
  letter-spacing:.2px;
  font-size:clamp(30px, 4vw, 44px);
}

header p{
  margin:0 auto;
  max-width:900px;
  opacity:.92;
  font-size:18px;
}

.eyebrow{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.85;
  margin:0;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:6px;
}

/* ===== Header Nav (consistent everywhere) ===== */
header .site-nav{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

header .site-nav a{
  color:#cbd5f5;
  font-weight:500;
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
}

header .site-nav a:hover{
  color:var(--accent);
  text-decoration:none;
}

/* Active page highlight (add class="active" OR aria-current="page") */
header .site-nav a.active,
header .site-nav a[aria-current="page"]{
  color:var(--accent);
  text-shadow:
    0 0 10px rgba(34, 211, 238, 0.55),
    0 0 22px rgba(34, 211, 238, 0.35);
}

/* ===== Sections / Titles ===== */
.section-title{
  margin:0 0 14px;
  font-size:26px;
  font-weight:600;
  color:var(--primary);
  border-bottom:2px solid var(--border);
  padding-bottom:6px;
}

.lead{
  color:var(--secondary);
  margin:0;
}

/* ===== Cards ===== */
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  border:1px solid rgba(229,231,235,.7);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadowHover);
}

/* Booking card with higher contrast */
.booking-card{
  background:linear-gradient(135deg, #f9fbff, #edf6ff);
  border:1px solid rgba(10,37,64,.14);
  box-shadow:0 16px 34px rgba(2,6,23,.14);
}

.booking-card .lead{
  color:var(--text);
}

/* ===== Grid ===== */


ul{ padding-left:20px; }
li{ margin-bottom:8px; }

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 28px;
  border-radius:var(--radius);
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border:1px solid var(--primary);
  transition:all .25s ease;
}

.btn:hover{
  background:var(--accent);
  color:var(--primary);
  transform:translateY(-2px);
}

.btn.secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
}

.btn.secondary:hover{
  background:rgba(34,211,238,.14);
  border-color:rgba(34,211,238,.65);
  color:#fff;
  transform:translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(10, 37, 64, 0.22);
}

.btn.ghost:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.60);
  color: var(--primary);
}

/* Ghost buttons on dark sections should stay light for contrast */
.services-hero .btn.ghost,
.services-cta .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.services-hero .btn.ghost:hover,
.services-cta .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

/* Two buttons in hero */
header .btn + .btn { margin-left: 0; }

/* ===== Project Link Card Fix ===== */
.project-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.project-link:hover h3{
  color:var(--accent);
}

/* ===== Project Title Accent ===== */
.project-title-accent{
  color:var(--accent);
  text-shadow:
    0 0 10px rgba(34, 211, 238, 0.45),
    0 0 22px rgba(34, 211, 238, 0.25);
}

/* ===== Embeds ===== */
.embed{
  width:100%;
  height:650px;
  border:0;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}

.booking-card .embed{
  background:#fff;
  border:1px solid rgba(10,37,64,.18);
  box-shadow:0 10px 24px rgba(2,6,23,.06);
}

.project-meta{ margin:0; color:var(--secondary); }

/* ===== Footer ===== */
footer{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:35px 20px;
  margin-top:80px;
  opacity:.95;
}

/* ===== Mobile (Phone Friendly) ===== */
@media (max-width: 700px){
  header{
    padding:64px 16px 46px;
  }

  header p{
    font-size:16px;
    padding:0 6px;
  }

  header .site-nav{
    gap:12px;
  }

  header .site-nav a{
    padding:8px 10px;
  }

  .page{
    padding:0 16px;
  }

  .page--lift{
    margin-top:-18px;
    padding-bottom:48px;
  }

  section{
    margin:46px auto;
    padding:0 16px;
  }

  .card{
    padding:18px;
  }

  .grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .section-title{
    font-size:22px;
  }

  .embed{
    height:720px;
  }

  header .btn + .btn { margin-left: 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h2 { font-size: 30px; }
  .hero-panel { order: -1; }
  .services-hero { padding: 64px 0 52px; }
  .services-section { padding: 44px 0 62px; }
}
/* Companies I’ve Supported */
.companies {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.companies-header {
  text-align: center;
  margin-bottom: 26px;
}

.companies-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.companies-header p {
  margin: 10px auto 0;
  max-width: 700px;
  opacity: 0.78;
  line-height: 1.5;
}

.companies-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: center;
}

.companies-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.companies-grid img {
  height: 38px;
  width: 100%;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.companies-grid li:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .companies-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .companies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .companies-grid img { height: 34px; }
}

/* ===== Services Page Enhancements ===== */
.services-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(720px 340px at 18% 22%, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0)),
    radial-gradient(520px 300px at 82% 16%, rgba(10, 37, 64, 0.18), rgba(10, 37, 64, 0)),
    linear-gradient(180deg, #0A2540 0%, #0b1e33 60%, #0A2540 100%);
  color: #e7edf9;
  padding: 96px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 200px at 40% 60%, rgba(34, 211, 238, 0.12), rgba(10, 37, 64, 0));
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
  animation: pulseGlow 12s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-copy .lead {
  color: rgba(231, 237, 249, 0.85);
  max-width: 640px;
}

.hero-glance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #e7edf9;
  font-weight: 500;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.hero-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.25);
  overflow: hidden;
}

.panel-glow {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), rgba(34, 211, 238, 0));
  animation: pulseGlow 10s ease-in-out infinite;
  pointer-events: none;
}

.panel-content {
  position: relative;
  z-index: 1;
}

.panel-title {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 600;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.panel-list .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.14);
  margin-right: 10px;
}

.panel-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.metric-label {
  color: rgba(231, 237, 249, 0.8);
  font-size: 14px;
}

.services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f3f7fb 100%);
}

.services-section .section-head {
  text-align: left;
  margin-bottom: 28px;
}

.services-category {
  margin-top: 38px;
}

.category-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: linear-gradient(160deg, #fff, #f7fbff);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp .8s ease both;
  animation-delay: var(--delay, 0s);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.15);
  border-color: rgba(34, 211, 238, 0.35);
}

.service-card:hover::after { opacity: 1; }

.service-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--primary);
}

.service-card p { margin: 0 0 10px; }

.service-card .note {
  background: #ecfeff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--primary);
}

.process {
  margin-top: 64px;
  padding: 42px 38px;
  background: radial-gradient(540px 280px at 18% 16%, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0)),
    linear-gradient(135deg, #0a2540 0%, #0c2037 60%, #0a1c30 100%);
  color: #e7edf9;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.18);
}

.process-head { text-align: center; max-width: 680px; margin: 0 auto 22px; }
.process .eyebrow { color: rgba(231, 237, 249, 0.78); letter-spacing: .16em; }
.process-head h3 { margin: 0 0 6px; }
.process-head p { margin: 0 0 18px; color: rgba(231, 237, 249, 0.78); }

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

.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 16px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  animation: fadeUp .8s ease both;
  animation-delay: var(--delay, 0s);
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.step:hover::after { opacity: 1; }

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(255, 255, 255, 0.08));
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
  box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.1);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.step-meta { display: flex; flex-direction: column; gap: 2px; }
.step-label { margin: 0; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.step-sub { margin: 0; font-size: 13px; color: rgba(231, 237, 249, 0.78); }

.step-desc { margin: 0 0 10px; color: rgba(231, 237, 249, 0.92); }

.step-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(231, 237, 249, 0.86);
  line-height: 1.5;
}

.step-list li { margin-bottom: 6px; }

.services-cta {
  margin-top: 46px;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #0a2540, #0d2f52);
  color: #e7edf9;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 60%);
  right: -40px;
  top: -40px;
  animation: floaty 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-box h3 { margin: 0 0 8px; }
.cta-box p { margin: 0 0 16px; color: rgba(231, 237, 249, 0.78); }

.faq {
  margin-top: 38px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
  padding: 20px 18px;
}

.faq details {
  padding: 12px 6px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.faq details:last-of-type { border-bottom: 0; }
.faq summary { font-weight: 600; }
.faq p { margin: 8px 0 0; }
/* ===== Services page FIX (paste at very bottom) ===== */

/* 1) Stop the GLOBAL section rule from breaking Services layout */
.services-hero,
.services-section,
.services-section section {
  max-width: none;
  margin: 0;
  padding: 0;
  animation: none;
}

/* Keep your content centered using your theme container */
.services-hero .container,
.services-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Add back the spacing you actually want */
.services-hero {
  padding: 96px 0 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-section {
  padding: 54px 0 76px;
}

