/* ============================================
   Mumbai A2Z IT Solution Stylesheet
   ============================================ */

:root {
  --primary: #92b1f5;
  --primary-dark: #8ea6eb;
  --primary-light: #afd2fc;
  --hero-dark: #00050a;
  --hero-blue: #162a45;
  --secondary: #0f172a;
  --heading: #f1f5f9;
  --accent: #06b6d4;
  --success: #25d366;
  --text: #cbd5e1;
  --text-light: #94a3b8;
  --bg: transparent;
  --bg-alt: transparent;
  --bg-card: transparent;
  --bg-elevated: transparent;
  --border: rgba(148, 163, 184, 0.3);
  --shadow: none;
  --shadow-lg: none;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  background-color: #030712;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  position: relative;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: #030712;
  background-image: none;
  background-attachment: scroll;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: #030712;
  contain: strict;
}

body > header,
body > footer {
  position: relative;
  z-index: 1;
}

body > section {
  position: relative;
  z-index: 1;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 40% at 50% 100%, rgba(6, 182, 212, 0.16) 0%, transparent 70%);
  opacity: 1;
}

header,
section,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

.section-title-3d {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #8e9cc4 0%, #92b1f5 45%, #9bdefb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(78, 120, 196, 0.85))
    drop-shadow(0 2px 0 rgba(146, 177, 245, 0.65))
    drop-shadow(0 3px 0 rgba(147, 197, 253, 0.45))
    drop-shadow(0 6px 16px rgba(15, 23, 42, 0.18));
}

