/* ============================================================
   CC COPIES — GLOBAL STYLESHEET
   Carrollwood Copy Center and Printing, Inc.
   Designed & Developed by Novelio Technologies | 2026
   ============================================================ */

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

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --primary: #1A3A6B;
  --primary-light: #2756A8;
  --primary-dark: #0F2447;
  --accent: #E8420A;
  --accent-light: #FF6B35;
  --accent-dark: #C23508;
  --dark: #0D1B2A;
  --dark-mid: #162333;
  --surface: #F5F7FA;
  --surface-alt: #EDF0F5;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.07);
  --glass-hover: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.14);
  --glass-border-hover: rgba(255,255,255,0.28);
  --text-dark: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #8A97AA;
  --text-white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.10);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 10px 20px rgba(26,58,107,0.12);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.08), 0 20px 40px rgba(26,58,107,0.18);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.10), 0 30px 60px rgba(26,58,107,0.22);
  --shadow-accent: 0 8px 32px rgba(232,66,10,0.35);
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1A3A6B 55%, #2756A8 100%);
  --gradient-dark: linear-gradient(180deg, #0D1B2A 0%, #162333 100%);
  --gradient-accent: linear-gradient(135deg, #E8420A 0%, #FF6B35 100%);
  --gradient-primary: linear-gradient(135deg, #1A3A6B 0%, #2756A8 100%);
  --gradient-surface: linear-gradient(180deg, #F5F7FA 0%, #EDF0F5 100%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-slow: 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --header-height: 80px;
}

/* ── 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-dark);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.75; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gradient-accent);
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
}
.section-title { color: var(--text-dark); }
.section-title span { color: var(--accent); }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-white h1, .text-white h2, .text-white h3, .text-white p, .text-white .section-label { color: var(--white); }
.text-white .section-label { color: var(--accent-light); }
.text-white .section-label::before { background: var(--accent-light); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 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; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(232,66,10,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.btn-glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: var(--glass-hover); border-color: var(--glass-border-hover); transform: translateY(-3px); }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn i { font-size: 0.85em; }

/* ── WAVE DIVIDERS ── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── BADGE / TAG ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-accent { background: rgba(232,66,10,0.12); color: var(--accent); }
.tag-primary { background: rgba(26,58,107,0.10); color: var(--primary); }

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  padding: 0 24px;
}
#site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  height: 68px;
}
.header-logo img { height: 50px; width: auto; transition: all var(--transition-base); }
#site-header.scrolled .header-logo img { height: 42px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.header-nav a:hover, .header-nav a.active { color: var(--white); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--accent-light); }
.header-nav a.active::after { background: var(--accent-light); transform: scaleX(1); }
.header-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s ease;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu a:hover { color: var(--accent-light); }
.mobile-menu .mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu .mobile-cta { margin-top: 16px; }

/* ══════════════════════════════════════════
   HERO SECTIONS
══════════════════════════════════════════ */
.hero-home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.firespring.com/images/fb63473b-fdf9-4fc4-8604-243c89854751.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 10s ease;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(26,58,107,0.78) 50%, rgba(39,86,168,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-home .container { padding-top: var(--header-height); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--accent-light); }
.hero-home h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-home h1 .accent-word { color: var(--accent-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-sub span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-sub i { color: var(--accent-light); font-size: 0.85em; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-arrow {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.float-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatAround var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.06;
}
.float-shape.s1 { width: 300px; height: 300px; background: var(--accent); top: 10%; right: 8%; --dur: 7s; }
.float-shape.s2 { width: 180px; height: 180px; background: var(--primary-light); bottom: 20%; right: 22%; --dur: 5s; --delay: 1.5s; }
.float-shape.s3 { width: 80px; height: 80px; background: var(--white); top: 55%; left: 5%; --dur: 4s; --delay: 0.8s; }
.float-shape.s4 { width: 120px; height: 120px; background: var(--accent-light); top: 30%; right: 38%; --dur: 8s; --delay: 2s; }
@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(8deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* Page hero (non-home) */
.page-hero {
  padding-top: var(--header-height);
  height: 50vh;
  min-height: 320px;
  max-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65em; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--gradient-primary);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.trust-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.trust-stat {
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.trust-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.trust-number .suffix { font-size: 1.8rem; color: var(--accent-light); }
.trust-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-section { background: var(--surface); }
.section-header { margin-bottom: 56px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.85), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}
.service-card:hover .card-overlay { opacity: 1; }
.card-explore-btn {
  padding: 8px 18px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card-img .color-block {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.7s ease;
}
.service-card:hover .color-block { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; color: var(--text-dark); font-size: 1.15rem; }
.service-card-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition-fast);
}
.service-card-link:hover { gap: 10px; }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-section { background: var(--gradient-surface); overflow: hidden; }
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: 0;
  transform: rotate(-2deg);
}
.why-image-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}
.why-image-wrap:hover img { transform: scale(1.02) rotate(0.5deg); }
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.why-badge-icon {
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-badge-text .num { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; font-family: var(--font-heading); }
.why-badge-text .lbl { font-size: 0.75rem; color: var(--text-mid); font-weight: 500; }
.why-content { padding-left: 20px; }
.why-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.why-feature:hover { background: var(--surface-alt); }
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(232,66,10,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.why-feature:hover .why-feature-icon { background: var(--gradient-accent); color: var(--white); }
.why-feature-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; font-family: var(--font-body); }
.why-feature-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ══════════════════════════════════════════
   ACTION BUTTONS SECTION
══════════════════════════════════════════ */
.action-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.action-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(39,86,168,0.3) 0%, transparent 70%);
}
.action-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 1; }
.action-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.action-card:hover {
  background: var(--glass-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.action-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  transition: transform var(--transition-base);
}
.action-card:hover img { transform: scale(1.1) rotate(-3deg); }
.action-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-heading); }
.action-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 20px; }
.action-card-arrow {
  width: 40px; height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin: 0 auto;
  transition: transform var(--transition-base);
}
.action-card:hover .action-card-arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════ */
.reviews-section { background: var(--surface); }
.reviews-rating-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); line-height: 1; }
.rating-stars { display: flex; gap: 4px; }
.rating-stars .star { font-size: 1.4rem; color: #F59E0B; }
.rating-meta { flex: 1; }
.rating-meta p { font-size: 0.9rem; color: var(--text-mid); }
.rating-meta strong { color: var(--text-dark); }
.g-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--surface-alt);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.g-badge .g-logo { font-size: 1.2rem; font-weight: 900; color: #4285F4; }
.review-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.review-tab {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--surface-alt);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}
.review-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.review-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-alt);
  transition: all var(--transition-base);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.review-card.hidden { display: none; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); font-family: var(--font-body); }
