/* DEC Generators - Base Styles */
:root {
  --bg: #e6edf5;            /* soft bluish-gray for high contrast, not white */
  --card: #ffffff;          /* card surfaces */
  --surface: #edf2f7;       /* section surfaces */
  --text: #0a1428;          /* primary text (navy-ink) */
  --muted: #475569;         /* secondary text (slate) */
  --primary: #0ea5e9;       /* electric sky blue */
  --primary-600: #0284c7;   /* darker blue for hover */
  --secondary: #e2e8f0;     /* light gray controls */
  --accent: #0a2540;        /* deep navy for accents */
  
  /* Animation Variables */
  --animation-fast: 0.2s;
  --animation-normal: 0.3s;
  --animation-slow: 0.5s;
  --animation-extra-slow: 0.8s;
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Global Animation Setup */
* {
  transition: transform var(--animation-normal) var(--ease-out-cubic),
              opacity var(--animation-normal) var(--ease-out-cubic),
              background-color var(--animation-fast) ease,
              border-color var(--animation-fast) ease,
              box-shadow var(--animation-normal) var(--ease-out-cubic);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 88px; /* Account for slightly taller fixed header */
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 70; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(2,132,199,0.12); box-shadow: 0 8px 24px rgba(2, 8, 23, 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: 0.3px; }
.logo { perspective: none; }
/* Logo hover: simple zoom + fade */
.logo img { height: 68px; width: auto; transition: transform .22s ease, filter .22s ease, opacity .22s ease; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12)); opacity: .85; }
.logo:hover img { transform: scale(1.06); filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18)); opacity: 1; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; border-radius: 8px; cursor: pointer; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: #111827; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; border-radius: 2px; }
.nav-toggle.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-list { display: flex; gap: 6px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--text); text-decoration: none; padding: 10px 14px; border-radius: 10px; position: relative; overflow: hidden; font-weight: 600; }
.nav-list a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px; background: rgba(2,132,199,0.25); transform: scaleX(0); transform-origin: left; transition: transform .25s ease, background .25s ease; border-radius: 2px; }
.nav-list a:hover { background: rgba(2, 132, 199, 0.08); }
.nav-list a:hover::after { transform: scaleX(1); background: rgba(14,165,233,0.5); }
.nav-list a.active { background: rgba(14, 165, 233, 0.15); box-shadow: inset 0 0 0 1px rgba(14,165,233,0.35); }

/* Emphasize Contact CTA in nav */
.nav-list .btn.btn-primary { padding: 10px 16px; border-radius: 12px; box-shadow: 0 6px 18px rgba(14, 165, 233, 0.25); }

/* Dropdown Menu Styles */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::before { 
  content: "▼"; 
  font-size: 10px; 
  transition: transform 0.2s ease; 
  color: var(--muted);
}
.nav-dropdown:hover > a::before { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  padding: 8px 0;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.15s ease;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: rgba(14, 165, 233, 0.12);
  color: var(--text);
}

.dropdown-menu a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 16px;
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(242, 208, 36, 0.05);
    margin: 8px 0 0 0;
    padding: 8px 0;
    display: none;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 8px 24px;
    font-size: 14px;
  }
  
  .nav-dropdown > a::before {
    content: "▶";
    transform: rotate(0deg);
  }
  
  .nav-dropdown:hover > a::before {
    transform: rotate(90deg);
  }
}

/* Keyframe 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 fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp var(--animation-slow) var(--ease-out-cubic) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft var(--animation-slow) var(--ease-out-cubic) forwards;
}

.animate-fade-in-right {
  animation: fadeInRight var(--animation-slow) var(--ease-out-cubic) forwards;
}

.animate-fade-in {
  animation: fadeIn var(--animation-slow) ease forwards;
}

.animate-scale-in {
  animation: scaleIn var(--animation-slow) var(--ease-bounce) forwards;
}

.animate-slide-in-down {
  animation: slideInDown var(--animation-slow) var(--ease-out-cubic) forwards;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--animation-extra-slow) var(--ease-out-cubic);
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--animation-extra-slow) var(--ease-out-cubic);
}

.scroll-animate-scale.animate {
  opacity: 1;
  transform: scale(1);
}

/* Enhanced Scroll Animations */
.scroll-fade-in {
  opacity: 0;
  transition: all 0.8s var(--ease-out-cubic);
}

.scroll-fade-in.animate {
  opacity: 1;
}

.scroll-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-out-cubic);
}

.scroll-slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s var(--ease-out-cubic);
}

.scroll-slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s var(--ease-out-cubic);
}

