/*
Theme Name: MySofa Professional
Theme URI: https://mysofa.com.my
Author: MySofa Cleaning Services
Author URI: https://mysofa.com.my
Description: A clean, professional WordPress theme for MySofa Cleaning Services — Malaysia's most trusted sofa, mattress, and carpet cleaning service since 1998.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: cleaning, services, professional, blue, responsive
Text Domain: mysofa
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy: #0D1B35;
  --navy-light: #162447;
  --blue: #1A6FB5;
  --blue-bright: #2080CC;
  --blue-light: #EBF4FC;
  --blue-pale: #F2F8FD;
  --gold: #C9842A;
  --gold-light: #FDF3E7;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text-dark: #0D1B35;
  --text-body: #374151;
  --text-muted: #6B7280;
  --shadow-sm: 0 1px 3px rgba(13,27,53,0.08), 0 1px 2px rgba(13,27,53,0.05);
  --shadow-md: 0 4px 16px rgba(13,27,53,0.10), 0 2px 6px rgba(13,27,53,0.06);
  --shadow-lg: 0 12px 40px rgba(13,27,53,0.14), 0 4px 12px rgba(13,27,53,0.08);
  --shadow-xl: 0 24px 64px rgba(13,27,53,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-bright); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,111,181,0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,181,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,132,42,0.35);
}
.btn-gold:hover {
  background: #b8731f;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: var(--radius-md); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-gold { background: var(--gold-light); color: var(--gold); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13, 27, 53, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(13,27,53,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; fill: white; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.main-nav { display: flex; align-items: center; gap: 2px; }

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.main-nav .has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text-dark) !important;
  background: transparent !important;
  padding: 10px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
  background: var(--blue-pale) !important;
  color: var(--blue) !important;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.header-phone svg { width: 16px; height: 16px; opacity: 0.7; }
.header-phone:hover { color: var(--white); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(26,111,181,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,111,181,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0D1B35 0%, #162447 50%, #0D1B35 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,181,0.2) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,181,0.2);
  border: 1px solid rgba(26,111,181,0.4);
  color: #7DC5F8;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: #7DC5F8; animation: blink 2s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title em {
  font-style: normal;
  color: #7DC5F8;
  position: relative;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: float-in 0.8s ease-out 0.3s both;
}

@keyframes float-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-card-main {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #7DC5F8);
}

.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  text-decoration: none;
}

.hero-service-item:hover {
  background: rgba(26,111,181,0.2);
  border-color: rgba(26,111,181,0.4);
  transform: translateY(-2px);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(26,111,181,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { width: 20px; height: 20px; color: #7DC5F8; }

.hero-service-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-mini-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.stat-mini-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-light);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }
.trust-item svg { width: 18px; height: 18px; color: #7DC5F8; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon svg { width: 26px; height: 26px; color: var(--blue); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

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

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

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

/* Why Visual */
.why-visual {
  position: relative;
}

.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--blue-light);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.why-placeholder svg { width: 80px; height: 80px; color: var(--blue); opacity: 0.4; }
.why-placeholder p { color: var(--text-muted); font-size: 0.875rem; }

.why-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 24px; height: 24px; color: var(--gold); }
.badge-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
}
.badge-content span { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--navy); position: relative; overflow: hidden; }

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.process-section .section-label { color: #7DC5F8; }
.process-section .section-label::before { background: #7DC5F8; }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.6); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(26,111,181,0.15);
  border-color: rgba(26,111,181,0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(26,111,181,0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,111,181,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 22px; height: 22px; color: #7DC5F8; }

.process-step h4 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { background: var(--blue); position: relative; overflow: hidden; }

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--blue-pale); }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: #F59E0B; font-size: 1rem; }

.review-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

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

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: color var(--transition);
  font-family: var(--font-body);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--blue); }

.faq-question.active { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg { width: 14px; height: 14px; color: var(--blue); transition: transform var(--transition); }

.faq-question.active .faq-icon { background: var(--blue); }
.faq-question.active .faq-icon svg { color: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer.open { display: block; animation: fade-down 0.2s ease; }

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(26,111,181,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,111,181,0.1) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
}

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080E1D;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { font-size: 1.375rem; margin-bottom: 4px; display: block; font-family: var(--font-heading); color: white; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.8125rem; margin-bottom: 20px; }
.footer-desc { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  animation: float-up 0.5s ease 1s both;
}

@keyframes float-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.whatsapp-float:hover {
  background: #1da851;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(26,111,181,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #0D1B35 0%, #162447 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero .section-label { color: #7DC5F8; }
.page-hero .section-label::before { background: #7DC5F8; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.page-hero .hero-desc { font-size: 1.0625rem; }

.hero-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
}

.hero-price-card h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price-items { display: flex; flex-direction: column; gap: 12px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

.price-label { font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.price-value { font-family: var(--font-heading); font-size: 1.125rem; color: #7DC5F8; }

.price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   SERVICE DETAIL SECTIONS
   ============================================================ */
.detail-section { background: var(--white); }
.detail-section.alt { background: var(--blue-pale); }

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

.detail-inner.reverse { direction: rtl; }
.detail-inner.reverse > * { direction: ltr; }

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; color: var(--blue); }

.detail-list-item strong { font-weight: 700; color: var(--text-dark); }
.detail-list-item p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }
.detail-list-item > div { display: flex; flex-direction: column; gap: 2px; }

/* Content block visual */
.content-visual {
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.content-visual svg { width: 80px; height: 80px; color: var(--blue); opacity: 0.4; }
.content-visual p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 3;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-inner { padding: 160px 0 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .detail-inner { grid-template-columns: 1fr; }
  .detail-inner.reverse { direction: ltr; }
  .content-visual { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 20px; }
  .trust-bar-inner { flex-direction: column; gap: 8px; }
  .trust-item { border-right: none; }
  .whatsapp-float { right: 16px; bottom: 16px; }
  .section { padding: 64px 0; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: white; }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }
