/* ==========================================
   SELF-HOSTED FONTS
   Served from same origin (assets/fonts/) so there is no render-path
   dependency on fonts.googleapis.com. Text faces use font-display: swap;
   the icon face uses font-display: block so the ligature name never
   paints — the glyph is simply invisible until the (preloaded) file
   arrives. Preload hints live in each page <head>.
   ========================================== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;           /* variable wght axis */
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;           /* variable wght axis */
  font-display: swap;
  src: url('../assets/fonts/montserrat-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;            /* invisible during load, never shows the raw ligature text */
  src: url('../assets/fonts/material-symbols-outlined-subset.woff2') format('woff2');
}

:root {
  /* Colors */
  --color-bg:               #003333;   /* deep dark teal — main background */
  --color-surface:          #001717;   /* darker teal for nav/footer */
  --color-card:             #ffffff;   /* white — all content cards */
  --color-card-text:        #001717;   /* dark teal text inside white cards */
  --color-accent:           #caf221;   /* vibrant lime green — CTA buttons, highlights */
  --color-accent-dark:      #2a3500;   /* dark text on lime buttons */
  --color-text-primary:     #c5eae9;   /* light teal — headings on dark bg */
  --color-text-muted:       #c5c9ad;   /* muted olive — body text on dark bg */
  --color-surface-card-low: #002424;   /* dark teal chips/badges inside cards */
  --color-border:           #173a3a;   /* subtle border */
  
  /* Additional Premium Semantic Colors */
  --color-wa-green:         #25D366;
  --color-wa-green-hover:   #20ba5a;
  --color-card-border-light:#e5e7eb;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Font Scale */
  --text-h1:    48px;
  --text-h2:    32px;
  --text-h3:    24px;
  --text-body:  16px;
  --text-small: 14px;
  --text-label: 14px;

  /* Spacing Scale */
  --section-gap:     80px;
  --card-padding:    32px;
  --gutter:          24px;
  --container-max:   1280px;
  --mobile-margin:   16px;
  
  /* Transition curve */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  overflow-x: hidden; /* stop decorative glows / oversized heroes causing a sideways scroll on mobile */
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-text-primary);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for sticky nav */
}

/* Base Image & Content Sizing */
img {
  max-width: 100%;
  height: auto;
  font-size: 0; /* Prevents alt text layout displacement before image load */
}

/* ==========================================
   MATERIAL SYMBOLS & ICON LAYOUT SHIFT PREVENTION
   Enforces fixed box boundaries for ligature text
   so raw icon names (e.g. 'expand_more', 'work')
   never expand surrounding containers during load.
   ========================================== */
.material-symbols-outlined,
.mat-icon,
.mat {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  width: 1em;
  height: 1em;
  overflow: hidden;
  vertical-align: middle;
  flex-shrink: 0;
  user-select: none;
}

/* The raw ligature text ('expand_more', 'check_circle', …) never paints:
   the @font-face above uses font-display: block, and the file is preloaded
   from the same origin, so the glyph is either shown or invisible — but the
   fallback string is not rendered. No JS class-toggle needed. */

/* Containers & Grids */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--mobile-margin);
  }
}

.section {
  padding: var(--section-gap) 0;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Typography elements */
h1, .text-h1 {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2, .text-h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.25;
}

h3, .text-h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.3;
}

p, .text-body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
}

.text-small {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 400;
}

.text-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h1, .text-h1 { font-size: 32px; }
  h2, .text-h2 { font-size: 26px; }
  h3, .text-h3 { font-size: 20px; }
}

/* Headings on Cards vs Background */
.section-label {
  display: block;
  width: fit-content;
  margin: 0 auto 12px auto;   /* centres the pill on all centred sections */
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(202, 242, 33, 0.08);
  border: 1px solid rgba(202, 242, 33, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
}

/* Left-aligned variant — used inside split/hero layouts */
.section-label.align-left {
  margin-left: 0;
  margin-right: auto;
}

.section-label.on-card {
  color: var(--color-bg);
  background: rgba(0, 51, 51, 0.06);
  border-color: rgba(0, 51, 51, 0.1);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-card-text);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Decorative accent underline under section titles */
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.section-title.align-left {
  text-align: left;
}

.section-title.align-left::after {
  margin-left: 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #556b6b;
  text-align: center;
  margin-bottom: 44px;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.section-title.on-dark {
  color: var(--color-text-primary);
}

.section-title.on-dark::after {
  background: var(--color-accent);
}

.section-subtitle.on-dark {
  color: var(--color-text-muted);
}

/* Premium Navigation */
nav {
  background-color: var(--color-surface);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  overflow: visible; /* Allow transparent logo to extend beyond nav height */
}

nav.scrolled {
  background-color: rgba(0, 23, 23, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  height: 72px;
}

nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (max-width: 768px) {
  nav .nav-container {
    padding: 0 var(--mobile-margin);
  }
}

nav .logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav .logo-accent {
  color: var(--color-accent);
}

/* Premium Image Logo Styles */
.logo-img {
  height: 110px; /* Overflows transparent beyond navbar — premium look */
  width: auto;
  aspect-ratio: 180 / 110;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-img:hover {
  transform: scale(1.05);
}

nav.scrolled .logo-img {
  height: 90px; /* Slightly smaller when header shrinks on scroll */
}

.logo-img-footer {
  height: 100px;
  width: auto;
  aspect-ratio: 180 / 100;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.logo-img-footer:hover {
  transform: scale(1.05);
}

nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav .nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--color-accent);
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

nav .nav-links a:hover::after,
nav .nav-links a.active::after {
  width: 100%;
}

/* Dropdown styling */
nav .dropdown {
  position: relative;
}

nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: 240px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

nav .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: var(--text-small);
  color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

nav .dropdown-menu li a::after {
  display: none;
}

nav .dropdown-menu li a:hover {
  background-color: var(--color-surface-card-low);
  color: var(--color-accent);
}

nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button */
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
}

nav .menu-toggle span {
  font-size: 30px;
}

/* Mobile Menu Slidedown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  z-index: 90;
  list-style: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 234, 233, 0.05);
}

.mobile-menu a.active {
  color: var(--color-accent);
}

.mobile-menu .mobile-sublink {
  font-size: 15px;
  padding-left: 20px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.mobile-menu .btn-primary {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 900px) {
  nav .nav-links,
  nav .nav-cta .btn-primary {
    display: none;
  }
  nav .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}

/* Premium White Cards */
.card {
  background: var(--color-card);
  color: var(--color-card-text);
  border-radius: 16px;
  padding: var(--card-padding);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}

/* Subtle top-edge accent line that reveals on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-bg), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px 16px 0 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(0,51,51,0.08);
}

.card:hover::before {
  transform: scaleX(1);
}

/* Dark Accent Cards (Hero stat chips, final CTA etc) */
.card-dark {
  background-color: var(--color-surface-card-low);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--card-padding);
  transition: var(--transition-smooth);
}

.card-dark:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(202, 242, 33, 0.1);
}

/* ==========================================
   ABOUT US SPLIT SECTION
   ========================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

/* Decorative lime corner accent */
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-left: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
  border-radius: 0 0 0 12px;
  pointer-events: none;
}

/* Experience badge overlaid on image */
.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-accent);
  color: var(--color-accent-dark);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(202, 242, 33, 0.35);
}

.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge .badge-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.about-stat .stat-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-primary);
  font-weight: 500;
}

.about-highlight-item span.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(202, 242, 33, 0.1);
  border: 1px solid rgba(202, 242, 33, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-image-wrap {
    aspect-ratio: 16/9;
  }
  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .about-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .about-badge .badge-number {
    font-size: 22px;
  }
}

/* ==========================================
   TRUST STRIP — Social proof ticker
   ========================================== */
.trust-strip {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scrollTicker 30s linear infinite;
}

.trust-strip-inner:hover {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.trust-item span.mat {
  color: var(--color-accent);
  font-size: 18px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  flex-shrink: 0;
}

@keyframes scrollTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Buttons */

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(202, 242, 33, 0.2);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 242, 33, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 242, 33, 0.25);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Card internal specific buttons */
.card .btn-card {
  margin-top: auto;
  width: 100%;
}

/* Chips and Badges */
.chip {
  background: var(--color-surface-card-low);
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-border);
}

.chip-lime {
  background: var(--color-accent);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(202, 242, 33, 0.15);
}

/* Lists on Cards */
ul.service-list {
  list-style: none;
  margin-bottom: 24px;
}

ul.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334d4d; /* slightly darker dark teal inside cards */
  font-weight: 500;
}

ul.service-list li::before {
  content: 'check_circle';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-bg); /* Use deep teal for checkmark inside white card */
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 600;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: var(--color-wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulse-wa 2.5s infinite;
  text-decoration: none;
  border: none;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: var(--color-wa-green-hover);
  transform: scale(1.05);
}

.whatsapp-float img,
.whatsapp-float span {
  color: white;
  font-size: 32px;
}

@keyframes pulse-wa {
  0%, 100% { 
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); 
  }
  50% { 
    box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37, 211, 102, 0.15); 
  }
}

/* Hero Section Homepage Styles */
.hero-card {
  padding: 48px;
}

.hero-stats-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-stat-chip {
  background-color: var(--color-surface-card-low);
  color: var(--color-text-primary);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.hero-stat-chip:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.hero-stat-chip .icon-box {
  background-color: rgba(202, 242, 33, 0.1);
  color: var(--color-accent);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-chip .icon-box span {
  font-size: 24px;
}

.hero-stat-chip .stat-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero-card {
    padding: 24px 16px;
  }
  .hero-stat-chip {
    padding: 16px;
  }
}

/* Process Section Steps styling */
.process-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  margin-top: 32px;
  margin-bottom: 16px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.process-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-surface-card-low);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 4px solid #ffffff;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.process-step:hover .process-circle {
  background-color: var(--color-accent);
  color: var(--color-accent-dark);
  transform: scale(1.1);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-card-text);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 13px;
  color: #556b6b;
  max-width: 160px;
}

@media (max-width: 768px) {
  .process-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .process-line {
    width: 2px;
    height: calc(100% - 48px);
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 280px;
    gap: 16px;
  }
  .process-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .process-desc {
    max-width: 100%;
  }
}

/* Why Choose Us Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,51,51,0.06);
  transition: var(--transition-smooth);
  background: rgba(0,51,51,0.02);
}

.why-choose-item:hover {
  background: rgba(0,51,51,0.04);
  border-color: rgba(0,51,51,0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,51,51,0.06);
}

.why-choose-icon {
  background: linear-gradient(135deg, var(--color-bg), #004d4d);
  color: var(--color-accent);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,51,51,0.2);
}

.why-choose-icon span {
  font-size: 22px;
}

.why-choose-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-card-text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.why-choose-content p {
  font-size: 13px;
  color: #556b6b;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Testimonials Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #f8fffe);
  border: 1px solid rgba(0,51,51,0.07);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,51,51,0.04);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,51,51,0.1);
  border-color: rgba(0,51,51,0.14);
}

/* Big decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,51,51,0.06);
  pointer-events: none;
}

.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
}

.testimonial-stars span {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: #3d5c5c;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,51,51,0.06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg), #004d4d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.testimonial-meta h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-card-text);
  margin-bottom: 2px;
}

.testimonial-meta p {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Final CTA Banner */
.cta-banner {
  background-color: var(--color-surface-card-low);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 56px var(--card-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(202, 242, 33, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(202, 242, 33, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .cta-banner p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* Services Grid Subpages */
.service-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0,51,51,0.07), rgba(0,51,51,0.03));
  border: 1px solid rgba(0,51,51,0.08);
  transition: var(--transition-smooth);
}

.service-icon-wrapper span {
  font-size: 26px;
  color: var(--color-bg);
  font-variation-settings: 'FILL' 0, 'wght' 400;
}

.card:hover .service-icon-wrapper {
  background: var(--color-bg);
  border-color: var(--color-bg);
}

.card:hover .service-icon-wrapper span {
  color: var(--color-accent);
}

.pricing-chip-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-card-border-light);
  gap: 12px;
}

.pricing-chip-row .learn-more-link {
  font-size: var(--text-small);
  color: var(--color-surface);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.pricing-chip-row .learn-more-link:hover {
  color: #004d4d;
  gap: 8px;
}

/* Pricing Section Tables on subpages */
.pricing-table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
}

table.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.pricing-table th, 
table.pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-card-border-light);
}

table.pricing-table th {
  background-color: rgba(0, 51, 51, 0.03);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-card-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

table.pricing-table th:first-child {
  border-top-left-radius: 8px;
}

table.pricing-table th:last-child {
  border-top-right-radius: 8px;
}

table.pricing-table td {
  font-size: 15px;
  color: #334d4d;
}

table.pricing-table td:first-child {
  font-weight: 600;
  color: var(--color-card-text);
}

/* Highlighted Popular Column inside pricing table */
table.pricing-table th.popular,
table.pricing-table td.popular {
  background-color: rgba(202, 242, 33, 0.04);
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

table.pricing-table th.popular {
  border-top: 2px solid var(--color-accent);
}

table.pricing-table tr:last-child td.popular {
  border-bottom: 2px solid var(--color-accent);
}

table.pricing-table td .check-icon {
  color: #25D366;
  font-weight: 700;
  font-size: 20px;
}

table.pricing-table td .dash-icon {
  color: #ccc;
  font-weight: 400;
}

table.pricing-table .price-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-card-text);
}

table.pricing-table tr.action-row td {
  border-bottom: none;
  padding-top: 24px;
}

@media (max-width: 600px) {
  table.pricing-table th, 
  table.pricing-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  table.pricing-table .price-val {
    font-size: 16px;
  }
}

/* Accordion / FAQs */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.faq-item {
  border: 1px solid var(--color-card-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-card-text);
  gap: 16px;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background-color: rgba(0, 51, 51, 0.02);
}

.faq-question .faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--color-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #556b6b;
  background-color: #fafafa;
}

.faq-answer.open {
  max-height: 500px; /* arbitrary high value for transition */
  padding: 0 24px 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:has(.faq-answer.open) {
  border-color: var(--color-bg);
  box-shadow: 0 4px 12px rgba(0, 51, 51, 0.05);
}

/* Contact options and quick selector styles - Redesigned Premium */
.contact-form-section {
  padding: 48px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 51, 51, 0.05);
  box-shadow: 0 4px 30px rgba(0, 51, 51, 0.03);
  overflow: hidden;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.contact-form-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-section:hover .illustration-img {
  transform: scale(1.03) translateY(-4px);
}

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.contact-form-container .form-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-bg);
  margin-top: 8px;
  margin-bottom: 12px;
}

.contact-form-container .form-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #556b6b;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  width: 100%;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-card-text);
  border: none;
  border-bottom: 2px solid rgba(0, 51, 51, 0.12);
  outline: none;
  background: transparent;
  transition: border-color 0.3s ease;
}

.input-group textarea {
  height: 90px;
  resize: none;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #7b9393;
  pointer-events: none;
  transition: 0.3s ease all;
}

/* Floating labels */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -12px;
  left: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-bg);
}

.input-group input:focus ~ .line-bar,
.input-group textarea:focus ~ .line-bar {
  width: 100%;
}

.line-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.4s ease;
}

.form-submit-btn {
  align-self: flex-start;
  margin-top: 16px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  background-color: var(--color-bg);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 51, 51, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-accent);
  color: var(--color-accent-dark);
  box-shadow: 0 6px 20px rgba(202, 242, 33, 0.35);
}

/* Success notification alert */
.success-alert {
  display: none;
  background-color: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.4s ease;
}

.success-alert-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.success-alert-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px 0;
  color: #1b5e20;
}