.section-title-3d span {
  background: linear-gradient(135deg, var(--accent) 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title-3d::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  box-shadow: 0 2px 12px rgba(6, 182, 212, 0.4);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(175, 210, 252, 0.15);
  color: #fff;
  border-color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #1e293b;
  border-color: #1e293b;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #bbf7d0;
  color: #047857;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
  border: 1px solid #bbf7d0;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(187, 247, 208, 0.4);
}

.btn-call i {
  font-size: 0.75rem;
}

.btn-call:hover {
  background: #a7f3d0;
  border-color: #a7f3d0;
  color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(167, 243, 208, 0.5);
}

.btn-call--footer {
  font-size: 0.7rem;
  padding: 5px 12px;
  gap: 4px;
}

.btn-call--footer i {
  font-size: 0.65rem;
}

.btn-call--cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.contact-card .btn-call {
  margin-top: 0.35rem;
}

.contact-card a.btn-call {
  color: #047857;
  font-size: 0.72rem;
  padding: 5px 12px;
}

.contact-card a.btn-call:hover {
  color: #047857;
}

.footer-col .btn-call {
  margin-top: 0.15rem;
  background: #bbf7d0;
  border-color: #bbf7d0;
  color: #047857;
}

.footer-col .btn-call:hover {
  background: #a7f3d0;
  border-color: #a7f3d0;
  color: #047857;
}

.footer-col ul a.btn-call {
  color: #047857;
}

.footer-col ul a.btn-call:hover {
  color: #047857;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 5, 10, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(175, 210, 252, 0.18);
  box-shadow: none;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: var(--nav-height);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 0.75rem;
}

.logo {
  font-size: clamp(0.85rem, 3.2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-img--sm {
  width: 40px;
  height: 40px;
}

.logo-text span {
  color: var(--primary-light);
}

.logo-text {
  font-size: clamp(0.8rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ---- Mobile nav backdrop ---- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
}

.nav-backdrop.active {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.is-open {
  background: rgba(8, 72, 84, 0.95);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(3, 7, 18, 0.72) 0%, rgba(15, 23, 42, 0.55) 100%),
    url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920&q=80') center/cover no-repeat;
  color: #fff;
  padding: 4rem 5%;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-block;
  background: transparent;
  backdrop-filter: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.hero-stat p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 2rem 5%;
  border-bottom: 1px solid rgba(175, 210, 252, 0.15);
}

.trust-bar:has(+ .services) {
  padding-bottom: 0;
  border-bottom: none;
}

.trust-bar + .services {
  padding-top: 1.5rem;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--primary-light);
  font-size: 1.25rem;
}

/* ---- Services ---- */
.services {
  padding: 5rem 5%;
  background: transparent;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.services:has(+ .about) {
  padding-bottom: 1.5rem;
}

.services + .about {
  padding-top: 2.5rem;
}

.services:has(+ .services) {
  padding-bottom: 1.5rem;
}

.services + .services {
  padding-top: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  justify-items: stretch;
}

.service-grid > * {
  min-width: 0;
  max-width: 100%;
}

.card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(175, 210, 252, 0.45);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.card-icon--image {
  width: 100%;
  max-width: 180px;
  height: auto;
  background: none;
  border-radius: var(--radius-md);
}

.card-icon--image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.card--value,
.card--service {
  padding: 0 0 2rem;
  overflow: hidden;
  min-width: 0;
}

.card-marked-area {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.card-marked-area img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  background: transparent;
}

.card-marked-area h3 {
  margin: 0;
  padding: 0.9rem 1.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.card--value > p,
.card--service > p {
  padding: 0 1.75rem;
  margin-bottom: 0;
}

.card--service .card-marked-area {
  line-height: normal;
  padding: 0;
  margin-bottom: 0.5rem;
  border-bottom: none;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card--service .card-marked-area__media {
  --card-img-size: clamp(148px, 28vw, 188px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--card-img-size);
  height: var(--card-img-size);
  min-width: var(--card-img-size);
  min-height: var(--card-img-size);
  margin: 1.35rem auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.55);
  border: 4px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
  padding: 12px;
  box-sizing: border-box;
}

.card--service .card-marked-area__media::before {
  display: none;
}

.card--service .card-marked-area__media::after {
  display: none;
}

.card--service .card-marked-area__media img,
.card--service .card-marked-area > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.card--service .card-marked-area h3 {
  position: relative;
  z-index: 1;
  line-height: 1.3;
  width: 100%;
  padding: 0 1.25rem 0.35rem;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Software / wide infographic — slightly larger circle */
.card--service-img-fit .card-marked-area__media {
  --card-img-size: clamp(168px, 32vw, 208px);
}

.card--service-img-fit .card-marked-area__media img {
  max-width: 100%;
  max-height: 100%;
}

.card--value .card-marked-area {
  line-height: normal;
  padding: 0;
  margin-bottom: 0.5rem;
  border-bottom: none;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card--value .card-marked-area img {
  --card-img-size: clamp(148px, 28vw, 188px);
  aspect-ratio: 1 / 1;
  width: var(--card-img-size);
  height: var(--card-img-size);
  min-width: var(--card-img-size);
  min-height: var(--card-img-size);
  max-height: none;
  margin: 1.35rem auto 1rem;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.82);
  background: rgba(10, 22, 40, 0.55);
  box-sizing: border-box;
  flex-shrink: 0;
  display: block;
}

.card--value .card-marked-area h3 {
  position: relative;
  z-index: 1;
  line-height: 1.3;
  width: 100%;
  padding: 0 1.25rem 0.35rem;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card--service .card-link {
  display: inline-block;
  margin-top: 1.25rem;
}

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

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--primary-light);
}

/* ---- About ---- */
.about {
  padding: 5rem 5%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(175, 210, 252, 0.12);
  border-bottom: 1px solid rgba(175, 210, 252, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-grid > * {
  min-width: 0;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image--banner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-image--banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-image--banner {
    margin-top: 2rem !important;
    padding: 0 0.25rem;
  }
}

.about-infographic {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  border: 1px solid var(--border);
}

.about-infographic__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
}

.about-infographic__intro h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.15rem;
}

.about-infographic__company {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.about-infographic__intro > p {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.about-infographic__intro > p strong {
  color: var(--primary-light);
}

.about-infographic__mission {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.about-infographic__mission > i {
  color: var(--primary-light);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-infographic__mission strong {
  display: block;
  font-size: 0.72rem;
  color: var(--heading);
  margin-bottom: 0.15rem;
}

.about-infographic__mission p {
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--text);
}

.about-infographic__mission p strong {
  color: var(--primary-light);
  font-weight: 600;
}

.about-infographic__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 110px;
}

.about-infographic__logo {
  width: 36px;
  height: 36px;
  margin-bottom: 0.35rem;
}

.about-infographic__brand-name {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  text-transform: uppercase;
}

.about-infographic__tagline {
  font-size: 0.58rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.about-infographic__visual {
  position: relative;
  margin: 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.about-infographic__visual img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.about-infographic__pills {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: transparent;
}

.about-infographic__pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.58rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-infographic__pills i {
  font-size: 0.55rem;
}

.about-infographic__values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  list-style: none;
  flex: 1;
}

.about-infographic__values li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.about-infographic__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
  font-size: 0.75rem;
  box-shadow: none;
}

.about-infographic__values li strong {
  font-size: 0.62rem;
  color: var(--primary-light);
}

.about-infographic__values li span:last-child {
  font-size: 0.55rem;
  line-height: 1.35;
  color: var(--text-light);
}

.about-infographic__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  color: #fff;
  border-top: 1px solid rgba(175, 210, 252, 0.15);
}

.about-infographic__services span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  line-height: 1.3;
}

.about-infographic__services i {
  font-size: 0.65rem;
  color: var(--accent);
  flex-shrink: 0;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.about-intro-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about-marked-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: var(--heading);
}

.about-headline {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto 1.75rem;
  max-width: 100%;
  background: linear-gradient(135deg, var(--hero-blue) 0%, var(--primary-light) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-headline span {
  font-weight: 800;
  -webkit-text-fill-color: var(--primary-light);
  color: var(--primary-light);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-story-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(175, 210, 252, 0.2);
  background: transparent;
  box-shadow: none;
}

.about-story-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(175, 210, 252, 0.15);
  transition: transform var(--transition), border-color var(--transition);
}

.about-story-item:hover {
  transform: translateY(-2px);
  border-color: rgba(175, 210, 252, 0.4);
  box-shadow: none;
}

.about-story-item--highlight {
  background: transparent;
  border-color: rgba(175, 210, 252, 0.35);
}

.about-story-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(147, 197, 253, 0.28);
}

.about-story-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #e2e8f0;
}

.about-story-item p strong {
  color: #c7ddfe;
  font-weight: 600;
}

.about-story-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(175, 210, 252, 0.2);
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-story-item--highlight p {
  display: flex;
  flex-direction: column;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature i {
  color: var(--primary);
}

/* ---- Pricing ---- */
.pricing {
  padding: 5rem 5%;
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.price-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(175, 210, 252, 0.45);
}

.price-card.featured {
  background: transparent;
  color: #fff;
  border-color: var(--primary-light);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price-card.featured h3,
.price-card.featured h4,
.price-card.featured .price-features li {
  color: #fff;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-features {
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.price-features li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.price-card.featured .price-features li i {
  color: #fff;
}

/* ---- CTA Section ---- */
.cta {
  padding: 5rem 5%;
  background: transparent;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(175, 210, 252, 0.12);
  border-bottom: 1px solid rgba(175, 210, 252, 0.12);
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta:has(+ .booking) {
  padding-bottom: 1.5rem;
}

.cta + .booking {
  padding-top: 2.5rem;
}

.services:has(+ .cta) {
  padding-bottom: 1.5rem;
}

.services + .cta {
  padding-top: 2.5rem;
}

/* ---- Booking & Forms ---- */
.booking,
.contact-section {
  padding: 5rem 5%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(175, 210, 252, 0.12);
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: transparent;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(175, 210, 252, 0.2);
}

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

.form-group select option {
  background: #0a1628;
  color: var(--text);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0a1628 inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  width: 100%;
}

.form-success i {
  font-size: 2.5rem;
  margin: 0 auto 1.25rem;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(146, 177, 245, 0.12);
  border: 2px solid rgba(175, 210, 252, 0.35);
}

.form-success h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.form-success.show {
  display: block;
}

.form-wrapper--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.form-wrapper--success > h2,
.form-wrapper--success > h3,
.form-wrapper--success > .section-subtitle,
.form-wrapper--success > form,
.form-wrapper--success > .form-error {
  display: none !important;
}

.form-wrapper--success .form-success.show {
  display: block;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  background: rgba(185, 28, 28, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.35);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-error.show {
  display: block;
}

form button[type="submit"]:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

form.hidden {
  display: none;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 5rem 5%;
  background: transparent;
}

.testimonial-slider {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial {
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: opacity 0.5s ease;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.testimonial p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial h4 {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ---- FAQ ---- */
.faq {
  padding: 5rem 5%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(175, 210, 252, 0.12);
}

.booking:has(+ .faq) {
  padding-bottom: 1.5rem;
}

.booking + .faq {
  padding-top: 2.5rem;
}

.faq:has(+ .contact-section) {
  padding-bottom: 1.5rem;
}

.faq + .contact-section {
  padding-top: 2.5rem;
}

.contact-section:has(+ .booking) {
  padding-bottom: 1.5rem;
}

.contact-section + .booking {
  padding-top: 2.5rem;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: transparent;
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.contact-grid > * {
  min-width: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-heading-3d {
  font-size: clamp(1.9rem, 4.2vw, 2.45rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #afd2fc 45%, #9bdefb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(175, 210, 252, 0.45));
}

.contact-heading-3d::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.35);
}

.contact-heading-3d--center {
  text-align: center;
}

.contact-heading-3d--center::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  color: #fff;
  font-size: 1.1rem;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--primary-light);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.contact-section:has(+ footer) {
  padding-bottom: 1.5rem;
}

.contact-section + footer {
  padding-top: 2.5rem;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #fff;
  padding: 5rem 5% 4.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.page-header:has(+ .about),
.page-header:has(+ .services),
.page-header:has(+ .contact-section) {
  padding-bottom: 1.5rem;
}

.page-header + .about,
.page-header + .services,
.page-header + .contact-section {
  padding-top: 2.5rem;
}

.page-header-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 900px;
}

.page-header-effects::before {
  content: '';
  position: absolute;
  inset: -60%;
  background:
    radial-gradient(circle at 18% 28%, rgba(139, 92, 246, 0.42) 0%, transparent 48%),
    radial-gradient(circle at 78% 18%, rgba(6, 182, 212, 0.38) 0%, transparent 46%),
    radial-gradient(circle at 82% 72%, rgba(236, 72, 153, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 12% 78%, rgba(147, 197, 253, 0.38) 0%, transparent 46%),
    radial-gradient(circle at 48% 52%, rgba(168, 85, 247, 0.28) 0%, transparent 58%),
    radial-gradient(circle at 62% 38%, rgba(34, 211, 238, 0.25) 0%, transparent 42%);
  filter: blur(48px);
  animation: headerMeshShift 8s ease-in-out infinite alternate;
}

.page-header-effects::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 58, 95, 0.1) 100%),
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(15, 23, 42, 0.08), transparent 70%);
}

.page-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  transform-style: preserve-3d;
  animation: orbFloat 4s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: 8%;
  left: 12%;
  background: radial-gradient(circle at 35% 30%, #c4b5fd, #7c3aed 55%, transparent 75%);
  box-shadow: 0 0 90px rgba(139, 92, 246, 0.7);
  animation-duration: 4s;
}

.orb-2 {
  width: 160px;
  height: 160px;
  top: 55%;
  right: 10%;
  background: radial-gradient(circle at 40% 35%, #67e8f9, #0891b2 55%, transparent 75%);
  box-shadow: 0 0 80px rgba(6, 182, 212, 0.65);
  animation-duration: 3.5s;
  animation-delay: -1s;
}

.orb-3 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  left: 28%;
  background: radial-gradient(circle at 30% 40%, #f9a8d4, #db2777 55%, transparent 75%);
  box-shadow: 0 0 70px rgba(236, 72, 153, 0.6);
  animation-duration: 3.8s;
  animation-delay: -2s;
}

.orb-4 {
  width: 120px;
  height: 120px;
  top: 22%;
  right: 28%;
  background: radial-gradient(circle at 45% 30%, #afd2fc, #92b1f5 55%, transparent 75%);
  box-shadow: 0 0 65px rgba(147, 197, 253, 0.6);
  animation-duration: 3.2s;
  animation-delay: -0.5s;
}

.orb-5 {
  width: 100px;
  height: 100px;
  bottom: 28%;
  right: 38%;
  background: radial-gradient(circle at 50% 40%, #5eead4, #0d9488 55%, transparent 75%);
  box-shadow: 0 0 55px rgba(45, 212, 191, 0.55);
  animation-duration: 4.5s;
  animation-delay: -3s;
}

@keyframes headerMeshShift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(4%, -3%) rotate(4deg) scale(1.06);
  }

  66% {
    transform: translate(-3%, 4%) rotate(-3deg) scale(0.97);
  }

  100% {
    transform: translate(2%, 2%) rotate(2deg) scale(1.03);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  }

  25% {
    transform: translate3d(24px, -28px, 50px) rotateX(18deg) rotateY(12deg) scale(1.05);
  }

  50% {
    transform: translate3d(-18px, 22px, 25px) rotateX(-12deg) rotateY(22deg) scale(0.95);
  }

  75% {
    transform: translate3d(20px, 12px, -35px) rotateX(8deg) rotateY(-16deg) scale(1.02);
  }
}

@keyframes orbFloatMobile {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  33% {
    transform: translate3d(16px, -18px, 0) scale(1.06);
  }

  66% {
    transform: translate3d(-14px, 16px, 0) scale(0.96);
  }
}

@media (max-width: 991px) {
  .page-header {
    min-height: 240px;
    padding: 4rem 1.25rem 3.5rem;
  }

  .page-header-effects::before {
    filter: blur(36px);
    inset: -40%;
    animation: headerMeshShift 6s ease-in-out infinite alternate;
  }

  .page-header-effects::after {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(30, 58, 95, 0.32) 100%),
      radial-gradient(ellipse 120% 80% at 50% 100%, rgba(15, 23, 42, 0.2), transparent 70%);
  }

  .orb {
    opacity: 0.9;
    animation-name: orbFloatMobile;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  .orb-1 {
    width: 110px;
    height: 110px;
    top: 6%;
    left: 4%;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.75);
    animation-duration: 3.5s;
  }

  .orb-2 {
    width: 95px;
    height: 95px;
    top: 52%;
    right: 4%;
    box-shadow: 0 0 55px rgba(6, 182, 212, 0.7);
    animation-duration: 3.2s;
    animation-delay: -0.8s;
  }

  .orb-3 {
    width: 85px;
    height: 85px;
    bottom: 12%;
    left: 12%;
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.65);
    animation-duration: 3.3s;
    animation-delay: -1.5s;
  }

  .orb-4 {
    width: 75px;
    height: 75px;
    top: 18%;
    right: 12%;
    box-shadow: 0 0 45px rgba(147, 197, 253, 0.65);
    animation-duration: 3s;
    animation-delay: -0.5s;
  }

  .orb-5 {
    width: 65px;
    height: 65px;
    bottom: 22%;
    right: 22%;
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.6);
    animation-duration: 3.8s;
    animation-delay: -2s;
  }
}

@media (max-width: 480px) {
  .orb-1 {
    width: 85px;
    height: 85px;
    left: 2%;
  }

  .orb-2 {
    width: 70px;
    height: 70px;
    right: 2%;
  }

  .orb-3 {
    width: 65px;
    height: 65px;
    left: 8%;
  }

  .orb-4 {
    width: 60px;
    height: 60px;
    right: 8%;
  }

  .orb-5 {
    width: 55px;
    height: 55px;
    right: 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-header-effects::before,
  .orb {
    animation: none;
  }
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header-line {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #fff;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb span {
  color: var(--primary-light);
  font-weight: 500;
}

/* ---- Services Page Detail ---- */
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.service-detail-grid > * {
  min-width: 0;
  max-width: 100%;
}

.service-detail-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  min-width: 0;
  max-width: 100%;
}

.service-detail-card > div:not(.service-detail-icon) {
  min-width: 0;
  flex: 1;
}

.service-detail-card:hover {
  border-color: rgba(175, 210, 252, 0.45);
  transform: translateY(-4px);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  max-width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.55);
  border: 3px solid rgba(255, 255, 255, 0.82);
}

.service-detail-icon img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.service-detail-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.service-detail-card h3 {
  margin-bottom: 0.5rem;
}

.service-detail-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.service-detail-card ul {
  list-style: none;
}

.service-detail-card ul li {
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  line-height: 1.5;
}

.service-detail-card ul li i {
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.2em;
}

/* ---- Team Section ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(175, 210, 252, 0.45);
  transform: translateY(-5px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2.5rem;
  color: #fff;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Org Chart ---- */
.org-chart {
  max-width: 1100px;
  margin: 0 auto;
}

.org-founder-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.org-founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 580px;
}

.org-founder-avatar {
  flex-shrink: 0;
  width: clamp(88px, 14vw, 104px);
  height: clamp(88px, 14vw, 104px);
  margin: 0 auto 0.25rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #4e72d7, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #fff;
  box-shadow: 0 8px 24px rgba(146, 177, 245, 0.28);
}

.org-founder-info {
  width: 100%;
}

.org-founder-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.org-founder-role {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.org-founder-bio {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.org-cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 360px;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.org-cert-badge i {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: var(--primary-light);
  margin-top: 0.15rem;
}

.org-cert-title {
  color: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.org-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.org-cert-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
}

.org-cert-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
}

.org-cert-list li:last-child {
  margin-bottom: 0;
}

.org-connector {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.org-connector svg {
  width: 100%;
  height: 50px;
  display: block;
}

.org-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.org-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.org-level-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.org-level-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
}

.org-level--1 .org-level-icon { background: #22c55e; }
.org-level--2 .org-level-icon { background: #9dc0fa; }
.org-level--3 .org-level-icon { background: #8b5cf6; }

.org-level-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.org-level--1 .org-level-label { color: #22c55e; }
.org-level--2 .org-level-label { color: #9dc0fa; }
.org-level--3 .org-level-label { color: #8b5cf6; }

.org-level-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading);
}

.org-level-desc {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.org-members {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.org-members li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.org-members li i {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.org-level--1 .org-members li i { color: #22c55e; }
.org-level--2 .org-members li i { color: #9dc0fa; }
.org-level--3 .org-members li i { color: #8b5cf6; }

.org-members li span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.org-members li strong {
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.org-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border: 1px solid var(--primary-light);
  border-radius: 50px;
  background: var(--bg-card);
  text-align: center;
}

.org-footer i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--primary-light);
}

.org-footer p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 991px) {
  .org-founder-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .org-founder-card,
  .org-cert-badge {
    width: 100%;
    max-width: 520px;
  }

  .org-cert-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .org-cert-badge i {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }

  .org-cert-list {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .org-levels {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .org-connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .org-founder-card,
  .org-cert-badge {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }

  .org-founder-info h3 {
    font-size: 1.1rem;
  }

  .org-founder-bio {
    font-size: 0.85rem;
  }
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.process-step:hover::before {
  background: rgba(175, 210, 252, 0.15);
  border-color: #fff;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Footer ---- */
footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(175, 210, 252, 0.18);
  padding: 4rem 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.85fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  gap: 10px;
}

.footer-brand .logo-img {
  width: 40px;
  height: 40px;
}

.footer-brand .logo-chevron {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.social-links .social-facebook {
  background: #1877f2;
}

.social-links .social-facebook:hover {
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.45);
}

.social-links .social-twitter {
  background: #000000;
}

.social-links .social-twitter:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.social-links .social-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.social-links .social-instagram:hover {
  box-shadow: 0 6px 16px rgba(221, 42, 123, 0.4);
}

.social-links .social-linkedin {
  background: #0a66c2;
}

.social-links .social-linkedin:hover {
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.45);
}

.social-links .social-whatsapp {
  background: #25d366;
}

.social-links .social-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-col--services ul li {
  margin-bottom: 0;
}

.footer-services-list {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-services-list > ul {
  flex: 1 1 0;
  min-width: 0;
}

.footer-services-list > ul li {
  margin-bottom: 0.5rem;
}

.footer-services-list > ul li:last-child {
  margin-bottom: 0;
}

.footer-col--services ul a {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5% 2.5rem;
}

.footer-logo-center__text {
  margin: 0;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 0%, #afd2fc 45%, #9bdefb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(78, 120, 196, 0.55))
    drop-shadow(0 2px 0 rgba(146, 177, 245, 0.4))
    drop-shadow(0 4px 10px rgba(175, 210, 252, 0.35));
  white-space: nowrap;
}

.footer-logo-center__text--left {
  text-align: right;
}

.footer-logo-center__text--right {
  text-align: left;
  background: linear-gradient(135deg, #f8fafc 0%, #afd2fc 40%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-logo-center__text--right span {
  background: linear-gradient(135deg, #afd2fc 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
}

.footer-logo-center__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  background: transparent;
  border: 2px solid rgba(175, 210, 252, 0.28);
  box-shadow: none;
  transition: transform var(--transition), border-color var(--transition);
}

.footer-logo-center__link:hover {
  transform: scale(1.05);
  border-color: rgba(175, 210, 252, 0.5);
  box-shadow: none;
}

.footer-logo-center__img {
  width: clamp(68px, 20vw, 92px);
  height: clamp(68px, 20vw, 92px);
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* ---- Page Scroll Navigation Arrows ---- */
.scroll-nav {
  position: fixed;
  left: auto;
  right: 31px;
  top: auto;
  bottom: 100px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.scroll-nav__btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(175, 210, 252, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--primary-light);
  text-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: none;
  transition: all var(--transition);
}

.scroll-nav__btn:hover {
  background: rgba(175, 210, 252, 0.12);
  border-color: rgba(175, 210, 252, 0.55);
  color: #c7ddfe;
  transform: translateY(-2px);
  box-shadow: none;
}

.scroll-nav__btn--middle {
  font-size: 0.85rem;
}

.scroll-nav__btn--middle i {
  transform: rotate(90deg);
}

/* ---- Floating Call & WhatsApp Buttons ---- */
.call-fab {
  position: fixed;
  bottom: 266px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #bbf7d0;
  color: #047857;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(187, 247, 208, 0.5);
  z-index: 999;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  animation: fabPulseCall 2.2s ease-in-out infinite;
  contain: layout style paint;
}

.call-fab:hover {
  animation-play-state: paused;
  transform: scale(1.15);
  background: #6ee7b7;
  color: #064e3b;
  box-shadow: 0 8px 28px rgba(110, 231, 183, 0.75), 0 0 0 6px rgba(110, 231, 183, 0.25);
}

.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  animation: fabPulseWhatsApp 2.2s ease-in-out infinite;
  animation-delay: 0.4s;
  contain: layout style paint;
}

.whatsapp:hover {
  animation-play-state: paused;
  transform: scale(1.15);
  background: #16a34a;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7), 0 0 0 6px rgba(37, 211, 102, 0.25);
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp {
    top: auto;
    bottom: 16px;
    right: 10px;
  }

  .scroll-nav {
    left: auto;
    right: 17px;
    top: auto;
    bottom: 84px;
    transform: none;
    gap: 10px;
  }

  .call-fab {
    top: auto;
    bottom: 234px;
    right: 10px;
  }
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-header-effects::before {
    filter: blur(28px);
    animation: headerMeshShift 5s ease-in-out infinite alternate;
  }

  .orb {
    animation-name: orbFloatMobile;
    animation-duration: 3s;
  }

  .whatsapp,
  .call-fab {
    animation-duration: 2.2s;
  }

  .hero-badge {
    backdrop-filter: none;
  }

  body::before {
    opacity: 0.2;
    background-size: 56px 56px, 56px 56px, 112px 112px;
  }

  body::after {
    opacity: 0.12;
    background-size: 100% 100%, 100% 100%, 100% 100%, 32px 32px;
  }

  header,
  .trust-bar,
  .about,
  .booking,
  .contact-section,
  .faq,
  .form-wrapper,
  .card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 769px) {
  .fade-in-left {
    transform: translateX(-30px);
  }

  .fade-in-left.visible {
    transform: translateX(0);
  }

  .fade-in-right {
    transform: translateX(30px);
  }

  .fade-in-right.visible {
    transform: translateX(0);
  }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fabPulseCall {
  0%,
  100% {
    transform: scale(1);
    background: #bbf7d0;
    color: #047857;
    box-shadow: 0 4px 16px rgba(187, 247, 208, 0.5), 0 0 0 0 rgba(134, 239, 172, 0.35);
  }

  50% {
    transform: scale(1.12);
    background: #86efac;
    color: #065f46;
    box-shadow: 0 8px 26px rgba(134, 239, 172, 0.75), 0 0 0 10px rgba(134, 239, 172, 0.18);
  }
}

@keyframes fabPulseWhatsApp {
  0%,
  100% {
    transform: scale(1);
    background: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  50% {
    transform: scale(1.12);
    background: #16a34a;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

/* ---- Responsive ---- */
@media (min-width: 576px) {
  .service-grid:not(.service-grid--values) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 992px) {
  .service-grid:not(.service-grid--values) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .card--service .card-marked-area__media {
    --card-img-size: clamp(160px, 22vw, 188px);
  }

  .card--service-img-fit .card-marked-area__media {
    --card-img-size: clamp(175px, 24vw, 205px);
  }
}

@media (min-width: 1200px) {
  .service-grid:not(.service-grid--values) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card--service .card-marked-area__media {
    --card-img-size: 188px;
  }

  .card--service-img-fit .card-marked-area__media {
    --card-img-size: 205px;
  }
}

/* Values section (4 cards) — 2×2 on tablet, 4 across on desktop */
@media (min-width: 768px) {
  .service-grid--values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .service-grid--values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

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

  .footer-grid > * {
    min-width: 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: auto;
    max-height: 320px;
  }

  .about-image--banner img {
    height: auto;
    max-height: none;
  }

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

  .about-infographic__brand {
    flex-direction: row;
    gap: 0.75rem;
    text-align: left;
    align-items: center;
  }

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

  .about-infographic__services {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  body.nav-open header {
    z-index: 1003;
  }

  body.nav-open .hamburger {
    z-index: 1004;
  }

  .navbar {
    height: var(--nav-height);
    min-height: auto;
    padding: 0 5%;
    gap: 0.75rem;
    align-items: center;
  }

  .logo {
    font-size: clamp(0.72rem, 3vw, 0.95rem);
    max-width: calc(100vw - 72px);
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

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

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin-left: 0;
    background: rgba(0, 5, 10, 0.72);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0 1.5rem;
    gap: clamp(1.25rem, 4.5vh, 1.75rem);
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    min-height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open::before,
  .nav-links.open::after {
    content: '';
    flex: 1 1 auto;
    min-height: 1.5rem;
    width: 100%;
  }

  .nav-links li {
    line-height: 1.3;
    width: auto;
    text-align: center;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    padding: 0.5rem 0.75rem 0.85rem;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    text-align: center;
    line-height: 1.3;
  }

  .nav-links a::after {
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
  }

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

  .hero {
    min-height: auto;
    padding: 3rem 1.25rem;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .services,
  .about,
  .booking,
  .contact-section,
  .faq,
  .cta,
  .trust-bar,
  .pricing,
  .testimonials {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services + .services,
  .services + .about,
  .services + .cta {
    padding-top: 1.5rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .page-header {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .service-grid,
  .service-detail-grid {
    gap: 1.5rem;
  }

  .card:hover {
    transform: none;
  }

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

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

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

  .footer-logo-center {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.75rem 5% 2rem;
  }

  .footer-logo-center__text {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    white-space: normal;
    text-align: center;
  }

  .footer-logo-center__text--left,
  .footer-logo-center__text--right {
    text-align: center;
  }

  .footer-services-list {
    flex-direction: column;
    gap: 0;
  }

  .service-detail-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
  }

  .service-detail-card > div:not(.service-detail-icon) {
    width: 100%;
    text-align: left;
  }

  .service-detail-card h3 {
    text-align: left;
  }

  .service-detail-card p {
    text-align: left;
  }

  .service-detail-card ul {
    width: 100%;
    text-align: left;
  }

  .service-detail-icon {
    margin: 0 auto 0.75rem;
  }

  .org-footer {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .service-grid:not(.service-grid--values) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .card--service .card-marked-area__media {
    --card-img-size: clamp(155px, 30vw, 188px);
  }

  .card--service-img-fit .card-marked-area__media {
    --card-img-size: clamp(168px, 34vw, 200px);
  }
}

@media (max-width: 767px) {
  .service-grid--values {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .card--service .card-marked-area__media {
    --card-img-size: clamp(150px, 42vw, 188px);
  }

  .card--service-img-fit .card-marked-area__media {
    --card-img-size: clamp(165px, 46vw, 200px);
  }
}

@media (max-width: 576px) {
  .service-detail-card {
    padding: 1.25rem 1rem;
  }

  .service-detail-card p,
  .service-detail-card ul li {
    font-size: 0.85rem;
  }

  .navbar {
    padding: 0 1rem;
  }

  .card-marked-area h3 {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .card--value > p,
  .card--service > p {
    padding: 0 1.25rem;
    text-align: left;
  }

  .card--service .card-link {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .card--service .card-marked-area__media {
    --card-img-size: clamp(145px, 52vw, 175px);
  }

  .card--service-img-fit .card-marked-area__media {
    --card-img-size: clamp(158px, 56vw, 188px);
  }

  .card--value .card-marked-area img {
    --card-img-size: clamp(145px, 52vw, 175px);
    max-height: none;
  }

  .card--value > p {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.8rem;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .page-header {
    padding: 3.5rem 1rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    white-space: normal;
    text-align: center;
  }

  .form-wrapper {
    padding: 1.25rem;
  }

  .trust-items {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-infographic__values {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-infographic__visual img {
    height: 120px;
  }

  .footer-services-title {
    padding-left: 0;
  }

  .call-fab {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    top: auto;
    bottom: 234px;
    right: 10px;
  }

  .scroll-nav {
    left: auto;
    right: 17px;
    top: auto;
    bottom: 84px;
    transform: none;
    gap: 10px;
  }

  .scroll-nav__btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .scroll-nav__btn--middle {
    font-size: 0.72rem;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    top: auto;
    bottom: 16px;
    right: 10px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.15rem;
  }

  .faq-answer p {
    padding: 0 1.15rem 1rem;
  }

  .map-container iframe {
    height: 260px;
  }

  .about-story-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-story-item__icon {
    margin: 0 auto;
  }
}

/* ---- Fast smooth scrolling (all devices) ---- */
html.fast-scroll {
  scroll-behavior: auto;
}

html.fast-scroll body {
  background-attachment: scroll;
  -webkit-overflow-scrolling: touch;
}

html.fast-scroll body::before,
html.fast-scroll body::after {
  display: none;
}

html.is-scrolling .call-fab,
html.is-scrolling .whatsapp,
html.is-scrolling .orb,
html.is-scrolling .page-header-effects::before {
  animation-play-state: paused;
}

html.fast-scroll .fade-in,
html.fast-scroll .fade-in-left,
html.fast-scroll .fade-in-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.fast-scroll .hero,
html.fast-scroll .hero-content {
  animation: none;
}

html.fast-scroll .section-title-3d,
html.fast-scroll .contact-heading-3d,
html.fast-scroll .footer-logo-center__text {
  filter: none;
}

html.fast-scroll .card--service .card-marked-area__media.has-image-fill::before {
  display: none;
}

html.fast-scroll .card:hover,
html.fast-scroll .service-detail-card:hover,
html.fast-scroll .price-card:hover,
html.fast-scroll .team-card:hover,
html.fast-scroll .contact-card:hover,
html.fast-scroll .about-story-item:hover {
  transform: none;
}

html.fast-scroll #particles-bg {
  will-change: auto;
}

html.fast-scroll header,
html.fast-scroll .trust-bar,
html.fast-scroll .about,
html.fast-scroll .booking,
html.fast-scroll .contact-section,
html.fast-scroll .faq,
html.fast-scroll .form-wrapper,
html.fast-scroll .card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ---- Wallpaper visible: text readability ---- */
.section-title,
.card h3,
.page-header h1,
.contact-heading-3d {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* ---- Performance: fast smooth scroll (phone, tablet, touch) ---- */
@media (max-width: 1024px) {
  html,
  html.perf-lite {
    scroll-behavior: auto;
  }

  body {
    background-attachment: scroll;
  }

  body::before,
  body::after {
    display: none;
  }

  .page-header-effects::before {
    animation: headerMeshShift 6s ease-in-out infinite alternate;
    filter: blur(20px);
  }

  .orb {
    animation-name: orbFloatMobile;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  .hero {
    animation: none;
  }

  .hero-content {
    animation: none;
  }

  .card--service .card-marked-area__media.has-image-fill::before,
  .card--service .card-marked-area__media.has-image-fill::after {
    display: none;
  }

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

  .card:hover,
  .service-detail-card:hover,
  .price-card:hover,
  .team-card:hover,
  .contact-card:hover,
  .about-story-item:hover {
    transform: none;
  }
}

html.perf-lite header,
html.perf-lite .trust-bar,
html.perf-lite .about,
html.perf-lite .booking,
html.perf-lite .contact-section,
html.perf-lite .faq,
html.perf-lite .form-wrapper,
html.perf-lite .card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.perf-lite .whatsapp,
html.perf-lite .call-fab {
  animation-duration: 2.6s;
}

a,
button,
.btn,
.hamburger {
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
