/* ============================================================
   MILLION DESIRE — Global Stylesheet
   Design System: Deep Navy + Cyan + Orange
   ============================================================ */

/* — Google Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* — CSS Custom Properties — */
:root {
  --bg-base: #091525;
  --bg-surface: #0d1c2e;
  --bg-elevated: #122338;
  --bg-card: #0f2035;

  --gold: #00e5cc;
  --gold-light: #33edd8;
  --gold-dark: #00b8a3;
  --gold-glow: rgba(0, 229, 204, 0.12);

  --blue: #ff7a2f;
  --blue-dark: #e05e10;
  --blue-glow: rgba(255, 122, 47, 0.12);

  --mint: #00c896;
  --mint-glow: rgba(0, 200, 150, 0.15);

  --text-primary: #ffffff;
  --text-secondary: #9db4cc;
  --text-muted: #4d6b82;

  --border: rgba(0, 229, 204, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-gold: 0 0 40px rgba(0, 229, 204, 0.14);
  --shadow-blue: 0 0 40px rgba(255, 122, 47, 0.14);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  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;
}

/* — Typography — */
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.gold {
  color: var(--gold);
}

.blue {
  color: var(--blue);
}

.orange {
  color: var(--blue);
}

/* — Layout — */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: 80px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* — Section Labels — */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 560px;
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--gold));
  color: #041220;
  box-shadow: 0 4px 20px rgba(0, 200, 150, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 150, 0.5);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: var(--gold-glow);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-outline-blue {
  border: 1px solid rgba(255, 122, 47, 0.3);
  color: var(--blue);
  background: var(--blue-glow);
}

.btn-outline-blue:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(255, 122, 47, 0.25);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* — Cards — */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-glow), rgba(0, 229, 204, 0.06));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 21, 37, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo-icon-svg {
  border-radius: 11px;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover .logo-icon-svg {
  filter: drop-shadow(0 0 8px rgba(0, 229, 204, 0.4));
  transform: scale(1.05);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 21, 37, 0.98);
  backdrop-filter: blur(20px);
  padding: 40px 28px 48px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

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

.mobile-menu a:not(.btn) {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.2s;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:not(.btn):last-of-type {
  border-bottom: none;
}

.mobile-menu a:not(.btn):hover {
  color: var(--gold);
}

.mobile-menu .btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  padding: 16px 28px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 21, 37, 0.92) 50%, rgba(255, 122, 47, 0.06) 100%);
}

.hero-glow-gold {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: float-pulse 6s ease-in-out infinite;
}

.hero-glow-blue {
  position: absolute;
  top: 15%;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: float-pulse 8s ease-in-out infinite reverse;
}

/* Neon floating shapes — Highspring-style */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 18px;
  opacity: 0.6;
  animation: floatShape 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 120px;
  height: 120px;
  right: 22%;
  top: 20%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(0, 229, 204, 0.35), inset 0 0 20px rgba(0, 229, 204, 0.08);
  animation-delay: 0s;
  animation-duration: 7s;
}

.hero-shape-2 {
  width: 80px;
  height: 80px;
  right: 14%;
  top: 38%;
  border: 2px solid var(--blue);
  box-shadow: 0 0 20px rgba(255, 122, 47, 0.35), inset 0 0 20px rgba(255, 122, 47, 0.08);
  animation-delay: -2s;
  animation-duration: 9s;
}

.hero-shape-3 {
  width: 55px;
  height: 55px;
  right: 34%;
  top: 55%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 12px rgba(0, 229, 204, 0.25);
  opacity: 0.4;
  animation-delay: -4s;
  animation-duration: 11s;
}

.hero-shape-4 {
  width: 90px;
  height: 90px;
  right: 10%;
  top: 18%;
  border: 2px solid var(--blue);
  box-shadow: 0 0 16px rgba(255, 122, 47, 0.3), inset 0 0 14px rgba(255, 122, 47, 0.06);
  opacity: 0.5;
  animation-delay: -1s;
  animation-duration: 8s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(4deg);
  }

  66% {
    transform: translateY(8px) rotate(-3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--gold-glow);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold), var(--mint), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
  background: var(--bg-base);
}

.services-grid {
  margin-top: 64px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--bg-surface);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-sub {
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 2px;
}

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

.why-item p {
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--bg-base);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-preview {
  background: var(--bg-surface);
}

