/* ============================================================
   United WebApex LLC — style.css
   Premium Agency Website Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1a3c8f;
  --primary-dark: #0f2460;
  --primary-light: #2d5cc8;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --gold: #f4a200;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --light-gray: #e8edf6;
  --mid-gray: #94a3b8;
  --text-dark: #0d1b3e;
  --text-body: #3a4a6b;
  --text-light: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --card-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-sm: 0 2px 8px rgba(26,60,143,0.08);
  --shadow-md: 0 8px 30px rgba(26,60,143,0.14);
  --shadow-lg: 0 20px 60px rgba(26,60,143,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- 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);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section {
  padding: 96px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,60,143,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,60,143,0.45);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,180,216,0.45);
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

#nav-mobile-menu {
  display: none;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  color: var(--text-dark);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-links a:hover { color: var(--primary); background: var(--off-white); }

#navbar.scrolled .nav-links a { color: var(--text-dark); }
#navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--off-white); }

.nav-links .dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 240px;
  border: 1px solid var(--light-gray);
  z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  color: var(--text-dark) !important;
  font-size: 0.875rem !important;
  background: none !important;
}

.dropdown-menu a:hover { background: var(--off-white) !important; color: var(--primary) !important; }

.dropdown-menu a .dm-icon {
  width: 30px;
  height: 30px;
  background: var(--off-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--accent)) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

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

#navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e5fa8 70%, #0d3380 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  animation: pulse-slow 6s ease-in-out infinite;
}

.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,162,0,0.15) 0%, transparent 70%);
  bottom: -150px;
  left: 10%;
  border-radius: 50%;
  animation: pulse-slow 8s ease-in-out infinite reverse;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-text h1 {
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

.hero-stat {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stat:last-child { border-right: none; }
.hero-stat:not(:first-child) { padding-left: 24px; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 20px;
  position: relative;
}

.hero-device-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.hero-device-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-device-bar span:nth-child(1) { background: #ff5f57; }
.hero-device-bar span:nth-child(2) { background: #febc2e; }
.hero-device-bar span:nth-child(3) { background: #28c840; }

.hero-device-screen {
  background: linear-gradient(160deg, #1e2d5a 0%, #0d1b3e 100%);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  flex-direction: column;
}

.device-header {
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.device-logo-mini {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 5px;
  flex-shrink: 0;
}

.device-nav-items {
  display: flex;
  gap: 8px;
  flex: 1;
}

.device-nav-items span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
}

.device-nav-items span:nth-child(1) { width: 40px; }
.device-nav-items span:nth-child(2) { width: 35px; }
.device-nav-items span:nth-child(3) { width: 45px; }
.device-nav-items span:nth-child(4) { width: 38px; }

.device-hero-area {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(45,92,200,0.3), rgba(0,180,216,0.15));
}

.device-hero-area .line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
}

.device-hero-area .line.w-80 { width: 80%; }
.device-hero-area .line.w-60 { width: 60%; }
.device-hero-area .line.w-45 { width: 45%; }

.device-hero-btn {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.device-hero-btn span {
  height: 20px;
  border-radius: 5px;
}

.device-hero-btn span:nth-child(1) {
  width: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.device-hero-btn span:nth-child(2) {
  width: 80px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.device-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
}

.device-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.device-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-bottom: 6px;
}

.device-card-icon.blue { background: linear-gradient(135deg, var(--primary-light), var(--accent)); }
.device-card-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.device-card-icon.gold { background: linear-gradient(135deg, var(--gold), #e67e00); }

.device-card .line-sm {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 4px;
}

.device-card .line-sm:last-child { width: 70%; }

/* Floating cards */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-float-1 {
  top: -20px;
  right: -30px;
  min-width: 160px;
}

.hero-float-2 {
  bottom: 20px;
  left: -40px;
  min-width: 140px;
}

.hero-float h4 {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-float p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.float-bar {
  height: 4px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.float-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  animation: bar-fill 2s ease forwards;
}

.float-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }

.float-users {
  display: flex;
  gap: -8px;
}

.float-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  margin-right: -8px;
}

.float-avatar:nth-child(1) { background: var(--primary-light); }
.float-avatar:nth-child(2) { background: var(--accent); }
.float-avatar:nth-child(3) { background: var(--gold); }

/* ---------- Trusted By Section ---------- */
.trusted-section {
  padding: 48px 0;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mid-gray);
  opacity: 0.6;
  transition: var(--transition);
  letter-spacing: -0.02em;
}

.trusted-logo:hover { opacity: 1; color: var(--primary); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-tag { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }
.service-card:hover .service-link { color: white; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  transition: color 0.3s;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
  transition: color 0.3s;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  color: var(--text-light);
  transition: var(--transition);
}

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

/* ---------- Why Choose Us ---------- */
.why-us {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  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: 40px 40px;
}

.why-us .section-label { background: rgba(0,180,216,0.2); border-color: rgba(0,180,216,0.4); }
.why-us h2, .why-us .section-header p { color: white; }
.why-us .section-header p { color: rgba(255,255,255,0.65); }

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

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.why-card h4 { color: white; margin-bottom: 8px; font-size: 1rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ---------- Pricing Section ---------- */
.pricing-section { background: var(--off-white); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.toggle-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
}

.toggle-label.active { color: var(--primary); }

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--primary);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}

