:root {
  --bg: #f6f3ef;
  --bg-alt: #eef2f6;
  --surface: #ffffff;
  --ink: #141a24;
  --ink-soft: #2b3442;
  --muted: #5e6a78;
  --primary: #1f6f8b;
  --primary-dark: #155063;
  --accent: #f2b94b;
  --accent-strong: #e6a52d;
  --ring: rgba(242, 185, 75, 0.35);
  --shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 50px rgba(17, 24, 39, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --nav-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #f6f3ef 35%, #eff3f8 100%);
  color: var(--ink-soft);
  line-height: 1.6;
  min-height: 100vh;
}

body.is-loading {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.section {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.section-alt {
  background: var(--bg-alt);
}

.services-section {
  position: relative;
  overflow: hidden;
  background: #0f131b;
  color: #fff;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1600&auto=format&fit=crop&q=70") center/cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 26, 0.85), rgba(31, 111, 139, 0.65));
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-head h2,
.services-section .section-head p {
  color: #fff;
}

.services-section .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.15);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

#quote {
  position: relative;
  top: calc(-1 * (var(--nav-height) + 20px));
  display: block;
  height: 0;
  visibility: hidden;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2000;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(60px);
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1200;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffd98c);
  transform-origin: left;
  transform: scaleX(0);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1e2531 0%, #11161f 70%);
  display: grid;
  place-items: center;
  gap: 16px;
  z-index: 2000;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Motion */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(32px);
}

[data-animate="fade-right"] {
  transform: translateX(-32px);
}

[data-animate="zoom-in"] {
  transform: scale(0.96);
}

[data-animate="zoom-in"].is-visible,
[data-animate="fade-left"].is-visible,
[data-animate="fade-right"].is-visible {
  transform: translateX(0) scale(1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 26, 36, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(7, 11, 18, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 20px;
}

.logo img {
  height: 42px;
}

.nav-panel {
  display: flex;
}

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

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta a::after {
  display: none;
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 22, 0.6);
  z-index: 900;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(242, 185, 75, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 111, 139, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: clamp(70px, 10vw, 120px);
  background: #0f131b;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 26, 0.78), rgba(31, 111, 139, 0.55));
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(242, 185, 75, 0.25), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 65vh, 640px);
}

.hero-copy {
  max-width: 540px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 18px 0 16px;
  color: #fff;
}

.hero-copy p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-banner {
  margin-top: 22px;
  padding: 10px 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.banner-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: banner-scroll 18s linear infinite;
  padding: 0 12px;
}

.banner-group {
  display: flex;
  gap: 24px;
  align-items: center;
}

.banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
}

.banner i {
  color: var(--accent);
}

.hero-banner:hover .banner-track {
  animation-play-state: paused;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.92rem;
}

.icon-pill {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(242, 185, 75, 0.25);
  color: #fff;
}

@keyframes banner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transform: translate3d(0, var(--parallax, 0px), 0);
  will-change: transform;
  background: #0f131b;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  z-index: 2;
}

.carousel-caption h4 {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(20, 26, 36, 0.75);
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 26, 36, 0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(20, 26, 36, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31, 111, 139, 0.12);
  transform: translate3d(0, var(--parallax, 0px), 0);
  will-change: transform;
}

.hero-card-top h3 {
  font-size: 1.5rem;
  margin: 12px 0 8px;
}

.hero-card-top p {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 111, 139, 0.12);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-card-meta a {
  font-weight: 700;
  color: var(--primary-dark);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(10, 14, 22, 0.3);
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.services-section .card:hover,
.services-section .card:focus-within {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 26px 50px rgba(10, 14, 22, 0.45);
  border-color: rgba(255, 255, 255, 0.45);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 139, 0.12);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.services-section .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 217, 140, 0.35), rgba(255, 255, 255, 0.1));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease;
}

.services-section .card:hover .card-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.services-section .card h3 {
  color: #fff;
}

.services-section .card p {
  color: rgba(255, 255, 255, 0.78);
}

/* Process section */
.process-section {
  position: relative;
  overflow: hidden;
  background: #0f131b;
  color: #fff;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1600&auto=format&fit=crop&q=70") center/cover no-repeat;
  opacity: 0.24;
  z-index: 0;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 26, 0.86), rgba(31, 111, 139, 0.5));
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .section-head h2,
.process-section .section-head p {
  color: #fff;
}

.process-section .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.process-section .step-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(10, 14, 22, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-section .step-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 26px 50px rgba(10, 14, 22, 0.45);
  border-color: rgba(255, 255, 255, 0.45);
}

.process-section .step-card h3 {
  color: #fff;
}

.process-section .step-card p {
  color: rgba(255, 255, 255, 0.78);
}

.process-section .step-number {
  background: linear-gradient(135deg, rgba(255, 217, 140, 0.5), rgba(255, 255, 255, 0.12));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Gallery */
.gallery-section {
  position: relative;
}

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

.gallery-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31, 111, 139, 0.08);
}

.gallery-compare {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0f131b;
}

.gallery-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-compare img:last-child {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.6s ease;
}

.gallery-compare::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(20, 26, 36, 0.2);
}

.gallery-card:hover .gallery-compare img:last-child {
  clip-path: inset(0 0 0 40%);
  transition: clip-path 0.6s ease;
}

.compare-label {
  position: absolute;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(20, 26, 36, 0.75);
  z-index: 2;
}