.success-alert-content p {
  font-family: var(--font-body);
  font-size: 13px;
  margin: 0;
  color: #2e7d32;
  line-height: 1.4;
}

.success-alert .check-icon {
  color: #2e7d32;
  font-size: 24px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Three contact info cards styling */
.contact-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.contact-info-card-v2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px var(--card-padding);
  border-radius: 24px;
  border: 1px solid rgba(0, 51, 51, 0.05);
  box-shadow: 0 4px 24px rgba(0, 51, 51, 0.03);
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.contact-info-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 51, 51, 0.08);
  border-color: rgba(0, 51, 51, 0.15);
}

.card-illustration-box {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.card-illustration-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card-v2:hover .card-illustration-img {
  transform: scale(1.08) translateY(-4px);
}

.contact-info-card-v2 h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-bg);
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-info-card-v2 .card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-card-text);
  margin-top: 0;
  margin-bottom: 4px;
}

.contact-info-card-v2 .card-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg);
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.contact-info-card-v2 .card-link:hover {
  color: var(--color-accent);
}

.contact-info-card-v2 .card-subdesc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #7b9393;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

/* Full bleed map layout */
.map-section-card {
  border-radius: 24px;
  border: 1px solid rgba(0, 51, 51, 0.05);
  box-shadow: 0 4px 24px rgba(0, 51, 51, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 51, 51, 0.07);
}

@media (max-width: 900px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 24px;
  }
  .form-row.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer Grid */
footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: var(--section-gap) 0 40px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.8fr 1fr 1.1fr 0.9fr;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.logo-img-footer {
  height: 90px;
  width: auto;
  aspect-ratio: 180 / 100;
  display: block;
  object-fit: contain;
  margin-left: -14px; /* Visually aligns logo graphic with left text edge */
  margin-top: -12px;  /* Visually aligns logo top with H4 text top */
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.logo-img-footer:hover {
  transform: scale(1.03);
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.footer-contact-item span.mat-icon,
.footer-contact-item span.material-symbols-outlined {
  color: var(--color-accent);
  font-size: 18px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-contact-item .footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  padding: 2px 10px 2px 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-wa-green);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 9999px;
  white-space: nowrap;
}

.footer-contact-item .footer-wa-link svg { flex-shrink: 0; }

.footer-contact-item .footer-wa-link:hover {
  background: var(--color-wa-green);
  color: #ffffff;
  border-color: var(--color-wa-green);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-surface-card-low);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-links-col ul a {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  line-height: 1.4;
  display: inline-block;
}

.footer-links-col ul a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Extra Aesthetics: Subpage Hero Sections */
.subpage-hero {
  padding: 72px 0 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden; /* contain the 600px radial glow below so it never widens the page */
}

/* Subtle radial glow behind subpage hero */
.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center top, rgba(202, 242, 33, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.subpage-hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.subpage-hero p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 28px auto;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 48px 0 28px 0;
  }
  .subpage-hero h1 {
    font-size: 34px;
  }
  .subpage-hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* Standards compliance badges grid */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 16px;
}

.standard-badge {
  background-color: rgba(0, 51, 51, 0.03);
  border: 1px solid rgba(0, 51, 51, 0.05);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.standard-badge:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.standard-badge span.icon {
  font-size: 32px;
  color: var(--color-bg);
}

.standard-badge h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-card-text);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PREMIUM HERO SLIDESHOW BANNER CAROUSEL
   ========================================== */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 580px; /* Majestic full widescreen display height */
  border-radius: 0; /* No card rounded corners - fully wide! */
  overflow: hidden;
  margin-top: 0; /* Sits flush under the sticky navbar */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Premium bottom drop shadow */
  background-color: var(--color-surface);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  transform: scale(1.03);
  z-index: 1;
}

