@font-face {
  font-family: "Outfit-Fallback";
  src: local("system-ui"), local("Arial");
  size-adjust: 100%;
}

:root {
  --black: #0B1221;
  /* Primary dark (Rich Midnight instead of flat black) */
  --black-deep: #060B14;
  /* Pure deep dark */
  --blue-royal: #162E6B;
  /* Premium Royal Blue */
  --blue-dark: #0B1B3D;
  /* Deep Royal Blue Base */
  --white: #ffffff;
  --grey-light: #fafafa;
  /* Main background */
  --grey-mid: #e4e4e7;
  --grey-dark: #71717a;

  --accent: #a8d8ea;
  /* Soft pastel blue — for use on dark/navy backgrounds (hero, footer, badges) */
  --accent-on-light: #1a5f7a;
  /* Deep teal for text on white/light grey — contrast 5.8:1 on white */
  --accent-dark: #1a7fa0;
  /* Mid teal for interactive elements on light backgrounds */
  --accent-light: #daeef6;
  /* Very soft pastel wash for backgrounds/tints */

  --font-display: 'Archivo', sans-serif;
  --font-serif: 'Archivo', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  /* Liquid Glass Physics & Depth */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);

  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --transition-fluid: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  animation: pageIn 0.35s ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

/* Instant link clicks feel instant — preload the exit */
a[href]:not([href^="#"]):not([href^="tel"]):not([href^="mailto"]):not([target="_blank"]) {
  cursor: pointer;
}

main {
  padding-top: 0;
  /* Removed to fix white bar above headers */
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fluid);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
}

.brand-logo {
  aspect-ratio: 790 / 158;
  width: 220px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.2) brightness(1.1);
}

.nav-logo span {
  color: var(--accent-on-light);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--grey-dark);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
  /* Changed from accent to Royal Blue */
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  min-width: 120px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: var(--transition-fluid);
}

.nav-cta:hover {
  background: var(--grey-dark) !important;
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.nav-phone {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-dark);
  /* Changed from accent to Royal Blue */
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.mobile-phone-cta {
  display: block;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-admin-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--black);
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-admin-btn:hover {
  background: #222 !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
}

/* ── PAGES ── */
.page {
  padding-top: 0;
  min-height: auto;
}

main.hero-main {
  padding-top: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(to bottom, #09132B 0%, #0B1B3D 55%, #162E6B 85%, #1b3a6b 100%);
  padding: 8rem 5vw 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50svh;
  width: 100%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--grey-dark);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-sub {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #09132B 0%, #0B1B3D 50%, #162E6B 80%, #FFFFFF 100%);
  color: var(--white);
  padding: 6rem 5vw;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--grey-dark);
}

.hero-top-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .hero-top-row {
    flex-direction: row;
    gap: 2rem;
  }
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 900px;
  text-align: center;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.hero-desc {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--white);
  color: var(--black-deep);
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fluid);
}

.btn-primary:hover {
  background: var(--grey-mid);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fluid);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: scale(1.02);
}

/* ── SECTION ── */
section {
  padding: 5rem 8vw 7rem;
  scroll-margin-top: 72px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-on-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-on-light);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-dark);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
}


/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

/* ── PROCESS BANNER ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.04);
}

.process-step {
  padding: 2.5rem;
  background: var(--black);
}

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.process-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}

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

.service-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-8px);
  border-color: transparent;
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #c5dce6;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: var(--accent-light);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--grey-dark);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-on-light);
  text-decoration: none;
  margin-top: 1.2rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.8rem;
}

/* ── PORTFOLIO ── */
.portfolio-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-pill);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fluid);
  font-family: var(--font-body);
  color: var(--grey-dark);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--black);
  color: var(--black);
  background: var(--grey-light);
  transform: scale(1.02);
}

.portfolio-grid {
  column-count: 3;
  column-gap: 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    column-count: 1;
  }
}

.portfolio-item,
.portfolio-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fluid);
  aspect-ratio: 4/3;
}

.portfolio-item:hover,
.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-item img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-item:hover img,
.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ── PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--grey-light) 0%, var(--grey-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.4rem;
  text-align: center;
  padding: 1rem;
}

.img-placeholder .ph-icon {
  font-size: 1.8rem;
  opacity: 0.4;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem;
  text-align: center;
  font-family: var(--font-display);
}

.about-badge .num {
  font-size: 2.2rem;
  display: block;
}

.about-badge .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent-on-light);
  line-height: 1.5;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-light);
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--grey-dark);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid var(--accent-light);
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
  color: var(--black);
}

.author-location {
  font-size: 0.7rem;
  color: var(--grey-dark);
  letter-spacing: 0.05em;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.blog-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--grey-light);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.blog-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.8rem;
}

.blog-title-link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: var(--black);
  display: block;
  transition: color 0.2s;
}

.blog-title-link:hover {
  color: var(--accent);
}