.review-meta span { font-size: 0.76rem; color: var(--text-light); }
.review-stars { margin-bottom: 10px; display: flex; gap: 2px; }
.review-stars .star { color: #F59E0B; font-size: 0.9rem; }
.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.review-text.clamped { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-btn { font-size: 0.78rem; color: var(--primary); font-weight: 600; cursor: pointer; margin-top: 6px; display: inline-block; }
.review-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--surface-alt); display: flex; align-items: center; gap: 6px; }
.g-icon { font-size: 0.9rem; color: #4285F4; font-weight: 900; }
.review-footer span { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }
.reviews-cta-wrap { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════
   BLOG / HOT OFF THE PRESS
══════════════════════════════════════════ */
.blog-section { background: var(--dark); position: relative; overflow: hidden; }
.blog-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,86,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.blog-card {
  background: var(--dark-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition-base);
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.blog-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(232,66,10,0.15);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.blog-date { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.blog-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; transition: color var(--transition-fast); }
.blog-card:hover h3 { color: var(--accent-light); }
.blog-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
  transition: gap var(--transition-fast);
}
.blog-read-more:hover { gap: 10px; }

/* ══════════════════════════════════════════
   INQUIRY / CONTACT FORM
══════════════════════════════════════════ */
.inquiry-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.inquiry-section::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: 60px 60px;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.form-card h2 { font-size: 1.9rem; margin-bottom: 8px; }
.form-card p { margin-bottom: 28px; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  margin-bottom: 16px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--surface-alt);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(39,86,168,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--accent); }
.form-error { font-size: 0.78rem; color: var(--accent); margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.form-success.show { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #22C55E;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.form-success h3 { font-size: 1.4rem; color: var(--text-dark); }
.form-success p { color: var(--text-mid); }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; padding-top: 80px; }
.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition-base);
}
.contact-info-card:hover { background: var(--glass-hover); border-color: var(--glass-border-hover); transform: translateX(4px); }
.info-icon {
  width: 44px; height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-text h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-light); margin-bottom: 4px; font-family: var(--font-body); }