.scroll-slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s var(--ease-bounce);
}

.scroll-scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.scroll-rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s var(--ease-out-cubic);
}

.scroll-rotate-in.animate {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Staggered animation delays for multiple elements */
.scroll-delay-1 { transition-delay: 0.1s; }
.scroll-delay-2 { transition-delay: 0.2s; }
.scroll-delay-3 { transition-delay: 0.3s; }
.scroll-delay-4 { transition-delay: 0.4s; }
.scroll-delay-5 { transition-delay: 0.5s; }
.scroll-delay-6 { transition-delay: 0.6s; }

/* Stagger Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Page Loading Animation */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* Door Opening Animation */
.door-animate-left {
  opacity: 0;
  transform: translateX(-100vw) scale(0.8);
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.door-animate-right {
  opacity: 0;
  transform: translateX(100vw) scale(0.8);
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.door-animate-left.door-open,
.door-animate-right.door-open {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Special effects for different content types */
.card.door-animate-left {
  transform: translateX(-120vw) scale(0.7) rotateY(45deg);
  box-shadow: -50px 50px 100px rgba(0,0,0,0.3);
}

.card.door-animate-right {
  transform: translateX(120vw) scale(0.7) rotateY(-45deg);
  box-shadow: 50px 50px 100px rgba(0,0,0,0.3);
}

.card.door-animate-left.door-open,
.card.door-animate-right.door-open {
  transform: translateX(0) scale(1) rotateY(0deg);
  box-shadow: 0 8px 24px rgba(2,6,23,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Staggered door animation delays */
.door-delay-1 { transition-delay: 0.2s; }
.door-delay-2 { transition-delay: 0.4s; }
.door-delay-3 { transition-delay: 0.6s; }
.door-delay-4 { transition-delay: 0.8s; }
.door-delay-5 { transition-delay: 1.0s; }
.door-delay-6 { transition-delay: 1.2s; }
.door-delay-7 { transition-delay: 1.4s; }
.door-delay-8 { transition-delay: 1.6s; }

/* Hero Section Animations */
.hero, .page-hero {
  animation: slideInDown var(--animation-extra-slow) var(--ease-out-cubic) forwards;
}

.hero h1, .page-hero h1 {
  animation: fadeInUp var(--animation-slow) var(--ease-out-cubic) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero p, .page-hero p {
  animation: fadeInUp var(--animation-slow) var(--ease-out-cubic) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero .btn, .page-hero .btn {
  animation: fadeInUp var(--animation-slow) var(--ease-bounce) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Brand Logo Floating Animation */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

.brand-logo, .logo img {
  animation: float 3s ease-in-out infinite;
}

.brand-logo:hover, .logo img:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.1) !important;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



.site-header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.btn { 
  display: inline-block; 
  padding: 12px 16px; 
  border-radius: 10px; 
  text-decoration: none; 
  font-weight: 600; 
  border: 1px solid transparent; 
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all var(--animation-normal) var(--ease-out-cubic);
}
/* Larger CTA default for better prominence */
.btn { font-size: 16px; }

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--animation-slow) ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn:active {
  transform: translateY(0);
  transition-duration: var(--animation-fast);
}

.btn-primary { 
  background: linear-gradient(180deg, rgba(14,165,233,1), rgba(2,132,199,1));
  color: #ffffff; 
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover { 
  background: linear-gradient(180deg, rgba(2,132,199,1), rgba(7,89,133,1)); 
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45);
}

.btn-secondary { 
  background: transparent; 
  color: var(--text); 
  border-color: #cbd5e1; 
}

.btn-secondary:hover { 
  background: #f1f5f9; 
  border-color: var(--primary);
}

.hero { padding: 56px 0 24px; background: radial-gradient(120% 100% at 0% 0%, rgba(14,165,233,0.08), transparent 40%), radial-gradient(120% 100% at 100% 0%, rgba(2,132,199,0.06), transparent 40%); }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.hero-copy h1 { margin: 0 0 12px; font-size: 44px; line-height: 1.08; color: var(--accent); }
.hero-copy p { margin: 0 0 16px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; }
.hero-art { position: relative; overflow: hidden; border-radius: 16px; }
.hero-art img { width: 100%; height: auto; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 10px 30px rgba(0,0,0,0.08); animation: hero-kenburns 16s ease-in-out infinite alternate, hero-fade-in .7s ease-out both; will-change: transform; transition: transform .35s ease, filter .35s ease, opacity .35s ease, box-shadow .35s ease, border-color .35s ease; opacity: .92; }
.hero-art:hover img { filter: saturate(1.06) contrast(1.03); transform: scale(1.03); animation-play-state: paused; opacity: 1; box-shadow: 0 22px 55px rgba(0,0,0,0.22); border-color: #d1d5db; }
.hero-art::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(90% 65% at 10% 5%, rgba(2,132,199,0.12), transparent 60%); }

@keyframes hero-kenburns {
  0% { transform: scale(1) translate3d(0,0,0); transform-origin: 30% 20%; }
  100% { transform: scale(1.05) translate3d(0,0,0); transform-origin: 70% 60%; }
}

@keyframes hero-fade-in {
  0% { opacity: 0; }
  100% { opacity: .92; }
}

/* Brands strip */
.brands-strip { padding: 10px 0 24px; }
.brands-inner { display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: center; justify-content: center; opacity: 0.95; }
.brands-inner img { height: 28px; filter: grayscale(1) brightness(0.9); opacity: 0.9; }
.more-brands { color: var(--accent); text-decoration: none; font-weight: 700; }

.features, .featured-services { padding: 32px 0; }
.features h2, .featured-services h2 { margin: 0 0 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { 
  position: relative; 
  background: radial-gradient(180% 120% at 10% 0%, #ffffff, #f6faff); 
  border: 1px solid #e2e8f0; 
  padding: 16px; 
  border-radius: 16px; 
  box-shadow: 0 8px 24px rgba(2,6,23,0.06), inset 0 1px 0 rgba(255,255,255,0.9); 
  transition: all var(--animation-normal) var(--ease-out-cubic);
  transform: translateY(0) scale(1);
}

.card::after { 
  content: ""; 
  position: absolute; 
  inset: -1px; 
  border-radius: 18px; 
  background: linear-gradient(120deg, rgba(14,165,233,0.45), rgba(17,24,39,0) 35%, rgba(17,24,39,0) 65%, rgba(14,165,233,0.35)); 
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
  -webkit-mask-composite: xor; 
  mask-composite: exclude; 
  padding: 1px; 
  pointer-events: none; 
  opacity: .7; 
  transition: opacity var(--animation-normal) ease;
}

.card h2, .card h3 { 
  position: relative; 
  padding-bottom: 6px; 
  margin-top: 0; 
  transition: color var(--animation-fast) ease;
}

.card h2::after, .card h3::after { 
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 66%; 
  bottom: 0; 
  height: 3px; 
  background: linear-gradient(90deg, #0ea5e9, transparent); 
  border-radius: 3px; 
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--animation-normal) var(--ease-out-cubic);
}

.card:hover { 
  transform: translateY(-6px) scale(1.02); 
  box-shadow: 0 20px 50px rgba(2,6,23,0.15), 0 0 0 1px rgba(14,165,233,0.12); 
  border-color: rgba(14,165,233,0.35); 
}

.card:hover::after {
  opacity: 1;
}

.card:hover h2::after,
.card:hover h3::after {
  transform: scaleX(1);
}
.link-card { color: var(--text); text-decoration: none; }
.link-card:hover { border-color: #d1d5db; box-shadow: 0 12px 28px rgba(0,0,0,0.08); }

/* Brand cards */
.brand-card { position: relative; padding-right: 72px; display: grid; grid-template-rows: auto auto; gap: 8px; text-align: left; }
.brand-card .brand-logo { position: absolute; right: 12px; top: 12px; height: 32px; width: auto; filter: grayscale(1) brightness(0.9) contrast(1.05); opacity: .95; }
.brand-card:hover .brand-logo { filter: grayscale(0) brightness(1) contrast(1); opacity: 1; }

/* Team */
.team { padding: 16px 0 28px; }
.team h2 { margin: 0 0 8px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { display: grid; grid-template-rows: auto auto 1fr; gap: 8px; }
.team-card .avatar { width: 100%; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease, filter .35s ease; }
.team-card:hover .avatar img { transform: scale(1.03); filter: saturate(1.03) contrast(1.02); }
.team-meta h3 { margin: 0; }
.team-meta small { color: #6b7280; }

.cta-band { padding: 28px 0 40px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: linear-gradient(90deg, rgba(14,165,233,0.18), rgba(2,132,199,0.14)); border: 1px solid rgba(14,165,233,0.5); border-radius: 16px; padding: 16px; }

/* Slider */
.gallery-slider { padding: 8px 0; }
.gallery-slider h2 { margin: 0 0 12px; text-align: center; }
.gallery-slider .container { text-align: center; display: flex; flex-direction: column; align-items: center; }
.slider { position: relative; }
.slider-viewport { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid #e5e7eb; background: #ffffff; }
.slider-track { display: flex; transition: transform .35s ease; }
.slide { flex: 0 0 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slider .slider { width: 100%; max-width: 1000px; margin: 0 auto; }
.gallery-slider .slider { display: grid; }
.gallery-slider .slider-viewport { grid-area: 1 / 1; justify-self: center; width: 100%; }
.gallery-slider .slider-btn { grid-area: 1 / 1; position: static; transform: none; z-index: 5; align-self: center; background: rgba(17,24,39,0.65); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.gallery-slider .slider-btn.prev { justify-self: start; margin-left: 10px; }
.gallery-slider .slider-btn.next { justify-self: end; margin-right: 10px; }
.gallery-slider .slider-btn:hover { background: rgba(17,24,39,0.85); }
.gallery-slider .slider-dots { max-width: 1000px; margin: 8px auto 0; }
.gallery-slider .slider-viewport { aspect-ratio: 16 / 9; max-height: 380px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.gallery-slider .slide { height: 100%; max-height: none; }
.gallery-slider .slide img { transition: opacity .25s ease, transform .35s ease, filter .25s ease; filter: saturate(1.02) contrast(1.03); }
.gallery-slider .slide img:hover { opacity: .78; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(17,24,39,0.6); color: #fff; border: 0; width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; cursor: pointer; z-index: 3; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.slider-btn:hover { background: rgba(17,24,39,0.8); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }
.slider-dots { display: flex; gap: 6px; justify-content: center; padding: 8px 0 0; }
.slider-dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: #cbd5e1; cursor: pointer; }
.slider-dots button[aria-selected="true"] { background: #111827; }

.clients { padding: 32px 0 20px; }
/* New clients grid (replacing slider) */
.clients-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.clients-grid li { display: grid; place-items: center; }
.clients-grid img { width: 160px; height: 100px; object-fit: contain; background: #ffffff; padding: 14px 16px; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 8px 22px rgba(2,6,23,0.06); filter: grayscale(.1) brightness(1) contrast(1.02); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.clients-grid img:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(2,6,23,0.12); filter: grayscale(0) brightness(1.03) contrast(1.04); }

/* Slider client logos layout */
.logo-slider .client-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; padding: 16px; }
.logo-slider .client-logos img { width: 160px; height: 100px; object-fit: contain; background: #ffffff; padding: 14px 16px; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 8px 22px rgba(2,6,23,0.06); filter: grayscale(.1) brightness(1) contrast(1.02); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; justify-self: center; }
.logo-slider .client-logos img:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(2,6,23,0.12); filter: grayscale(0) brightness(1.03) contrast(1.04); }

.site-footer { border-top: 0; margin-top: 32px; background: radial-gradient(120% 120% at 20% 0%, #0b1224 0%, #0f172a 40%, #0a1020 100%); color: #e5e7eb; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; opacity: .25; mix-blend-mode: overlay; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 28px; padding: 56px 0 28px; position: relative; z-index: 1; }
.footer-grid { align-items: start; }
.footer-brand img { height: 50px; width: auto; background: #ffffff; padding: 6px 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.footer-brand p { color: #d1d5db; margin: 10px 0 10px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; font-size: 12px; color: #0f172a; background: #7dd3fc; border: 1px solid #38bdf8; box-shadow: 0 4px 12px rgba(56,189,248,0.25); font-weight: 700; }
.footer-col h4 { margin: 0 0 10px; color: #f8fafc; letter-spacing: .2px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pill-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; color: #e5e7eb; text-decoration: none; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.pill-link:hover { background: rgba(14,165,233,0.2); border-color: rgba(14,165,233,0.55); transform: translateY(-1px); color: #f8fafc; }
.footer-cta { display: grid; align-content: start; justify-items: end; gap: 12px; }
.footer-follow { font-weight: 700; margin: 0 0 4px; color: #f8fafc; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #f8fafc; }
.footer-social a:hover { background: #facc15; color: #111827; border-color: #facc15; }
.footer-social a svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.site-footer .btn-secondary { border-color: #38bdf8; color: #f8fafc; background: transparent; }
.site-footer .btn-secondary:hover { background: #38bdf8; color: #0b1224; }
.footer-cta-card { position: relative; z-index: 2; margin-top: 32px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.footer-cta-card::after { content: ""; position: absolute; inset: -1px; border-radius: 18px; padding: 1px; background: linear-gradient(120deg, rgba(14,165,233,0.5), rgba(255,255,255,0) 40%, rgba(14,165,233,0.35)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.footer-cta-card .cta-text h3 { margin: 0 0 6px; font-size: 22px; color: #f8fafc; }
.footer-cta-card .cta-text p { margin: 0; color: #d1d5db; }
.cta-actions { display: flex; gap: 8px; }
.pill { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); color: #f8fafc; text-decoration: none; background: rgba(255,255,255,0.06); font-weight: 700; }
.pill.primary { background: #38bdf8; color: #0b1224; border-color: #38bdf8; }
.pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.pill.primary:hover { background: #0ea5e9; border-color: #0ea5e9; }
.footer-newsletter { width: 100%; max-width: 340px; display: grid; gap: 8px; }
.footer-newsletter p { margin: 0; color: #cbd5e1; font-size: 14px; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.newsletter-form input[type="email"] { height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: #f8fafc; padding: 0 12px; outline: none; }
.newsletter-form input[type="email"]::placeholder { color: #94a3b8; }
.newsletter-form button { height: 40px; border-radius: 10px; border: 1px solid #facc15; background: #facc15; color: #111827; font-weight: 700; padding: 0 12px; }
.newsletter-form button:hover { background: #eab308; border-color: #eab308; }
.footer-bottom { padding: 12px 0 28px; color: #9ca3af; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-bottom .legal { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom .legal a { color: inherit; text-decoration: none; }
.footer-bottom .legal a:hover { text-decoration: underline; }

/* Footer contact */
.footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 8px; color: #e5e7eb; text-decoration: none; line-height: 1.6; }
.footer-contact a:hover { color: #facc15; text-decoration: none; }
.footer-contact svg { width: 18px; height: 18px; display: inline-block; fill: currentColor; opacity: .95; vertical-align: middle; }
.contact-line { display: flex; align-items: flex-start; gap: 8px; }
.contact-line svg { width: 18px; height: 18px; fill: currentColor; opacity: .95; flex-shrink: 0; margin-top: 2px; }

/* Utilities */
.page-hero { padding: 28px 0 12px; border-bottom: 1px solid #e5e7eb; }
.page-hero h1 { margin: 0 0 6px; }
.kicker { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(14,165,233,0.12); color: #0369a1; font-weight: 700; font-size: 12px; letter-spacing: .3px; text-transform: uppercase; }
.section { padding: 48px 0; }
.section--alt { padding: 48px 0; background: linear-gradient(180deg, #f7fbff, #f1f5f9); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.section h2.section-title { margin: 0 0 10px; font-size: 28px; text-align: center; }
.section p.section-subtitle { margin: 0 0 24px; color: var(--muted); text-align: center; }
.page-hero .container { text-align: center; }
.hero--full { padding: 80px 0; background: radial-gradient(120% 120% at 10% 0%, rgba(14,165,233,0.15), transparent 45%), radial-gradient(120% 120% at 90% 0%, rgba(2,132,199,0.12), transparent 45%); }
.hero--full .hero-inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
.hero--full .hero-actions { justify-content: center; }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; box-shadow: 0 8px 22px rgba(2,6,23,0.06); }
.feature .icon { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(14,165,233,0.12); color: #0369a1; font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; text-align: center; box-shadow: 0 8px 22px rgba(2,6,23,0.06); }
.stat .num { font-size: 28px; font-weight: 800; color: var(--accent); }
.stat .label { color: var(--muted); }
.trust { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 6px; }
.trust img { height: 36px; background: #ffffff; padding: 8px 12px; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 6px 18px rgba(2,6,23,0.06); filter: grayscale(1) brightness(0.92); opacity: 0.98; }
.trust .more-brands { align-self: center; font-weight: 700; }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-step { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; box-shadow: 0 8px 22px rgba(2,6,23,0.06); }
.process-step h3 { margin: 0 0 6px; }
.process-step .step { font-weight: 800; color: #0369a1; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.list { display: grid; gap: 10px; }
.list li { position: relative; display: flex; align-items: center; gap: 8px; background: linear-gradient(180deg, #ffffff, #f9fafb); border: 1px solid #e5e7eb; padding: 10px 12px 10px 36px; border-radius: 14px; box-shadow: 0 3px 10px rgba(2,6,23,0.04); transition: transform .2s ease, box-shadow .2s ease; }
.list li::before { content: ""; position: absolute; left: 10px; width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #ffffff, #fde68a 60%, #facc15); box-shadow: inset 0 0 0 2px rgba(0,0,0,0.05), 0 4px 10px rgba(250,204,21,0.35); }
.list li:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(2,6,23,0.08); }

/* Forms */
form { display: grid; gap: 10px; }
label { font-weight: 600; font-size: 14px; }
input, textarea, select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: var(--text); }
input::placeholder, textarea::placeholder { color: #94a3b8; }
button { cursor: pointer; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; padding-top: 36px; }
  .footer-cta-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-slider .client-logos { grid-template-columns: repeat(3, 1fr); }
  .gallery-slider .slider-viewport { max-height: 280px; }
  .trust img { height: 30px; }
}
@media (max-width: 720px) {
  .logo img { height: 56px; }
  .nav-toggle { display: inline-block; }
  .nav-list { display: none; position: absolute; right: 12px; top: calc(100% + 8px); background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 10px; flex-direction: column; min-width: 240px; box-shadow: 0 24px 40px rgba(0,0,0,0.12); transform-origin: top right; transform: translateY(-8px) scale(0.98); opacity: 0; transition: transform .18s ease, opacity .18s ease; z-index: 80; }
  .nav-list.open { display: flex; transform: translateY(0) scale(1); opacity: 1; }
  body.nav-open::before { content: ""; position: fixed; inset: 0; background: rgba(2,6,23,0.35); backdrop-filter: blur(2px); z-index: 75; }
  body.nav-open { overflow: hidden; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .clients-grid img { width: 140px; height: 90px; }
  .logo-slider .client-logos { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .logo-slider .client-logos img { width: 140px; height: 90px; }
  .gallery-slider .slider-viewport { max-height: 200px; }
  .trust img { height: 28px; }
}

/* Utility */
.text-center { text-align: center; }

/* Sticky mobile action bar */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-top: 1px solid rgba(2,132,199,0.2); display: none; }
.action-bar .action-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 12px; max-width: 1140px; margin: 0 auto; }
.action-bar a { text-align: center; }
@media (max-width: 900px) {
  .action-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* Alignment and layout for custom business homepage blocks */
.hero--business {
  padding: 72px 0 32px;
  background: radial-gradient(120% 100% at 0% 0%, rgba(14,165,233,0.10), transparent 40%), radial-gradient(120% 100% at 100% 0%, rgba(2,132,199,0.08), transparent 40%);
  text-align: left;
}
.hero--business .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero--business .hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.hero--business .kicker {
  margin-bottom: 8px;
}
.hero--business h1 {
  font-size: 46px;
  margin: 0 0 10px 0;
  color: var(--accent);
  line-height: 1.09;
}
.hero--business .hero-sub {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 16px;
}
.hero--business .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* About block */
.about-business {
  padding: 46px 0 20px 0;
  background: var(--surface);
}
.about-business .split {
  max-width: 1100px;
  margin: 0 auto;
  gap: 54px;
  align-items: center;
}
.about-business h2 {
  color: var(--accent);
  font-size: 32px;
  margin: 0 0 10px 0;
}
.about-business .badges-list {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.about-business .badge {
  background: #dbeafe;
  color: #0369a1;
  border: 1px solid #38bdf8;
  font-size: 13px;
  box-shadow: none;
}

/* Services style */
.services-strip {
  background: linear-gradient(180deg, #f7fbff 60%, #e0f2fe 100%);
  padding: 44px 0 32px;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 12px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  transition: box-shadow .18s, transform .18s;
}
.service-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(14,165,233,0.18);
  transform: translateY(-6px) scale(1.03);
}

/* Brands showcase */
.brands-showcase {
  background: linear-gradient(90deg, #f1f5f9 70%, #fafafa 100%);
  padding: 38px 0 24px 0;
}
.brands-showcase .section-title {
  text-align: center;
  margin-bottom: 26px;
  font-size: 26px;
}
.brands-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.brands-grid img {
  height: 46px;
  background: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(2,6,23,0.04);
}
.brands-strip-desc {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
}

/* Social Proof/Testimonials */
.social-proof {
  background: #f9fafb;
  padding: 44px 0 32px;
}
.social-proof h2 {
  text-align: center;
  margin-bottom: 18px;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.testimonial {
  background: #fff;
  padding: 20px 22px;
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.10);
  max-width: 350px;
  font-size: 16px;
}
blockquote {
  margin: 0 0 10px 0;
  color: #374151;
  font-style: italic;
}
cite {
  font-size: 14px;
  color: #0369a1;
  display: block;
  text-align: right;
}
.trust-stats {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  color: #0284c7;
}

/* Contact block */
.contact-block { padding: 46px 0 18px; background: var(--surface); }
.contact-inner { max-width: 990px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 34px; margin-top: 0; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 22px; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 12px 0; color: #374151; font-size: 15px; }
.contact-list a { color: #0ea5e9; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.emergency-card { margin-top: 22px; background: #facc15; color: #0a1428; padding: 15px 20px; border-radius: 10px; text-align: center; font-size: 18px; font-weight: 700; box-shadow: 0 3px 20px rgba(250,204,21,0.13); border: 1px solid #fcd34d; }
@media (max-width: 600px) {
  .contact-inner { padding: 0 7px; }
  .contact-grid>div { padding: 16px 4px; }
  .emergency-card { font-size: 16px; padding: 12px 6px; }
}

/* FAQ section */
.faq-section {
  background: #f3faff;
  padding: 48px 0 26px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 25px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list dt {
  font-weight: 700;
  margin-top: 18px;
  color: #0284c7;
  font-size: 17px;
}
.faq-list dd {
  margin: 0 0 12px 0;
  color: #475569;
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 36px;
  max-width: 900px;
  margin: 34px auto 0 auto;
}
@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.faq-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(2,6,23,0.07);
  border: 1px solid #bae6fd;
  padding: 20px 20px 16px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  position: relative;
  min-height: 100px;
}
.faq-card:hover {
  box-shadow: 0 12px 38px rgba(14, 165, 233, 0.13), 0 2px 6px rgba(0,0,0,0.03);
  transform: translateY(-3px) scale(1.015);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-icon {
  font-size: 1.45rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.faq-a {
  font-size: 15px;
  color: #475569;
  line-height: 1.67;
  margin-left: 2px;
}

/* Mobile responsiveness for business blocks */
@media (max-width: 1050px) {
  .hero--business .hero-inner, .about-business .split { grid-template-columns: 1fr; gap: 32px; }
  .brands-showcase .brands-grid { gap: 18px; }
  .service-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 780px) {
  .hero--business h1 { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .brands-showcase .brands-grid { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero--business .hero-inner, .about-business .split { padding: 0 8px; }
  .hero--business .hero-content { gap: 8px; }
  .service-grid { grid-template-columns: 1fr; }
  .brands-grid img { height: 36px; padding: 4px 10px; }
  .testimonials-grid { gap: 14px; }
  .faq-list { padding: 0 6px; }
}

.feature-img {
  display: block;
  margin: 0 auto 12px auto;
  height: 46px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(2,6,23,0.08);
}
@media (max-width: 600px) {
  .feature-img {
    height: 34px;
    max-width: 60px;
    margin-bottom: 8px;
  }
}

.feature-symbol {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  margin: 2px 0 6px 0;
  filter: grayscale(0.18);
}
@media (max-width: 600px) {
  .feature-symbol {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}

/* Alignment fix for brands page brand feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1050px;
  margin: 32px auto 0 auto;
}
.feature-grid .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border-radius: 16px;
  padding: 26px 14px 18px 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(2,6,23,0.06);
  min-height: 240px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.feature-grid .feature:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #bae6fd;
  box-shadow: 0 10px 36px rgba(14,165,233,0.12);
}
.brand-logo {
  display: block;
  margin: 0 auto 12px auto;
  height: 48px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(2,6,23,0.10);
}
.feature-grid h3 {
  text-align: center;
  margin: 10px 0 7px 0;
}
.feature-grid p {
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
    padding: 0 4px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 97vw;
  }
  .brand-logo {
    height: 36px;
    max-width: 70px;
    margin-bottom: 7px;
  }
  .feature-grid .feature { padding: 16px 6px 12px 6px; }
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px 34px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .contact-main-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "quick address"
      "quick hours";
  }
  .contact-main-grid > div:nth-child(1) { grid-area: quick; }
  .contact-main-grid > div:nth-child(2) { grid-area: address; }
  .contact-main-grid > div:nth-child(3) { grid-area: hours; }
}
@media (max-width: 700px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .contact-main-grid > div { text-align: center; margin-bottom: 8px; }
  .contact-block { padding-top: 26px; }
}
.contact-main-title { font-size: 1.23rem; font-weight: 900; color: #0ea5e9; margin: 8px 0 17px 0; letter-spacing: 0; text-align: center; }
.contact-block h2.contact-main-title:first-child { margin-top: 0; }
.contact-block iframe { margin-bottom: 36px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
  margin: 18px 0 14px 0;
  z-index: 3;
}
.cta-actions .pill, .cta-actions .btn {
  padding: 11px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  min-width: 110px;
  border-radius: 999px;
  letter-spacing: .05px;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(48,54,200,0.13), 0 0px 2.5px #0000000d;
  transition: box-shadow 0.16s, background 0.14s, color 0.14s, border-color 0.14s;
  border-width:2px;
  border-style:solid;
}
.cta-actions .pill.call {
  background: linear-gradient(90deg, #38bdf8 60%, #0ea5e9 100%);
  color: #fff;
  border-color: #0ea5e9;
  box-shadow: 0 4px 22px #0ea5e9bb;
}
.cta-actions .pill.call:hover, .cta-actions .pill.call:focus {
  background: #0ea5e9;
  color: #fff;
  border-color: #0369a1;
  box-shadow: 0 10px 36px #0ea5e9eb;
}
.cta-actions .pill.whatsapp {
  background: linear-gradient(90deg,#25D366 65%,#1faa52 100%);
  color: #fff;
  border-color: #20b956;
  box-shadow: 0 4px 14px #27da6175;
}
.cta-actions .pill.whatsapp:hover, .cta-actions .pill.whatsapp:focus {
  background: #25D366;
  color: #fff;
  border-color: #128a06;
  box-shadow: 0 9px 32px #25d366cc;
}
.cta-actions .btn.email {
  background: linear-gradient(93deg, #facc15 75%, #fde047 100%);
  color: #2a1e00;
  font-weight: 900;
  border-color: #facc15;
  box-shadow: 0 4px 14px #eab30850;
}
.cta-actions .btn.email:hover, .cta-actions .btn.email:focus {
  background: #fde047;
  color: #654003;
  border-color: #f9d228;
  box-shadow: 0 10px 28px #fde047d0;
}
.cta-actions .btn svg, .cta-actions .pill svg {
  height: 1.4em;
  width: 1.4em;
  filter: drop-shadow(0 1px 4px #0001);
}
@media (max-width: 700px) {
  .cta-actions { gap: 12px; margin: 12px 0 10px 0; }
  .cta-actions .pill, .cta-actions .btn { min-width: 92vw; max-width:420px; font-size:.97rem; padding: 10px 0;}
}

form#contactForm > div, form#contactForm > button, form#contactForm > small { margin-bottom: 15px; }
@media (max-width: 500px) {
  form#contactForm > div, form#contactForm > button, form#contactForm > small { margin-bottom: 10px; }
}

.modern-message-card {
  background: rgba(255,255,255,0.82);
  border-radius: 24px;
  box-shadow: 0 8px 36px rgba(14,165,233,0.09), 0 1.5px 9px #035e979c;
  border: 1.5px solid #bae6fd;
  backdrop-filter: blur(11px) saturate(1.6);
  -webkit-backdrop-filter: blur(11px) saturate(1.6);
  padding: 38px 32px 30px 32px;
  margin-bottom: 30px;
  animation: scaleIn var(--animation-slow) var(--ease-bounce);
}
@media (max-width: 600px) {
  .modern-message-card { padding: 16px 6px 15px 6px; border-radius: 14px; }
}
.modern-message-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #0ea5e9;
  text-align: center;
  letter-spacing: -.7px;
  margin-top: 0; margin-bottom: 22px;
  position: relative;
}
.modern-message-title::after {
  content: '';
  display: block;
  margin: 10px auto 0 auto;
  width: 64px;
  height: 3.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0ea5e9 55%, #38bdf8 100%);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; gap: 10px; }
}
.modern-message-card label {
  font-weight: 700;
  font-size: 15.5px;
  color: #0284c7;
  margin-bottom: 5px;
  display: block;
}
.modern-message-card input,
.modern-message-card textarea,
.modern-message-card select {
  font-size: 15.5px;
  border-radius: 13px;
  border: 1.7px solid #dbeafe;
  background: rgba(255,255,255,0.73);
  box-shadow: 0 2px 12px rgba(14,165,233,0.045);
  margin-top: 3px;
  margin-bottom: 0px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modern-message-card input:focus,
.modern-message-card textarea:focus,
.modern-message-card select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px #bae6fd88;
}
.modern-message-btn {
  width: 100%;
  font-size: 1.24rem;
  padding: 17px 0;
  border-radius: 14px;
  background: linear-gradient(93deg, #0ea5e9 60%, #0369a1 100%);
  box-shadow: 0 7px 24px #38bdf88c, 0 0.5px 4px #0ea5e933;
  font-weight: 900;
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: .09em;
}
.modern-message-btn:hover,
.modern-message-btn:focus {
  background: linear-gradient(93deg, #0369a1 80%, #082f49 100%);
  color: #fff;
  box-shadow: 0 14px 36px #38bdf8a2, 0 1px 6px #0ea5e92c;
}
.modern-message-note {
  display: block;
  text-align: center;
  color: #94a3b8;
  margin-top: 7px;
  font-size: 14px;
  letter-spacing: .01em;
}