.toggle-switch.yearly::after { left: 31px; }

.toggle-badge {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

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

.pricing-card {
  background: white;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.popular-badge {
  display: none;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card.popular .popular-badge { display: block; }

.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 8px;
}

.pricing-amount .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-left: 4px;
}

.pricing-save {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.pricing-save.hidden { display: none; }

.pricing-setup {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.pricing-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 24px 0;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li .check {
  color: var(--success);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-renewal {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ---------- Testimonials ---------- */
.testimonials-section { overflow: hidden; }

.testimonials-track {
  overflow: hidden;
  position: relative;
}

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

.testimonial-card {
  min-width: calc(33.33% - 20px);
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex-shrink: 0;
}

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

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

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-title { font-size: 0.78rem; color: var(--text-light); }

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

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  background: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

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

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

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

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-item.open .faq-question h4 { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--text-dark);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e5fa8 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,162,0,0.15) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

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

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.cta-info-item .icon { color: var(--success); font-size: 1rem; }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 36px; }

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.contact-detail-text h4 { font-size: 0.85rem; margin-bottom: 4px; color: var(--text-dark); }
.contact-detail-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.contact-detail-text a { color: var(--primary); font-weight: 500; }
.contact-detail-text a:hover { color: var(--accent); }

.contact-form-wrapper {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-light); margin-bottom: 28px; 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;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(45,92,200,0.1);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md);
}

.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { color: var(--success); margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid var(--light-gray);
  font-size: 2.5rem;
  gap: 12px;
  color: var(--primary);
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  max-width: 220px;
  line-height: 1.5;
}

/* ---------- Footer ---------- */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo .logo-text { color: white; }
.footer-brand .nav-logo .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-link:hover { background: var(--primary-light); border-color: var(--primary-light); color: white; }

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col li { margin-bottom: 10px; }

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

.footer-col a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item .fci-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Service Detail Pages ---------- */
.service-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  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: 50px 50px;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.service-hero .section-label { background: rgba(0,180,216,0.2); border-color: rgba(0,180,216,0.4); }
.service-hero h1 { color: white; margin: 12px 0 20px; }
.service-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; }

.service-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}

.hero-meta-item .icon { color: var(--gold); }

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

.feature-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-light); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(45,92,200,0.1), rgba(0,180,216,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-light); }

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) 100%);
}

.process-step {
  position: relative;
  margin-bottom: 40px;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: -46px;
  top: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

.process-step h4 { margin-bottom: 8px; font-size: 1rem; color: var(--primary); }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

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

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.benefit-item:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.benefit-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.82rem; color: var(--text-light); }

/* ---------- Pricing Page ---------- */
.pricing-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  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: 50px 50px;
}

.pricing-hero h1, .pricing-hero p { color: white; position: relative; z-index: 1; }
.pricing-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 12px; }

/* ---------- Contact Page ---------- */
.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1, .contact-hero p { color: white; position: relative; z-index: 1; }
.contact-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 12px; }
.contact-hero::before {
  content: '';
  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: 50px 50px;
}

/* ---------- Legal Pages ---------- */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  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: 50px 50px;
}

.legal-hero h1 { color: white; position: relative; z-index: 1; margin-bottom: 8px; }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 0.9rem; position: relative; z-index: 1; }

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 { font-size: 1.4rem; margin-top: 48px; margin-bottom: 16px; color: var(--primary-dark); }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 12px; color: var(--text-dark); }
.legal-content p { font-size: 0.925rem; color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content ul li { font-size: 0.925rem; color: var(--text-body); margin-bottom: 8px; list-style: disc; line-height: 1.7; }
.legal-content a { color: var(--primary); font-weight: 500; }
.legal-content a:hover { color: var(--accent); }

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

.reveal.revealed {
  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; }

/* ---------- Page Hero (generic) ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  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: 50px 50px;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ---------- Animations ---------- */
@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes bar-fill {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-float { animation: float-up 4s ease-in-out infinite; }
.hero-float-2 { animation-delay: 2s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  #nav-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 4px;
  }

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

  #nav-mobile-menu a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    border-bottom: 1px solid var(--light-gray);
  }

  #nav-mobile-menu a:last-child { border-bottom: none; }
  #nav-mobile-menu a:hover { background: var(--off-white); color: var(--primary); }

  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stat { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 16px; }
  .hero-stat:last-child, .hero-stat:nth-child(3) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: calc(100% - 0px); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }

  .section { padding: 64px 0; }
  .trusted-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.gap-2 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.bg-light { background: var(--off-white); }
.bg-dark { background: var(--text-dark); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Service Page Layout Helpers */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col-section { grid-template-columns: 1fr; gap: 40px; }
}

.service-page-img {
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
