/* ===========================
   WORKBRIDGE - MAIN STYLESHEET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary: #1a3c5e;
  --primary-dark: #0f2540;
  --primary-light: #2a5080;
  --accent: #c8a96e;
  --accent-light: #e8c98e;
  --accent-dark: #a88040;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #f0ede7;
  --mid-gray: #d0ccc4;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --success: #2d7a4f;
  --shadow-sm: 0 2px 12px rgba(26,60,94,0.08);
  --shadow-md: 0 8px 32px rgba(26,60,94,0.14);
  --shadow-lg: 0 20px 60px rgba(26,60,94,0.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-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(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

/* === BADGE === */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 20px;
}

/* === HEADINGS === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(200,169,110,0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-icon { width: 20px; height: 20px; transition: transform 0.3s ease; }
.btn:hover .btn-icon { transform: translateX(4px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,60,94,0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.4;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--white); position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--light-gray); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,60,94,0.06);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mid);
  transition: var(--transition);
}
.dropdown-link:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 16px;
}
.dropdown-link-icon {
  width: 32px; height: 32px;
  background: var(--light-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-link-icon svg { width: 16px; height: 16px; fill: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-contact {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-contact svg { width: 14px; height: 14px; fill: var(--accent); }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 24px 32px 32px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-submenu { padding: 8px 0 8px 20px; }
.mobile-nav-sub-link {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}
.mobile-nav-sub-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 24px; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
}
.footer-main { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); }
.social-btn svg { width: 18px; height: 18px; fill: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(200,169,110,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 16px; height: 16px; fill: var(--accent); }
.footer-contact-text p:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}
.footer-contact-text p:last-child { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-text a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-text 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: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================
   HERO SECTIONS
   ============================ */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, #1e4d7a 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover;
  opacity: 0.08;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(200,169,110,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-content .badge {
  background: rgba(200,169,110,0.2);
  border-color: rgba(200,169,110,0.4);
  color: var(--accent-light);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: var(--accent-light); font-weight: 500; }

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card {
  padding: 36px 32px;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 50%);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s;
}
.card:hover .card-icon { transform: scale(1.05); }
.card-icon svg { width: 28px; height: 28px; fill: var(--white); }
.card-accent { position: absolute; top: 0; right: 0; width: 4px; height: 0; background: var(--accent); border-radius: 0 var(--radius-md) 0 0; transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card:hover .card-accent { height: 60px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 20px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; }

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(200,169,110,0.06);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================
   CTA SECTIONS
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1400&q=80') center/cover;
  opacity: 0.05;
}
.cta-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,169,110,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Mini CTA (light) */
.cta-light {
  background: var(--off-white);
  padding: 64px 0;
}
.cta-light-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  flex-wrap: wrap;
}
.cta-light-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.cta-light-text p { font-size: 15px; color: var(--text-mid); }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--accent); }
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-gray);
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { font-size: 14px; font-weight: 600; color: var(--primary-dark); display: block; }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ============================
   TEAM / WHY US
   ============================ */
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover { background: var(--off-white); }
.feature-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(26,60,94,0.1) 0%, rgba(26,60,94,0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.feature-text p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ============================
   FORMS
   ============================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,94,0.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }

/* ============================
   FAQ
   ============================ */
.faq-item {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--primary); transform: rotate(180deg); }
.faq-icon svg { width: 14px; height: 14px; fill: var(--primary); transition: fill 0.2s; }
.faq-item.open .faq-icon svg { fill: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
  margin-top: 0;
}

/* ============================
   SERVICE SIDEBAR
   ============================ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.sidebar-nav-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-gray);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-nav-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-mid);
  transition: var(--transition);
  margin-bottom: 4px;
}
.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: var(--primary);
  color: var(--white);
  padding-left: 16px;
}
.sidebar-nav-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.sidebar-cta-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.sidebar-cta-card p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes counter { from { opacity: 0; } to { opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { padding: 56px 0 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }
  .cta-light-inner { padding: 32px 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; fill: var(--white); }

/* Divider ornament */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}
.divider-ornament::before, .divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mid-gray), transparent);
}
.divider-ornament span {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--mid-gray), var(--accent), var(--mid-gray));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

