/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue: #1E3AFF;
  --blue-dark: #1A30D9;
  --blue-hover: #0F27E0;
  --black: #0B0B0B;
  --black-2: #111218;
  --dark-navy: #05081A;
  --dark-bg: #0A0E23;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text: #0B0B0B;
  --text-dim: #4B5563;
  --text-light: #D1D5DB;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
  --shadow-dark: 0 24px 60px rgba(0,0,0,0.45);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Prevent any inner element transforms from causing horizontal scroll */
section, header, footer { overflow-x: hidden; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  text-transform: uppercase;
}
.hl { color: var(--blue); }

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 16px;
}
.section-head h2.inv { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}
.section-cta.center { display: flex; justify-content: center; margin-top: 40px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  box-shadow: 0 8px 22px rgba(30,58,255,0.35);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,58,255,0.45);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}
.btn-full { width: 100%; }
.btn-lg { padding: 20px 34px; font-size: 0.95rem; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.85rem;
}
.top-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: start;
}
.tb-center {
  display: flex;
  align-items: center;
  justify-self: center;
  text-align: center;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: end;
}
.tb-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.tb-phone:hover { color: var(--blue); }
.tb-tagline { color: var(--text-light); font-style: italic; }
.tb-follow { color: var(--text-light); }
.tb-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: 0.25s;
}
.tb-right a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============ HEADER ============ */
.header {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 54px; height: 54px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  display: grid; place-items: center;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 14px; height: 14px;
  background: var(--blue);
  border-radius: 50%;
}
.logo-mark.light {
  background: var(--white);
  color: var(--black);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: 0.02em;
}
.logo-title.light { color: var(--white); }
.logo-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.22em;
  margin-top: 4px;
}
.logo-sub.light { color: var(--blue); }
.logo-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.55rem;
  color: var(--text-dim);
  letter-spacing: 0.22em;
  margin-top: 4px;
}
.logo-tagline.light { color: var(--text-light); }

.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.header-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  padding-left: 18px;
  margin-left: 18px;
  border-left: 2px solid var(--gray-200);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.header-tagline .ht-line1 {
  font-size: 0.92rem;
  color: var(--black);
}
.header-tagline .ht-line2 {
  font-size: 0.92rem;
  color: var(--black);
}
.header-tagline .ht-line2 em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}
.logo-img-footer {
  height: 80px;
  filter: brightness(1.05);
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 18px;
  max-width: 260px;
  line-height: 1.45;
}
.footer-tagline em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  padding-left: 30px;
  padding-right: 30px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-cta { padding: 14px 22px; font-size: 0.82rem; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--black);
  transition: 0.3s;
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--dark-navy);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(30,58,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(30,58,255,0.08) 0%, transparent 40%);
  opacity: 0.8;
  z-index: 0;
}
.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%),
    linear-gradient(-30deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-points {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
}
.hp-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(30,58,255,0.15);
  color: var(--blue);
  border-radius: 8px;
  display: grid; place-items: center;
}
.hp-icon svg { width: 20px; height: 20px; }

.money-back {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.mb-seal {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #FFD500 0%, #E6B800 70%);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
  transform: rotate(-12deg);
}
.mb-seal-inner {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--black);
  text-align: center;
  line-height: 1.1;
}
.mb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.mb-text strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}
.mb-text span {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Booking card */
.booking-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-dark);
  position: relative;
}
.booking-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, var(--gray-700), var(--black));
  color: var(--white);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-radius: 4px 0 0 4px;
  transform: rotate(45deg) translate(20px, -12px);
  transform-origin: top right;
}
.booking-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.ba-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  display: grid; place-items: center;
  border: 4px solid var(--gray-100);
}
#booking {
  scroll-margin-top: 120px;
}
.ba-photo {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(30,58,255,0.25);
}
.booking-name {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.booking-title {
  text-align: center;
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 18px;
}
.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.bm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.bm-item svg { width: 16px; height: 16px; }
.booking-text {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-form input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: 0.2s;
}
.booking-form input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,58,255,0.12);
}
.booking-form input.invalid {
  border-color: #E11D48;
  background: #FFF5F7;
  box-shadow: 0 0 0 3px rgba(225,29,72,0.12);
}
.form-error {
  display: block;
  color: #E11D48;
  font-size: 0.82rem;
  font-weight: 600;
  margin: -4px 0 0 2px;
  min-height: 18px;
  transition: opacity 0.2s;
}