.compare-label.before {
  left: 14px;
}

.compare-label.after {
  right: 14px;
}

.gallery-meta {
  padding: 18px 20px 22px;
}

.gallery-meta h3 {
  margin-bottom: 6px;
}

.gallery-meta p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-section {
  position: relative;
  background: #f7f9fc;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1600&auto=format&fit=crop&q=70") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 10% 6%;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  z-index: 0;
  pointer-events: none;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-header {
  margin-bottom: 8px;
}

.about-text .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.about-title {
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 185, 75, 0));
  animation: title-sweep 2.4s ease-in-out infinite;
}

.about-text p {
  color: var(--muted);
  margin: 14px 0;
}

.about-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost.dark {
  border-color: rgba(20, 26, 36, 0.2);
  color: var(--ink);
}

.btn-ghost.dark:hover {
  background: rgba(20, 26, 36, 0.08);
}

.about-features {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 111, 139, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 139, 0.12);
  color: var(--primary);
}

.about-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 240px;
  background: #0f131b;
  aspect-ratio: 16 / 11;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 26, 36, 0.8);
  color: #fff;
  font-size: 0.85rem;
  z-index: 2;
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 26, 36, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  font-weight: 600;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-visual:hover .about-visual-overlay {
  opacity: 1;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid rgba(31, 111, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.about-card.accent {
  background: linear-gradient(135deg, rgba(31, 111, 139, 0.12), rgba(242, 185, 75, 0.2));
  border-color: rgba(242, 185, 75, 0.4);
}

.about-card.wide {
  grid-column: span 2;
  text-align: left;
}

/* Clients marquee */
.clients-section {
  background: #fff;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.clients-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: clients-scroll 20s linear infinite;
}

.clients-group {
  display: flex;
  gap: 22px;
  align-items: center;
}

.client-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.08);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(31, 111, 139, 0.12);
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes title-sweep {
  0% {
    width: 20%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 20%;
  }
}
@media (min-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

/* Testimonials */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonial-scroll 22s linear infinite;
}

.testimonial-group {
  display: flex;
  gap: 24px;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 auto;
}

.testimonial p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.stars {
  color: #f5b942;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.contact-card,
.form-card {
  height: 100%;
}
.contact-section {
  position: relative;
  overflow: hidden;
  background: #f2f6fb;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1600&auto=format&fit=crop&q=70") center/cover no-repeat;
  opacity: 0.16;
  z-index: 0;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(242, 185, 75, 0.1));
  z-index: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.15);
  border: 1px solid rgba(31, 111, 139, 0.12);
  backdrop-filter: blur(16px);
}

.contact-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 185, 75, 0));
  margin-bottom: 18px;
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 111, 139, 0.12);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 111, 139, 0.18), rgba(242, 185, 75, 0.35));
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.contact-text {
  display: grid;
  gap: 2px;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-text a {
  color: var(--ink);
  font-weight: 600;
}

.contact-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 111, 139, 0.12);
  color: var(--muted);
  line-height: 1.5;
}

.contact-note strong {
  color: var(--ink);
}

.form-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 26px 56px rgba(17, 24, 39, 0.16);
  border: 1px solid rgba(31, 111, 139, 0.15);
  position: relative;
  backdrop-filter: blur(16px);
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffd98c);
}

.form-header {
  margin-bottom: 18px;
}

.form-header h3 {
  margin: 10px 0 6px;
}

.form-header p {
  color: var(--muted);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 111, 139, 0.12);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-card h3 {
  margin-bottom: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 26, 36, 0.12);
  font-size: 1rem;
  background: rgba(248, 250, 252, 0.95);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 111, 139, 0.2);
  outline: none;
}

textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-footer i {
  color: var(--primary);
}

/* Footer */
.footer {
  background: #11161f;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  padding: 56px 0 32px;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 26px;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating call button */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd98c, var(--accent));
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(242, 185, 75, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floating-pulse 3.2s ease-in-out infinite;
}

.floating-call__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(20, 26, 36, 0.12);
}

.floating-call__icon i {
  font-size: 1rem;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(242, 185, 75, 0.45);
}

@media (max-width: 640px) {
  .floating-call {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }
}

@media (max-width: 520px) {
  .floating-call__label {
    display: none;
  }

  .floating-call {
    padding: 12px;
  }
}

@keyframes floating-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    gap: 32px;
  }

  .hero-grid {
    min-height: clamp(380px, 60vh, 520px);
  }
}

@media (max-width: 860px) {
  .nav-panel {
    position: fixed;
    top: calc(var(--nav-height) + 12px);
    left: 4%;
    right: 4%;
    background: rgba(20, 26, 36, 0.98);
    border-radius: 18px;
    padding: 22px;
    display: none;
    box-shadow: var(--shadow-md);
    z-index: 1001;
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 6px 0;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-grid {
    justify-content: center;
    text-align: center;
  }

  .about-card.wide {
    grid-column: span 1;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .carousel-caption h4 {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .spinner {
    animation: none;
  }

  .banner-track {
    animation: none;
    transform: none;
  }

  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .testimonial-group {
    flex-wrap: wrap;
    width: 100%;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }

  .clients-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .clients-group {
    flex-wrap: wrap;
    width: 100%;
  }

  .about-title::after {
    animation: none;
  }

  .floating-call {
    animation: none;
  }
}
