/* ============================================================
   NextBridge Business Support FZ-LLC — Main Stylesheet
   Corporate UAE business design — Dark Blue, White, Teal
   ============================================================ */

/* ── Image Utilities ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-rounded {
  border-radius: var(--radius-md);
}

.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 22, 40, .78) 0%, rgba(10, 22, 40, .45) 60%, rgba(0, 180, 160, .15) 100%);
  pointer-events: none;
}

/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: saturate(0.5);
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero-bg-shapes,
.hero-grid-overlay {
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
}

/* About image */
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-photo:hover img {
  transform: scale(1.04);
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .7) 0%, transparent 50%);
}

.about-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
}

.about-photo-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.about-photo-label span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
}

/* Service card image header */
.service-img-header {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.service-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-img-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 22, 40, .75), rgba(0, 180, 160, .2));
}

.service-full-card:hover .service-img-header img {
  transform: scale(1.06);
}

.service-img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 22px 16px;
}

.service-img-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(0, 180, 160, .25);
  border: 1px solid rgba(0, 180, 160, .4);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.service-img-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal-400);
}

.service-img-title h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* UAE City photo band */
.city-photo-band {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.city-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.city-photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, .88) 0%, rgba(10, 22, 40, .55) 55%, rgba(10, 22, 40, .25) 100%);
  display: flex;
  align-items: center;
}

.city-band-content {
  max-width: 560px;
  padding: 0 24px;
}

.city-band-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.city-band-content p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* Gallery grid (why-us page) */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, .18);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 180, 160, .2);
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --blue-900: #0a1628;
  --blue-800: #0f2244;
  --blue-700: #163361;
  --blue-600: #1e4080;
  --blue-500: #2256a8;
  --teal-500: #00b4a0;
  --teal-400: #00cdb8;
  --teal-300: #3dddd0;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray-100: #eef1f6;
  --gray-200: #d6dee8;
  --gray-400: #8c9ab0;
  --gray-600: #536070;
  --text-dark: #0d1f38;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, .08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, .14);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, .2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 2px;
  width: 24px;
  background: var(--teal-500);
  border-radius: 99px;
}

/* ── Headings ── */
.h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 180, 160, .35);
}

.btn-primary:hover {
  background: var(--teal-400);
  box-shadow: 0 8px 30px rgba(0, 180, 160, .5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--blue-800);
  transform: translateY(-2px);
}

.btn svg,
.btn img {
  width: 20px;
  height: 20px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
  display: grid;
  place-items: center;
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.1;
}

.nav-logo-tag {
  font-size: .65rem;
  color: var(--teal-400);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: .85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-900);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  display: flex;
}

.mobile-nav a {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  background: rgba(0, 180, 160, .15);
  border-color: rgba(0, 180, 160, .3);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-800) 50%, #0d2d55 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: radial-gradient(circle, var(--teal-500), transparent 70%);
}

.hero-bg-shapes .shape-1 {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
}

.hero-bg-shapes .shape-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  opacity: .06;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 160, .15);
  border: 1px solid rgba(0, 180, 160, .35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--teal-400);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--teal-400);
}

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  position: relative;
}

.hero-main-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 360px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.hero-card-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-card-sub {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

.hero-card-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-badge.badge-1 {
  top: -20px;
  right: -40px;
}

.hero-float-badge.badge-2 {
  bottom: -20px;
  left: -40px;
  animation-delay: -2s;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.hero-float-icon.teal {
  background: rgba(0, 180, 160, .15);
}

.hero-float-icon.gold {
  background: rgba(201, 168, 76, .15);
}

.hero-float-icon svg {
  width: 18px;
  height: 18px;
}

.hero-float-icon.teal svg {
  color: var(--teal-500);
}

.hero-float-icon.gold svg {
  color: var(--gold);
}

.hero-float-text strong {
  display: block;
  font-size: .82rem;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-float-text span {
  font-size: .72rem;
  color: var(--gray-400);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-500);
}

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */
.services-intro {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 180, 160, .12), rgba(30, 64, 128, .08));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-500);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--teal-500);
  margin-top: 18px;
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 80% 20%, rgba(0, 180, 160, .1) 0%, transparent 50%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.why-left {}

.why-left .section-label {
  color: var(--teal-400);
}

.why-left .section-label::before,
.why-left .section-label::after {
  background: var(--teal-400);
}

.why-title {
  color: var(--white);
  margin-bottom: 18px;
}

.why-desc {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 38px;
  font-size: 1rem;
  line-height: 1.8;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(0, 180, 160, .1);
  border-color: rgba(0, 180, 160, .3);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 180, 160, .2);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.why-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-400);
}

.why-card h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metrics-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 28px;
}