.blog-meta {
  font-size: 0.72rem;
  color: var(--grey-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--grey-dark);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.blog-mini {
  display: flex;
  gap: 1rem;
  cursor: pointer;
}

.blog-mini-img {
  width: 76px;
  height: 68px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--grey-light);
}

.blog-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.3s;
}

.blog-mini:hover .blog-mini-img img {
  filter: grayscale(0%);
}

.blog-mini-title {
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.blog-mini:hover .blog-mini-title {
  color: var(--accent);
}

.blog-mini-meta {
  font-size: 0.7rem;
  color: var(--grey-dark);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  margin-top: 4rem;
}

.contact-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form {
  background: var(--grey-light);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}


/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 5rem 8vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

@media(max-width: 900px) {
  .cta-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .cta-section>div:last-child {
    justify-content: center;
  }
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(to bottom, #162E6B 0%, #0B1B3D 50%, #09132B 100%);
  color: var(--white);
  padding: 8rem 8vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer-brand-name span {
  color: var(--grey-dark);
}

.footer-brand-desc {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-fluid);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.4);
}

.footer-fb {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fluid);
}

.footer-fb:hover {
  color: var(--white);
}

/* ══════════════════════════════
     ADMIN / LOGIN MODAL
  ══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

/* ── LOGIN BOX ── */
.login-box {
  background: var(--white);
  width: 100%;
  max-width: 380px;
  padding: 3rem;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

.login-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.login-logo span {
  color: var(--accent);
}

.login-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 2rem;
}

.login-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.4rem;
}

.login-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-mid);
  background: var(--grey-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.login-input:focus {
  border-color: var(--accent);
  background: var(--white);
}

.login-error {
  font-size: 0.8rem;
  color: #d00;
  margin-bottom: 1rem;
  display: none;
}

.login-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--grey-dark);
}

/* ── ADMIN PANEL ── */
.admin-panel-box {
  background: var(--black);
  color: var(--white);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 1;
}

.admin-header-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.admin-header-sub {
  font-size: 0.68rem;
  color: var(--grey-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.admin-close {
  background: none;
  border: none;
  color: var(--grey-dark);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

.admin-close:hover {
  color: var(--white);
}

.admin-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-tab {
  padding: 1rem 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}

.admin-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-tab-content {
  padding: 2rem;
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.admin-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}

.admin-input:focus {
  border-color: var(--accent);
}

.admin-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  resize: vertical;
  min-height: 90px;
  margin-bottom: 0.6rem;
}

.admin-select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.6rem;
  -webkit-appearance: none;
  appearance: none;
}

.admin-select option {
  background: #1a1a1a;
}

.admin-btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-bottom: 0.4rem;
}

.admin-btn:hover {
  background: var(--accent-dark);
}

.admin-btn.full {
  width: 100%;
}

.admin-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.admin-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.admin-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

/* ── BATCH UPLOAD ── */
.batch-drop {
  border: 2px dashed rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 1rem;
  position: relative;
}

.batch-drop:hover,
.batch-drop.dragover {
  border-color: var(--accent);
  background: rgba(0, 87, 255, 0.06);
}

.batch-drop .drop-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.batch-drop p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.batch-drop strong {
  color: rgba(255, 255, 255, 0.7);
}

#batch-file-input {
  display: none;
}

.batch-queue {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 320px;
  overflow-y: auto;
}

.batch-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.batch-thumb {
  width: 52px;
  height: 44px;
  object-fit: cover;
}

.batch-info {
  min-width: 0;
}