.info-text p, .info-text a { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.info-text a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   PRODUCTS & SERVICES PAGE
══════════════════════════════════════════ */
.services-detail-section { background: var(--surface); }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(26,58,107,0.1); }
.service-detail-img { height: 100%; min-height: 200px; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-img .color-block { width: 100%; height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.service-detail-body { padding: 28px 32px; }
.service-detail-body h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 10px; }
.service-detail-body p { font-size: 0.92rem; margin-bottom: 16px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.video-section { background: var(--dark); }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--dark-mid); aspect-ratio: 16/9; }
.video-card iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  width: 100%; height: 100%;
  background: var(--dark-mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.video-placeholder i { font-size: 2.5rem; color: var(--accent-light); }

/* ══════════════════════════════════════════
   PROMOTIONAL PRODUCTS PAGE
══════════════════════════════════════════ */
.promo-hero { background: var(--dark); }
.promo-intro { background: var(--surface); }
.promo-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.promo-intro-inner p { font-size: 1.05rem; }
.promo-categories { background: var(--dark); }
.promo-cat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}
.promo-cat-card:hover {
  background: var(--glass-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.promo-cat-icon {
  width: 70px; height: 70px;
  background: rgba(232,66,10,0.1);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-light);
  margin: 0 auto 18px;
  transition: all var(--transition-base);
}
.promo-cat-card:hover .promo-cat-icon { background: var(--gradient-accent); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.promo-cat-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.promo-cat-card p { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.how-it-works { background: var(--surface); }
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(26,58,107,0.35);
  font-family: var(--font-heading);
  border: 4px solid var(--surface);
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: var(--text-mid); }
.promo-form-section {
  background: var(--gradient-hero);
  position: relative;
}
.promo-form-section::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: 60px 60px;
}
.promo-form-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.promo-form-inner .form-card { background: rgba(255,255,255,0.97); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.story-section { background: var(--surface); }
.timeline { margin-top: 40px; position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; background: var(--gradient-accent); border-radius: 50%; border: 3px solid var(--surface); z-index: 1; }
.timeline-year { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; margin-bottom: 3px; }
.timeline-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); font-family: var(--font-body); }
.team-section { background: var(--gradient-surface); }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-avatar {
  width: 100%; height: 200px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
.team-avatar::before {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.team-avatar::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(232,66,10,0.15);
  border-radius: 50%;
}
.team-card-body { padding: 24px 20px; }
.team-card-body h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; display: block; }
.team-card-body p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.6; }
.values-section { background: var(--surface); }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-alt);
  text-align: center;
  transition: all var(--transition-base);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(232,66,10,0.2); }