/* ============ PORTFOLIO ============ */
.portfolio {
  padding: 70px 0 60px;
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.port-card {
  text-align: center;
}
.port-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
}
.port-card:hover .port-img {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 50px rgba(30,58,255,0.15);
}

/* Laptop mockup */
.laptop {
  position: relative;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0C1228 100%);
  border-radius: 18px;
  padding: 32px 22px 22px;
  margin-bottom: 20px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(30,58,255,0.15) 0%, transparent 30%),
    linear-gradient(135deg, var(--dark-navy) 0%, #0C1228 100%);
  overflow: hidden;
}
.laptop::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 20px, rgba(255,255,255,0.015) 20px, rgba(255,255,255,0.015) 21px);
  pointer-events: none;
}
.laptop.lg { padding: 48px 36px 36px; }
.laptop-screen {
  position: relative;
  background: var(--dark-bg);
  background-size: cover;
  background-position: center;
  border-radius: 8px 8px 2px 2px;
  aspect-ratio: 16 / 10;
  border: 3px solid #2A2F4A;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 1;
}
.laptop.lg .laptop-screen { aspect-ratio: 16 / 9; }
.ls-label {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  padding: 14px 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.laptop-base {
  height: 10px;
  background: linear-gradient(to bottom, #3A3F5C 0%, #1F2236 100%);
  border-radius: 0 0 12px 12px;
  margin: 0 -14px;
  position: relative;
  z-index: 1;
}
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: #2A2F4A;
  border-radius: 0 0 6px 6px;
}

.port-card h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--black);
}
.port-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
.port-niches {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-top: 20px;
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--gray-50);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #E0E7FF, #DBEAFE);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(11,11,11,0.12);
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--blue);
}
.photo-placeholder span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5rem;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(30,58,255,0.15);
}
.photo-placeholder small {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-right h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.intro-line {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.intro-line strong { color: var(--blue); }
.about-block {
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-block strong {
  color: var(--black);
  font-weight: 700;
  margin-right: 4px;
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--dark-navy);
  padding: 100px 0 100px;
  position: relative;
}
.reviews-chevron {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 40px solid var(--blue);
}
.reviews-chevron::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -80px;
  width: 160px;
  height: 30px;
  background: var(--blue);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  transition: 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}
.rc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.rc-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.rc-meta strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: none;
}
.rc-meta span {
  color: var(--gray-400);
  font-size: 0.82rem;
}
.rc-google svg {
  width: 22px; height: 22px;
}
.rc-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ MID CTA ============ */
.mid-cta {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
  pointer-events: none;
}
.mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.mc-right h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: none;
}
.mc-right h2 .script {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  color: inherit;
  text-transform: inherit;
  background: none;
  padding: 0;
}