.carousel-slide .container {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.carousel-content {
  padding: 48px 0 48px 60px; /* Left padding of 60px inside container keeps text perfectly clear of left arrow */
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.carousel-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.carousel-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-secondary-white {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary-white:hover {
  background-color: #ffffff;
  color: var(--color-surface);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

/* Control Arrows */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 23, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.carousel-control:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(202, 242, 33, 0.4);
}

.carousel-control.prev {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.carousel-control span {
  font-size: 28px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicators .indicator.active {
  background-color: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-carousel-container {
    height: auto;
    min-height: 480px;
  }
  
  .carousel-slide {
    position: relative;
    opacity: 0;
    visibility: hidden;
    display: none;
    height: auto;
    padding: 56px 20px;
  }
  
  .carousel-slide.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  
  .carousel-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }
  
  .carousel-content h2 {
    font-size: 26px;
  }
  
  .carousel-content p {
    font-size: 14px;
  }
  
  .carousel-control {
    display: none; /* Hide navigation arrows on touch/mobile viewports for clean layout */
  }
  
  .carousel-indicators {
    bottom: 16px;
  }

  /* Compactive WhatsApp floating widget on mobile to protect card actions */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Global scroll container buffer for mobile screens */
  main.container {
    padding-bottom: 80px !important;
  }
}



/* ==========================================
   RESPONSIVE FIXES � COMPREHENSIVE OVERHAUL
   ========================================== */

/* Reduce section gap on mobile */
@media (max-width: 768px) {
  :root {
    --section-gap: 48px;
    --card-padding: 20px;
  }

  h1, h2, h3 {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  #about.container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .about-stat .stat-num {
    font-size: 22px;
  }

  .section-subtitle {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .subpage-hero h1 {
    font-size: 30px;
    letter-spacing: -0.01em;
  }

  .subpage-hero p {
    font-size: 14px;
  }

  .card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .trust-strip {
    padding: 12px 0;
  }

  .trust-item {
    font-size: 12px;
  }

  .why-choose-item {
    padding: 14px;
    gap: 12px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card::before {
    font-size: 56px;
    top: 12px;
    right: 16px;
  }

  .cta-banner {
    padding: 36px 20px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  .cta-banner p {
    font-size: 14px;
  }

  .about-highlight-item {
    font-size: 13px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px) {
  :root {
    --section-gap: 60px;
  }

  .about-split {
    gap: 40px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Float buttons � stop overlapping content on small screens */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }



  main.container {
    padding-bottom: 100px !important;
  }
}

/* GPU acceleration for animated elements */
.carousel-slide,
.whatsapp-float,
.card,
.about-image-wrap img {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Ensure images never overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Fluid typography on very small screens */
@media (max-width: 480px) {
  .section-label {
    font-size: 10px;
    padding: 4px 12px;
    letter-spacing: 0.08em;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ==========================================
   FOOTER CONTACT INFO BLOCK
   ========================================== */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-contact-item span.mat-icon {
  font-size: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

/* Contact Page Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-top: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-bg), #004d4d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,51,51,0.2);
}

.contact-info-icon span {
  font-size: 20px;
  color: var(--color-accent);
}

.contact-info-text h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-card-text);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.25s ease;
  display: block;
}

.contact-info-text a:hover {
  color: var(--color-bg);
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ==========================================
   LIGHT / DARK THEME SYSTEM (PREMIUM ICE TEAL)
   ========================================== */

[data-theme="light"] {
  --color-bg:               #f1f5f5;   /* refreshing light soft-grey ice-teal */
  --color-surface:          #ffffff;   /* clean crisp white for navigation / footer */
  --color-card:             #ffffff;   /* white cards */
  --color-card-text:        #002424;   /* deep teal content text */
  --color-accent:           #caf221;   /* keep brand vibrant lime green! */
  --color-accent-dark:      #2a3500;   /* dark text on lime buttons for high readability */
  --color-text-primary:     #002424;   /* dark professional slate headings */
  --color-text-muted:       #4d6666;   /* readable muted body slate */
  --color-surface-card-low: #e2ecec;   /* soft light-teal chips/badges */
  --color-border:           #d1e0e0;   /* crisp light border lines */
  --color-card-border-light:#e2ecec;
}

/* Base body transition to smooth theme shifts */
body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Header logo correction for Light Mode */
/* Header and Footer Logo Swaps for Light Mode */
[data-theme="light"] .logo-img,
[data-theme="light"] .logo-img-footer {
  content: url("../assets/logo_light.png") !important;
  filter: none !important; /* disable any dynamic brightness filters */
}

/* Navigation scroll transitions */
[data-theme="light"] nav.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 51, 51, 0.08);
  box-shadow: 0 4px 20px rgba(0, 51, 51, 0.03);
}

[data-theme="light"] .mobile-menu {
  box-shadow: 0 10px 30px rgba(0, 51, 51, 0.06);
}

[data-theme="light"] .mobile-menu a {
  border-bottom: 1px solid rgba(0, 51, 51, 0.06);
}

/* Keeping CTA banners and Dark Cards beautifully dark for high-end visual contrast */
[data-theme="light"] .cta-banner {
  background-color: #002424;
  color: #c5eae9;
  border-color: #173a3a;
  box-shadow: 0 10px 35px rgba(0, 51, 51, 0.15);
}

[data-theme="light"] .cta-banner h2 {
  color: #ffffff;
}

[data-theme="light"] .cta-banner p {
  color: #c5c9ad;
}

[data-theme="light"] .cta-banner .btn-secondary-white {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

[data-theme="light"] .cta-banner .btn-secondary-white:hover {
  background-color: #ffffff !important;
  color: #002424 !important;
}

[data-theme="light"] .card-dark {
  background-color: #002424 !important;
  color: #c5eae9 !important;
  border-color: #173a3a !important;
}

[data-theme="light"] .card-dark h3,
[data-theme="light"] .card-dark h4 {
  color: #ffffff !important;
}

[data-theme="light"] .card-dark p {
  color: #c5c9ad !important;
}

/* Subpage Hero title override */
[data-theme="light"] .subpage-hero h1 {
  color: var(--color-text-primary);
}

/* Carouselindicators fix */
[data-theme="light"] .pricing-chip-row .learn-more-link {
  color: var(--color-bg);
}

[data-theme="light"] .pricing-chip-row .learn-more-link:hover {
  color: #20ba5a; /* brand green for success hover states */
}



/* Professional Style for Switch Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
  padding: 0;
  margin-right: 12px;
}

.theme-toggle-btn span {
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-btn:hover {
  background-color: rgba(202, 242, 33, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.08) rotate(15deg);
}

.theme-toggle-btn:hover span {
  transform: scale(1.1);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background-color: rgba(0, 51, 51, 0.04);
  border-color: var(--color-bg);
  color: var(--color-bg);
}

/* Sync mobile toggle styling list row spacing */
.mobile-theme-toggle-row {
  margin-bottom: 8px;
}

[data-theme="light"] .mobile-theme-toggle-row {
  border-bottom-color: rgba(0, 51, 51, 0.06) !important;
}

@media (max-width: 900px) {
  .theme-toggle-btn {
    margin-right: 0;
  }
}



/* ==========================================
   COMPREHENSIVE READABILITY CONTRAST FIXES (LIGHT MODE)
   ========================================== */

[data-theme="light"] .section-label {
  color: #004d4d !important;
  background: rgba(202, 242, 33, 0.16) !important;
  border: 1px solid rgba(202, 242, 33, 0.4) !important;
}

[data-theme="light"] .section-label.on-card {
  color: #004d4d !important;
  background: rgba(0, 51, 51, 0.05) !important;
  border: 1px solid rgba(0, 51, 51, 0.1) !important;
}

[data-theme="light"] .service-icon-wrapper span,
[data-theme="light"] .standard-badge span.icon {
  color: #003333 !important;
}

[data-theme="light"] .card:hover .service-icon-wrapper {
  background: #003333 !important;
  border-color: #003333 !important;
}

[data-theme="light"] .card:hover .service-icon-wrapper span {
  color: var(--color-accent) !important; /* brand lime green */
}

[data-theme="light"] .testimonial-card::before {
  color: rgba(0, 51, 51, 0.16) !important; /* higher opacity decorative quotation marks */
}

[data-theme="light"] .footer-links-col h4 {
  color: var(--color-text-primary) !important; /* dark professional slate for footer columns */
}

[data-theme="light"] nav .logo {
  color: var(--color-text-primary) !important;
}

[data-theme="light"] .form-submit-btn {
  background-color: #003333 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 51, 51, 0.08) !important;
}

[data-theme="light"] .form-submit-btn:hover {
  background-color: var(--color-accent) !important; /* lime green */
  color: var(--color-accent-dark) !important; /* dark olive text */
  box-shadow: 0 6px 20px rgba(202, 242, 33, 0.3) !important;
}

[data-theme="light"] .input-group label {
  color: #5c7575 !important; /* darker medium slate for resting form labels */
}

[data-theme="light"] .input-group input:focus ~ label,
[data-theme="light"] .input-group input:not(:placeholder-shown) ~ label,
[data-theme="light"] .input-group textarea:focus ~ label,
[data-theme="light"] .input-group textarea:not(:placeholder-shown) ~ label {
  color: #004d4d !important; /* deep responsive teal for floating active labels */
}


[data-theme="light"] ul.service-list li::before {
  color: #003333 !important; /* solid high-contrast dark teal checkmarks/tick marks in light mode */
}

[data-theme="light"] .contact-info-card-v2 h3 {
  color: var(--color-text-primary) !important; /* solid deep teal heading */
}

[data-theme="light"] .contact-info-card-v2 .card-link {
  color: var(--color-text-primary) !important; /* solid deep teal links */
}

[data-theme="light"] .contact-info-card-v2 .card-link:hover {
  color: var(--color-accent) !important; /* vibrant lime green hover */
}

/* ==========================================
   LEGAL PAGES (Terms of Service / Privacy Policy)
   ========================================== */
.legal {
  max-width: 880px;
  margin: 0 auto;
}

.legal .legal-meta {
  font-size: 13px;
  color: #7b9393;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-card-border-light);
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-card-text);
  margin: 34px 0 12px;
  line-height: 1.3;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-card-text);
  margin: 22px 0 8px;
}

.legal p,
.legal li {
  font-size: 14.5px;
  line-height: 1.75;
  color: #3d5c5c;
  overflow-wrap: break-word;
}

.legal p {
  margin-bottom: 14px;
}

.legal ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal strong {
  color: var(--color-card-text);
  font-weight: 700;
}

.legal a {
  color: var(--color-bg);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 51, 51, 0.25);
}

.legal a:hover {
  border-bottom-color: var(--color-bg);
}

.legal .legal-note {
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(0, 51, 51, 0.04);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: #556b6b;
}

.legal .legal-note p {
  font-size: 13px;
  margin: 0;
  color: #556b6b;
}

[data-theme="light"] .legal a {
  color: #003333;
}

/* ==========================================
   RESUME / SAMPLE ANONYMISATION
   PII in sample documents is redacted, not just visually hidden:
   the served resume PDFs are pre-redacted (flattened, no text layer),
   and these HTML sample mock-ups carry redaction blocks in the markup
   itself — the underlying value is never present in the DOM.
   ========================================== */
.redacted {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  color: transparent !important;
  background-color: #2f2f3a;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0 2px,
    transparent 2px 9px
  );
  padding: 0 0.55em;
  margin: 0 1px;
  line-height: 1.35;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: baseline;
  text-shadow: none;
}

.redacted::selection { background: transparent; }
.redacted::-moz-selection { background: transparent; }

.redacted.redacted-name {
  display: inline-block;
  padding: 0.08em 0.6em;
  border-radius: 6px;
}

.sample-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px 0;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #556b6b;
  background: rgba(0, 51, 51, 0.05);
  border: 1px solid rgba(0, 51, 51, 0.1);
  border-radius: 8px;
}

.sample-privacy-note .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-bg);
  flex-shrink: 0;
}

[data-theme="light"] .sample-privacy-note {
  color: #4d6666;
}