.value-icon {
  width: 68px; height: 68px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-accent);
  transition: transform var(--transition-base);
}
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); }
.location-section { background: var(--gradient-surface); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-embed { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 420px; border: none; display: block; }
.hours-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.hours-card h3 { margin-bottom: 20px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--surface-alt); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); width: 45%; }
.hours-table td:last-child { color: var(--text-mid); }
.hours-table tr.today td { color: var(--accent); font-weight: 700; }
.open-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.1); color: #15803D; border-radius: var(--radius-full); padding: 5px 14px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; }
.open-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.contact-details-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon { width: 38px; height: 38px; background: rgba(26,58,107,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.95rem; flex-shrink: 0; }
.contact-detail-item p, .contact-detail-item a { font-size: 0.9rem; color: var(--text-mid); }
.contact-detail-item a:hover { color: var(--primary); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid-top { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-alt);
  text-align: center;
  transition: all var(--transition-base);
}
.contact-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(26,58,107,0.15); }
.contact-box-icon {
  width: 56px; height: 56px;
  background: rgba(26,58,107,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 14px;
  transition: all var(--transition-base);
}
.contact-box:hover .contact-box-icon { background: var(--gradient-primary); color: var(--white); }
.contact-box h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 8px; }
.contact-box p, .contact-box a { font-size: 0.92rem; font-weight: 500; color: var(--text-dark); line-height: 1.5; }
.contact-box a:hover { color: var(--accent); }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.contact-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-lg); }
.contact-map-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-map-card iframe { width: 100%; height: 100%; min-height: 500px; border: none; display: block; }

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-page { background: var(--surface); }
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.faq-tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--surface-alt);
  transition: all var(--transition-fast);
}
.faq-tab-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.faq-tab-btn.active { background: var(--gradient-primary); color: var(--white); border-color: transparent; box-shadow: 0 4px 16px rgba(26,58,107,0.3); }
.faq-group { display: none; }
.faq-group.active { display: block; }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-alt);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { border-color: rgba(26,58,107,0.2); box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-question h4 { font-size: 0.96rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; font-family: var(--font-body); }
.faq-item.open .faq-question h4 { color: var(--primary); }
.faq-icon {
  width: 32px; height: 32px;
  background: var(--surface-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.faq-item.open .faq-icon { background: var(--gradient-accent); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 24px; }
.faq-answer-inner p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.faq-cta-section { background: var(--gradient-primary); }
.faq-cta-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.faq-mini-form { margin-top: 32px; }
.faq-mini-form .form-row-3 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.faq-mini-form .form-group { margin-bottom: 0; }
.faq-mini-form input, .faq-mini-form textarea { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--white); }
.faq-mini-form input::placeholder, .faq-mini-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.faq-mini-form input:focus, .faq-mini-form textarea:focus { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 4px rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}
.footer-social:hover { background: var(--gradient-accent); border-color: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1em; opacity: 0; transition: opacity var(--transition-fast); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent-light); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.5; transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--white); }
.footer-map { margin-top: 14px; border-radius: var(--radius-md); overflow: hidden; }
.footer-map iframe { width: 100%; height: 160px; border: none; display: block; filter: grayscale(30%); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.07); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-credit strong { color: var(--accent-light); }
.footer-credit a { color: var(--accent-light); transition: color var(--transition-fast); }
.footer-credit a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   MOBILE STICKY BUTTONS
══════════════════════════════════════════ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  height: 56px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.mobile-sticky-bar.visible { transform: translateY(0); }
.mobile-sticky-inner { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity var(--transition-fast);
}
.sticky-btn:hover { opacity: 0.92; }
.sticky-btn-call { background: var(--gradient-primary); }
.sticky-btn-wa { background: #25D366; }
.sticky-btn i { font-size: 1rem; }

/* ══════════════════════════════════════════
   AOS ANIMATIONS
══════════════════════════════════════════ */
[data-aos] { opacity: 0; transition-property: transform, opacity; transition-duration: 0.7s; transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94); }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.88); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

/* ══════════════════════════════════════════
   UTILITY & MISC
══════════════════════════════════════════ */
.bg-dark { background: var(--dark); }
.bg-surface { background: var(--surface); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--gradient-primary); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.page-main { padding-top: 0; }
.shake { animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes shake { 10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(4px); } 30%, 50%, 70% { transform: translateX(-4px); } 40%, 60% { transform: translateX(4px); } }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .trust-stats { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .contact-info-cards { padding-top: 0; }
  .service-detail-card { grid-template-columns: 200px 1fr; }
  .steps-row::before { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-grid-top { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .why-content { padding-left: 0; }
  .action-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-img { height: 200px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-home { min-height: 100svh; }
  .hero-home h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-stats { grid-template-columns: repeat(2,1fr); }
  .trust-stat:nth-child(2)::after { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: 1fr; max-width: 100%; }
  .page-hero { height: auto; min-height: 280px; padding: 100px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 56px; }
  .contact-grid-top { grid-template-columns: repeat(2,1fr); }
  .form-card { padding: 28px 20px; }
  .faq-mini-form .form-row-3 { grid-template-columns: 1fr; }
  .reviews-rating-hero { flex-direction: column; text-align: center; }
  .location-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .btn-lg { padding: 15px 28px; }
  .contact-grid-top { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