.metrics-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 22px;
}

.metric-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.metric-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  flex: 1;
}

.metric-bar-wrap {
  flex: 2;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
}

.metric-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  min-width: 36px;
  text-align: right;
}

.highlights-card {
  background: rgba(0, 180, 160, .12);
  border: 1px solid rgba(0, 180, 160, .25);
  border-radius: var(--radius-md);
  padding: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.highlight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.highlight-check {
  width: 22px;
  height: 22px;
  background: var(--teal-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.highlight-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.highlight-text strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
  font-weight: 600;
}

.highlight-text span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--blue-600) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .08) 0%, transparent 50%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-white {
  background: var(--white);
  color: var(--blue-800);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
}

.btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--blue-900), var(--blue-800));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 0%, rgba(0, 180, 160, .15) 0%, transparent 55%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--teal-400);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-inner {
  text-align: center;
  padding: 40px;
}

.about-img-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 180, 160, .25);
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.about-img-icon svg {
  width: 40px;
  height: 40px;
  color: var(--teal-400);
}

.about-img-text {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.about-img-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.about-stat-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-stat-chip.chip-1 {
  bottom: -24px;
  right: -24px;
}

.about-stat-chip.chip-2 {
  top: -24px;
  left: -24px;
}

.about-stat-chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 180, 160, .12);
  display: grid;
  place-items: center;
}

.about-stat-chip-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-500);
}

.about-chip-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.about-chip-label {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 18px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.pillar {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 18px;
  border-left: 3px solid var(--teal-500);
}

.pillar h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.pillar p {
  font-size: .8rem;
  color: var(--gray-600);
  margin: 0;
}

/* Mission Vision */
.mv-section {
  background: var(--off-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 160, .12), rgba(30, 64, 128, .08));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.mv-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-500);
}

.mv-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.8;
}

/* Team/Leadership */
.team-section {
  background: var(--white);
}

.manager-card {
  max-width: 700px;
  margin: 52px auto 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.manager-card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 180, 160, .12);
  pointer-events: none;
}

.manager-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, .15);
}

.manager-avatar svg {
  width: 46px;
  height: 46px;
  color: #fff;
}

.manager-info {}

.manager-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.manager-title {
  font-size: .82rem;
  color: var(--teal-400);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.manager-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full {
  background: var(--off-white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card-header {
  padding: 32px 28px 28px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  position: relative;
  overflow: hidden;
}

.service-card-header::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 180, 160, .12);
  pointer-events: none;
}

.service-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 180, 160, .2);
  border: 1px solid rgba(0, 180, 160, .3);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.service-header-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-400);
}

.service-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.service-card-body {
  padding: 28px;
}

.service-card-body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--gray-600);
}

.service-feature svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
  box-shadow: 0 8px 24px rgba(0, 180, 160, .35);
}

.process-step h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   WHY PAGE
   ============================================================ */
.why-page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.why-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}

.why-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 160, .2);
}

.why-page-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 180, 160, .12), rgba(30, 64, 128, .08));
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.why-page-icon svg {
  width: 30px;
  height: 30px;
  color: var(--teal-500);
}

.why-page-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-page-card p {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.testimonials-band {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
  display: grid;
  place-items: center;
}

.testimonial-avatar svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.testimonial-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: .75rem;
  color: var(--gray-400);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-method:hover {
  border-color: var(--teal-500);
  box-shadow: 0 4px 16px rgba(0, 180, 160, .12);
}

.cm-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 160, .12), rgba(30, 64, 128, .08));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cm-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal-500);
}

.cm-label {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cm-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-map-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 4px;
}

.contact-map-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 180, 160, .2);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.contact-map-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-400);
}

.contact-map-title {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.contact-map-address {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
}

.contact-map-address strong {
  color: var(--white);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-header p {
  font-size: .88rem;
  color: var(--gray-600);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0, 180, 160, .12);
}

.form-group textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-notice {
  font-size: .75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  display: none;
  background: rgba(0, 180, 160, .1);
  border: 1px solid var(--teal-500);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: .9rem;
  color: var(--teal-500);
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .65);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
  display: grid;
  place-items: center;
}

.footer-logo-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.footer-logo-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.footer-logo-tag {
  font-size: .6rem;
  color: var(--teal-400);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  line-height: 1.6;
}

.footer-contact-list li svg {
  width: 14px;
  height: 14px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: .78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--teal-400);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.wa-float:hover {
  background: #1db954;
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, .6);
  animation: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-900);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: var(--blue-900);
  border-right: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 38px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-wrap {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 68px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .manager-card {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .why-page-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .city-photo-band {
    height: auto;
    min-height: 280px;
  }

  .service-img-header {
    height: 160px;
  }
}