/* ============================
   MARQUEE STRIP — adds height to header offset
   ============================ */
:root {
  --marquee-height: 40px;
  --header-total: calc(var(--header-height) + var(--marquee-height));
}
.site-header {
  top: var(--marquee-height);
}
.mobile-menu {
  top: calc(var(--marquee-height) + var(--header-height));
}
.page-hero {
  padding-top: calc(var(--header-total) + 80px);
}
main > section:first-child:not(.page-hero):not(.hero) {
  padding-top: calc(var(--header-total) + 40px);
}

/* ============================
   RESPONSIVE GRID HELPERS
   ============================ */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

@media (max-width:1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .grid-2, .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .grid-4 { grid-template-columns:1fr; }
  :root { --marquee-height: 36px; }
}

/* ============================
   HOMEPAGE HERO — full-bleed fix
   ============================ */
.hero {
  padding-top: calc(var(--header-total) + 0px) !important;
  min-height: 100vh;
}

/* ============================
   FOOTER WAVE DIVIDER
   ============================ */
.footer-main { padding-top: 72px; }

/* ============================
   COOKIE BANNER BODY OFFSET
   ============================ */
body.cookie-visible { padding-bottom: 80px; }

/* ============================
   SERVICE LAYOUT STICKY SIDEBAR
   ============================ */
@media (max-width:960px) {
  .service-layout {
    grid-template-columns: 1fr !important;
  }
  .service-sidebar {
    position: static !important;
    order: -1;
  }
}

/* ============================
   FAQ CATEGORY SIDEBAR
   ============================ */
@media (max-width:900px) {
  .faq-layout {
    grid-template-columns: 1fr !important;
  }
  .faq-layout > div:first-child {
    position: static !important;
  }
}

/* ============================
   IMAGE LOGO STYLES
   ============================ */
.logo-img-wrap {
  width: 52px;
  height: 52px;
  /* background: var(--white); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  /* border: 1.5px solid var(--light-gray); */
  flex-shrink: 0;
  /* transition: var(--transition); */
}
.logo:hover .logo-img-wrap {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(200,169,110,0.2);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Tint dark logo to match brand - show as primary navy */
  /* filter: brightness(0) saturate(100%) invert(18%) sepia(40%) saturate(700%) hue-rotate(182deg) brightness(90%); */
  /* transition: filter 0.3s ease; */
}
.logo:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(40%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

/* Footer logo — white version on dark background */
.logo-img-wrap--footer {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.logo-img--footer {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-logo:hover .logo-img-wrap--footer {
  border-color: rgba(200,169,110,0.4);
}
.footer-logo:hover .logo-img--footer {
  filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(600%) hue-rotate(5deg);
  opacity: 1;
}

/* Maintenance page logo */
.logo-img-wrap--maint {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  border-radius: 14px;
  width: 60px;
  height: 60px;
  padding: 8px;
}
.logo-img--maint {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1301;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#25D366 0%,#128C7E 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(18,140,126,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 3s infinite;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float .fa { font-size: 26px; color: #fff; }
.whatsapp-float:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 14px 40px rgba(18,140,126,0.22); }

@keyframes whatsapp-pulse {
  0% { transform: translateY(0) scale(1); box-shadow: 0 8px 28px rgba(18,140,126,0.14); }
  50% { transform: translateY(-6px) scale(1.06); box-shadow: 0 18px 44px rgba(18,140,126,0.20); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 8px 28px rgba(18,140,126,0.14); }
}

@media (max-width: 480px) {
  .whatsapp-float { right: 18px; bottom: 90px; width: 56px; height: 56px; }
  .whatsapp-float .fa { font-size: 22px; }
}