/* ============ WHY ============ */
.why {
  padding: 100px 0;
  background: #EEF2FF;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  position: relative;
  transition: 0.3s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border: 2px solid rgba(30,58,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.why-card.dark {
  background: var(--black);
  color: var(--white);
  background-image:
    radial-gradient(circle at 100% 100%, rgba(30,58,255,0.15) 0%, transparent 50%);
}
.why-card.dark::before { border-color: rgba(255,255,255,0.08); }
.why-card.dark h4 { color: var(--white); }
.why-card.dark p { color: var(--text-light); }
.wc-icon {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.wc-icon svg { width: 34px; height: 34px; }
.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ PROCESS ============ */
.process {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.process > .container { position: relative; z-index: 2; }

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.step-right {
  direction: rtl;
}
.step-right .step-pill,
.step-right .step-card {
  direction: ltr;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  padding: 14px 26px 14px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: none;
  justify-self: end;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.step-left .step-pill { justify-self: start; }
.step-right .step-pill { justify-self: end; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
}

.step-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.step-icon {
  flex-shrink: 0;
  width: 70px; height: 70px;
  background: var(--gray-100);
  color: var(--blue);
  border-radius: 12px;
  display: grid; place-items: center;
}
.step-icon svg { width: 34px; height: 34px; }
.step-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.step-left .step-pill { order: 0; }
.step-left .step-card { order: 1; }
.step-right .step-card { order: 0; }
.step-right .step-pill { order: 1; }

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 6px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.faq-q {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
.faq-item.active .faq-q {
  background: var(--blue);
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: grid; place-items: center;
  font-weight: 400;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p {
  padding: 20px 28px 12px;
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  background: #0A0E23;
  color: var(--text-light);
  padding-top: 70px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 2; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .logo-box { align-items: flex-start; }
.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col ul li a:hover {
  color: var(--blue);
  padding-left: 4px;
  transition: 0.2s;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text-light);
}
.map-placeholder svg { color: var(--blue); flex-shrink: 0; }
.map-placeholder span { font-size: 0.95rem; line-height: 1.4; }
.map-placeholder small { display: block; color: var(--gray-400); font-size: 0.8rem; margin-top: 4px; }

.contact-list li {
  margin-bottom: 14px;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.ci {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ci svg { width: 16px; height: 16px; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--text-light);
  transition: 0.25s;
}
.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-400);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { gap: 18px; padding-left: 20px; padding-right: 20px; }
  .logo-tagline { display: none; }
  .header-tagline { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 968px) {
  .top-bar { font-size: 0.78rem; padding: 10px 0; }
  .tb-tagline { display: none; }
  .tb-left, .tb-right { gap: 16px; }

  .header { padding: 14px 0; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    border: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    gap: 14px;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 400px; margin: 0 auto; }
  /* Reorder: text first, photo second on mobile */
  .about-left { order: 2; }
  .about-right { order: 1; }

  .why-grid { grid-template-columns: 1fr; }
  .mid-cta-inner { grid-template-columns: 1fr; gap: 30px; }
  /* Center content and prevent cutoff in mid-CTA on mobile */
  .mc-right { text-align: center; }
  .mc-right h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .mid-cta .btn-lg {
    white-space: normal;
    width: 100%;
    max-width: 360px;
    padding: 16px 20px;
    text-align: center;
    line-height: 1.3;
  }
  .laptop.lg { padding: 32px 24px 24px; }

  .step { grid-template-columns: 1fr; gap: 20px; }
  .step-right { direction: ltr; }
  .step-pill, .step-right .step-pill { justify-self: start; }
  .step-right .step-card { order: 1; }
  .step-right .step-pill { order: 0; }
}

@media (max-width: 600px) {
  .tb-tagline, .tb-follow { display: none; }
  .section-head h2 { font-size: 1.8rem; }
  .hero { padding: 50px 0 60px; }
  .hero-left h1 { font-size: 2.1rem; }
  .booking-card { padding: 24px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .money-back { flex-direction: column; text-align: center; align-items: center; }
  .logo-mark { width: 46px; height: 46px; font-size: 1.6rem; }
  .logo-title { font-size: 1.1rem; }
  .logo-sub { font-size: 0.7rem; }
  .logo-img { height: 52px; }
  .logo-img-footer { height: 68px; }
  .btn { padding: 14px 22px; font-size: 0.8rem; }
  .btn-lg { padding: 16px 26px; font-size: 0.88rem; }
  /* Extra-small screens: center the CTA button and keep text inside */
  .mid-cta { padding: 60px 0; }
  .mid-cta .btn-lg {
    font-size: 0.8rem;
    padding: 14px 18px;
  }
  .laptop.lg { padding: 24px 16px 18px; }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delays for grids */
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal-left[data-delay="100"] { transition-delay: 0.1s; }
.reveal-left[data-delay="200"] { transition-delay: 0.2s; }
.reveal-right[data-delay="100"] { transition-delay: 0.1s; }
.reveal-right[data-delay="200"] { transition-delay: 0.2s; }
.reveal-scale[data-delay="100"] { transition-delay: 0.1s; }
.reveal-scale[data-delay="200"] { transition-delay: 0.2s; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