.batch-filename {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

.batch-select {
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.72rem;
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.batch-select option {
  background: #1a1a1a;
}

.batch-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  transition: color 0.2s;
}

.batch-remove:hover {
  color: #ff4444;
}

.batch-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.batch-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

/* ── MANAGE TABLE ── */
.manage-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.manage-table th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.manage-table td {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.manage-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.manage-thumb {
  width: 42px;
  height: 36px;
  object-fit: cover;
}

.del-btn {
  background: none;
  border: none;
  color: rgba(255, 0, 0, 0.4);
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.del-btn:hover {
  color: #ff4444;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  border-left: 3px solid var(--accent);
}

.toast.show {
  opacity: 1;
}

/* ── MOBILE ── */
@media (max-width: 900px) {

  /* NAV: shrink pill padding, hide phone, show hamburger */
  nav {
    padding: 0 1.2rem;
    width: 94%;
    top: 1rem;
  }

  .brand-logo {
    width: 160px;
  }

  .nav-phone {
    display: none;
  }

  .toast {
    bottom: 5.5rem;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  /* Mobile menu full-screen overlay */
  .mobile-menu {
    position: fixed;
    inset: 60px 0 0 0;
    background: var(--white);
    z-index: 199;
    padding: 2.5rem 8vw;
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    overflow-y: auto;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
  }

  /* HERO: tighten padding, smaller heading */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 7rem 6vw 4rem;
  }

  .hero-right {
    display: none !important;
  }

  .hero-left {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  /* Hero stats: wrap on mobile instead of overflowing */
  .hero-stats-inline {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    justify-content: center;
  }

  .hero-top-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Buttons: full-width on small screens */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* PAGE HERO (subpages) */
  .page-hero {
    min-height: 60svh;
    padding: 8rem 6vw 4rem;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 9vw, 4.5rem);
    line-height: 1.05;
  }

  .page-hero-sub {
    font-size: 1rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .portfolio-item.large {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  /* Process banner */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Service rows */
  .service-row-inner,
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  div[data-pool] {
    min-height: 240px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Prevent iOS Input Zoom */
  .form-input,
  .form-textarea,
  .form-select,
  .admin-input,
  .admin-textarea,
  .admin-select {
    font-size: 16px !important;
  }

  .admin-panel-box {
    max-width: 100%;
    max-height: 95vh;
  }

  /* CTA block */
  .global-cta {
    padding: 4rem 6vw;
  }
}

@media (max-width: 600px) {
  section {
    padding: 2.5rem 5vw;
  }

  /* Tighter hero heading on small phones */
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: -0.03em;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .page-hero {
    min-height: 50svh;
    padding: 7rem 6vw 3rem;
  }

  /* Stats pill: stack vertically */
  .hero-stats-inline {
    flex-direction: column;
    gap: 0.5rem;
    border-radius: var(--radius-md);
    padding: 1rem;
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  /* Single column everything */
  .portfolio-grid {
    column-count: 1;
  }

  .portfolio-item.large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* CTA block tighter */
  .global-cta {
    padding: 3rem 6vw;
  }

  .global-cta h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 1rem;
    top: 0.75rem;
    width: 96%;
  }

  .brand-logo {
    width: 130px;
  }

  .hero {
    padding: 6rem 5vw 3rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.8rem);
  }

  .page-hero-sub {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.9rem 1.6rem;
    font-size: 0.78rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}


/* ══ MOBILE OPTIMIZATIONS & SEO ══ */
/* Prevent Cumulative Layout Shift (CLS) on images */
.portfolio-item img,
.blog-featured-img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-mini-img img {
  /* Blog mini thumbnails are small fixed-size — no aspect-ratio constraint */
  object-fit: cover;
}

@media(max-width: 900px) {

  /* Prevent iOS Input Zoom (must be >= 16px) */
  .form-input,
  .form-textarea,
  .form-select,
  .admin-input,
  .admin-textarea,
  .admin-select {
    font-size: 16px !important;
  }

  /* Optimize touch targets for accessibility (> 48px) */
  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   SERVICE ROWS — RESPONSIVE
═══════════════════════════════════════ */
.svc-outer {
  padding: 0 8vw 6rem;
}

.svc-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* Zero padding — image fills every pixel of this panel */
.svc-photo-panel {
  padding: 0;
  margin: 0;
  background: var(--grey-light);
  overflow: hidden;
  position: relative;
}

.svc-text-panel {
  padding: 4rem;
}

/* Process steps grid, 4 cols → 2 → 1 */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.04);
}

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

@media (max-width: 768px) {
  .svc-outer {
    padding: 0 0 3rem;
  }

  .svc-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .svc-photo-panel {
    order: -1;
    min-height: 300px;
  }

  .svc-text-panel {
    padding: 2rem 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .fade-up,
  .fade-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── GLOBAL CTA ── */
.global-cta {
  background: var(--white);
  color: var(--black);
  padding: 6rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  border-top: 1px solid var(--grey-mid);
}

.global-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.global-cta p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--grey-dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.global-cta .btn-cta {
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 2.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.global-cta .btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: var(--blue-dark);
}

/* ══ AUDIT IMPROVEMENTS ══ */

/* 1. Hero scroll-down bounce indicator */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 5;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.9;
  }
}

/* 2. Portfolio overlay — always visible on touchscreens */
@media (hover: none) {
  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  }
}

/* 3. Portfolio filter — horizontal scroll on mobile (no multi-line wrap) */
@media (max-width: 640px) {
  .portfolio-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
  }

  .portfolio-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* 4. Restore about image on mobile (was hidden) */
@media (max-width: 900px) {
  .about-img {
    display: block !important;
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    border-radius: var(--radius-md);
  }

  .about-img-main {
    aspect-ratio: 16/9;
    width: 100%;
  }

  .about-badge {
    left: 0.5rem;
  }
}

/* 5. Sticky mobile Call Now bar */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    z-index: 300;
    padding: 0.65rem 1rem;
    gap: 0.6rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  }

  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: opacity 0.2s ease;
    font-family: var(--font-body);
  }

  .mobile-cta-bar a:hover {
    opacity: 0.88;
  }

  .mobile-cta-bar .mcta-call {
    background: #22c55e;
    color: white;
  }

  .mobile-cta-bar .mcta-quote {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  /* Push footer above the sticky bar */
  footer {
    padding-bottom: 5rem;
  }
}

/* 6. Testimonial cards – reduce quote mark and padding on mobile */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.8rem;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: -0.5rem;
  }
}