.portfolio-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  cursor: pointer;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Always show overlay on touch/mobile devices */
@media (hover: none) {
  .portfolio-card .portfolio-card-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(170deg, rgba(0,0,0,0.05), rgba(0,0,0,0.88));
    padding: 20px;
  }
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  width: fit-content;
}

.portfolio-card-overlay h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.portfolio-card-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  font-size: 3rem;
  position: relative;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-base);
}

.testimonial-slider {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-surface);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060f1c;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  max-width: 260px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: float-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  white-space: nowrap;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.09), transparent 65%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gold);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--bg-base);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(9, 21, 37, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.about-img-badge .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-img-badge .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-info {
  padding: 20px;
}

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

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.team-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.team-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.service-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-section-title span {
  font-size: 1.6rem;
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.service-detail-card h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.service-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}

.service-sub {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 24px;
}

.service-sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-sub h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.service-sub p {
  font-size: 0.825rem;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.benefit-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-item:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.portfolio-item-img {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #041220;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.portfolio-item-body {
  padding: 28px;
}

.portfolio-item-body .portfolio-tag {
  margin-bottom: 12px;
}

.portfolio-item-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.portfolio-item-body p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.portfolio-results {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.p-result {
  text-align: center;
  flex: 1;
}

.p-result-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.p-result-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-form-wrap>p {
  margin-bottom: 36px;
  font-size: 0.9rem;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--bg-elevated);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.map-wrap {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 48px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes float-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes cyan-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 204, 0.3);
  }

  50% {
    box-shadow: 0 0 20px 8px rgba(0, 229, 204, 0.1);
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .service-3col {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Contact page: tighten gap on tablet ── */
  .contact-inner {
    gap: 40px;
  }

  .map-wrap {
    height: 300px;
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  /* ── Nav ── */
  .nav-links,
  .nav-cta,
  .nav-cta-group {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── Grids → single or double column ── */
  .grid-2,
  .why-us-inner,
  .about-story-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3,
  .portfolio-list,
  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Portfolio home: single big column on tablet for better readability */
  .portfolio-grid-home {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-grid-home .portfolio-card {
    aspect-ratio: 16/9;
  }

  .portfolio-grid-home .portfolio-placeholder {
    font-size: 4rem;
  }

  .portfolio-grid-home .portfolio-card-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 24px;
  }

  .portfolio-grid-home .portfolio-card-overlay h3 {
    font-size: 1.25rem;
  }

  .portfolio-grid-home .portfolio-card-overlay p {
    font-size: 0.9rem;
  }

  /* Portfolio section header stacks on mobile */
  .portfolio-preview > .container > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ── Hero ── */
  .hero-shapes {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    margin-bottom: 22px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 32px;
    margin-top: 40px;
  }

  .hero-stat {
    min-width: calc(50% - 10px);
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  /* ── Buttons ── */
  .btn-lg {
    padding: 14px 26px;
    font-size: 0.95rem;
  }

  /* ── Testimonials ── */
  .testimonial-card {
    flex: 0 0 calc(100% - 28px);
    padding: 28px;
  }

  /* ── Stat boxes ── */
  .stat-number {
    font-size: 2.2rem;
  }

  /* ── Contact page ── */
  .contact-inner {
    gap: 24px;
  }

  .contact-info h2.section-title {
    font-size: 1.5rem !important;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .map-wrap {
    height: 240px;
    margin-top: 40px !important;
  }

  .map-placeholder h3 {
    font-size: 1rem !important;
  }

  /* ── FAQ cards on tablet ── */
  .contact-page-faq .card {
    padding: 20px 24px !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  /* ── Services ── */
  .service-3col {
    grid-template-columns: 1fr;
  }

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

  /* ── Trust badges: allow multi-line, centered ── */
  .trust-badges {
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
  }

  /* ── WhatsApp tooltip: show above button on mobile ── */
  .whatsapp-tooltip {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 68px;
    top: auto;
  }

  /* ── Section label: allow breaking ── */
  .section-label {
    font-size: 0.7rem;
  }

  /* ── CTA Banner buttons ── */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  /* ── Grids → single column on smallest screens ── */
  .grid-3,
  .portfolio-list,
  .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-home {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-grid-home .portfolio-card {
    aspect-ratio: 4/3;
    min-height: 220px;
  }

  .portfolio-grid-home .portfolio-placeholder {
    font-size: 3.5rem;
  }

  .portfolio-grid-home .portfolio-card-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 18px;
  }

  .portfolio-grid-home .portfolio-card-overlay h3 {
    font-size: 1.1rem;
  }

  .portfolio-grid-home .portfolio-tag {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  /* ── Hero ── */
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-stats {
    gap: 16px;
  }

  .hero-stat {
    min-width: calc(50% - 8px);
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.74rem;
  }

  /* ── Process: single column on phones ── */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ── Stats ── */
  .stat-number {
    font-size: 1.9rem;
  }

  /* ── Portfolio results ── */
  .portfolio-results {
    gap: 8px;
  }

  /* ── Mobile menu font reduce ── */
  .mobile-menu a:not(.btn) {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  /* ── Section headings ── */
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ── Contact page small screens ── */
  .contact-form-wrap {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .contact-form-wrap h3 {
    font-size: 1.1rem;
  }

  .contact-form-wrap > p {
    margin-bottom: 24px;
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .map-wrap {
    height: 200px;
    margin-top: 32px !important;
  }

  .map-placeholder svg {
    width: 36px;
    height: 36px;
  }

  .map-placeholder h3 {
    font-size: 0.95rem !important;
  }

  .map-placeholder p {
    font-size: 0.8rem !important;
  }

  /* ── WhatsApp button: smaller on tiny phones ── */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* ── Trust badges: single column ── */
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

/* ============================================================
   CONTACT PAGE — DEDICATED RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* Page-hero heading on contact */
  .page-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

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

  /* FAQ cards: reduce side padding */
  .section .card[style*="padding:28px 32px"] {
    padding: 20px 20px !important;
  }

  /* Submit button: touch-friendly */
  .contact-form-wrap .btn-primary {
    padding: 14px !important;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Page-hero on tiny phones */
  .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-hero-inner {
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
  }

  /* FAQ cards: minimal padding on tiny screens */
  .section .card[style*="padding:28px 32px"] {
    padding: 16px !important;
  }

  /* Contact info heading */
  .contact-info .section-title {
    font-size: 1.3rem !important;
  }
}


/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 12px;
}

/* Phone-style card */
.vt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.vt-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 229, 204, 0.1);
  background: #0d1c2e;
  transition: var(--transition);
}

.vt-card:hover .vt-phone-frame {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 204, 0.2);
  transform: translateY(-6px) scale(1.02);
}

/* Thumbnail area */
.vt-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Actual YouTube thumbnail image */
.vt-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vt-thumb-face {
  font-size: 4rem;
  opacity: 0.75;
}

/* Duration badge (top-left) */
.vt-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

/* Play button – centred overlay */
.vt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 120, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(30, 120, 255, 0.5);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.vt-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.vt-card:hover .vt-play-btn {
  background: rgba(30, 120, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 36px rgba(30, 120, 255, 0.7);
}

/* Progress bar strip at bottom of phone */
.vt-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.vt-pb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
}

.vt-pb-track {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.vt-pb-fill {
  height: 100%;
  width: 10%;
  background: #1e78ff;
  border-radius: 99px;
}

/* Info below the phone frame */
.vt-info {
  text-align: center;
}

.vt-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vt-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: var(--gold-glow);
}

/* ── Video Lightbox Modal ── */
.vt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.vt-modal.active {
  display: flex;
}

.vt-modal-inner {
  position: relative;
  width: min(90vw, 560px);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.vt-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vt-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.4rem;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.vt-modal-close:hover {
  background: rgba(255, 60, 60, 0.75);
}

/* ── Inline Playback iframe ── */
.vt-inline-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  z-index: 5;
}

.vt-inline-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.85rem;
  line-height: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.vt-inline-close:hover {
  background: rgba(220, 40, 40, 0.8);
}

/* Masks the YouTube title/channel bar at the top of the inline video */
.vt-title-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  /* covers YouTube's title bar height */
  background: #000;
  z-index: 6;
  /* above iframe (z-index 5), below close btn (z-index 10) */
  pointer-events: none;
  /* clicks still reach the video */
  border-radius: inherit;
}


/* Responsive – Video Testimonials */
@media (max-width: 1024px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 360px;
  }

  .vt-phone-frame {
    border-radius: 16px;
  }

  .vt-play-btn {
    width: 44px;
    height: 44px;
  }

  .vt-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .vt-name {
    font-size: 0.82rem;
  }

  .vt-tag {
    font-size: 0.68rem;
    padding: 3px 10px;
  }
}