/* ==========================================================================
   Evolution Repair - Clean Modern Light Theme & Responsive Stylesheet
   ========================================================================== */

:root {
  /* Clean Modern Light Palette */
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-card-elevated: #ffffff;
  
  --primary: #0066cc;
  --primary-hover: #0052a3;
  --primary-glow: rgba(0, 102, 204, 0.2);
  --primary-subtle: rgba(0, 102, 204, 0.08);
  
  --accent-blue: #0284c7;
  --accent-orange: #ff7900;
  --accent-gradient: linear-gradient(135deg, #0066cc 0%, #0284c7 100%);
  --orange-gradient: linear-gradient(135deg, #ff7900 0%, #ea580c 100%);
  
  --text-main: #0f172a;      /* Deep Slate for high-contrast titles */
  --text-muted: #64748b;     /* Subtitle and secondary text */
  --text-light: #334155;     /* Dark readable paragraph text */
  
  --border-subtle: #e2e8f0;  /* Crisp light border */
  --border-active: #0066cc;  /* Focused/Active border */
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 20px var(--primary-glow);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--bg-main);
}

h1, h2, h3, h4, h5, .brand-logo, .btn, .sub-heading {
  font-family: 'Outfit', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.section-padding {
  padding: 95px 0;
}

.text-center {
  text-align: center;
}

/* Typography & Headings */
.sub-heading {
  display: inline-block;
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-main);
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 121, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 121, 0, 0.5);
  filter: brightness(1.06);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #000;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.02rem;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: var(--orange-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 121, 0, 0.35);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 121, 0, 0.5);
  filter: brightness(1.06);
}

.btn-block {
  width: 100%;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.25);
}

.reviews-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.86rem;
  color: #475569;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-weight: 500;
}

.top-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.top-item strong {
  color: #0f172a;
  font-weight: 700;
}

.separator {
  color: #cbd5e1;
  font-size: 1rem;
}

.languages-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.5px;
}

.lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-flag-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  padding: 3px 5px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.lang-flag-btn .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  display: block;
  transition: transform 0.2s ease;
}

.lang-flag-btn:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.lang-flag-btn:hover .flag-icon {
  transform: scale(1.1);
}

.lang-flag-btn.active {
  border-color: var(--primary);
  background: #eff6ff;
  box-shadow: 0 0 0 1.5px rgba(0, 102, 204, 0.35);
}

/* Hide Google Translate top banner / iframe / toolbars */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0px !important;
}

.skiptranslate > iframe {
  display: none !important;
  visibility: hidden !important;
}

#google_translate_element {
  display: none !important;
}

.top-phone-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  border: 1px solid rgba(0, 102, 204, 0.25);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 102, 204, 0.22);
  transition: var(--transition);
}

.top-phone-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.38);
  background: linear-gradient(135deg, #0052a3 0%, #0284c7 100%);
}

.top-phone-highlight svg {
  color: #ffffff;
  flex-shrink: 0;
}

.phone-label {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.95;
}

.phone-number {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
}

.phone-notice {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.1;
  opacity: 0.9;
}

/* ================= MAIN HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 36px;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-txt-main {
  color: var(--text-main);
}

.logo-txt-sub {
  color: var(--primary);
}

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

.nav-item {
  font-size: 0.93rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

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

.dropdown-item {
  display: block;
  padding: 11px 22px;
  color: #334155;
  font-size: 0.93rem;
  font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 26px;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  transition: var(--transition);
  z-index: 1002;
}

.mobile-menu-btn:hover {
  background-color: #f1f5f9;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--primary);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--primary);
}

/* ================= HERO SLIDER ================= */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background-color: #0b1329;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 620px;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease;
  transform: scale(1.03);
  display: flex;
  align-items: center;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide-container {
  display: flex;
  align-items: center;
}

.slide-content {
  max-width: 780px;
}

.slide-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 102, 204, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: var(--radius-full);
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

.slide-description {
  font-size: 1.15rem;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 680px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.slide-lead-highlight {
  display: inline;
  color: #38bdf8;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: #38bdf8;
  width: 32px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* ================= TRUST BAR ================= */
.trust-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-number {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.trust-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Elegant Highlights for Trust Cards */
.trust-card-highlight {
  position: relative;
  border-width: 1.5px;
}

.trust-card-primary {
  background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 100%);
  border-color: rgba(0, 102, 204, 0.32);
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.08);
}

.trust-card-primary:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(0, 102, 204, 0.16);
  transform: translateY(-3px);
}

.trust-icon-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.trust-card-gold {
  background: linear-gradient(165deg, #ffffff 0%, #fffdf5 100%);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.08);
}

.trust-card-gold:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.18);
  transform: translateY(-3px);
}

.trust-icon-gold {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #d97706;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* ================= SERVICES SECTION ================= */
.services-section {
  background-color: #ffffff;
}

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

.service-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.service-box.featured-box {
  border-color: #f59e0b;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.service-box-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.service-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-box:hover .service-box-img img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 1px solid #bae6fd;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.gold-badge {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.service-box-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-box-body h3 {
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-box-body p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-bullets li {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 8px;
}

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

.service-link:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

/* ================= GRANDE LISBOA COVERAGE ================= */
.coverage-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

.coverage-text p {
  color: #475569;
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.coverage-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.area-pill {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.area-pill:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  color: var(--primary);
}

.coverage-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hl-icon {
  font-size: 1.4rem;
}

.hl-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
}

.hl-item p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 0;
}

.coverage-visual {
  display: flex;
  height: 100%;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.coverage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visual-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pulse-ring {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.visual-overlay-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.visual-overlay-badge small {
  font-size: 0.75rem;
  color: #64748b;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.about-images-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.exp-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
}

.exp-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-txt {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-sub-images img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.about-text-col .lead-text {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-text-col p {
  color: #475569;
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.mission-objectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.mo-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
}

.mo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.mo-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.mo-box p {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.5;
}

.mo-list {
  list-style: none;
}

.mo-list li {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 4px;
}

/* ================= CLIENTS & PARTNERS ================= */
.clients-section {
  padding: 60px 0 80px;
  background: #f1f5f9;
  border-top: 1px solid var(--border-subtle);
}

.clients-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.clients-subtitle {
  max-width: 680px;
  margin: 0 auto 40px;
  color: #64748b;
  font-size: 0.95rem;
}

.logos-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-carousel::before,
.logos-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f1f5f9, transparent);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f1f5f9, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: scrollLogos 54s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 12px 28px;
  height: 78px;
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.12);
  border-color: #93c5fd;
  background: #f8fafc;
}

.logo-item img {
  max-height: 52px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
  transition: var(--transition);
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

/* ================= REVIEWS SECTION ================= */
.reviews-section {
  background: #ffffff;
}

.trust-badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-star-row {
  color: #f59e0b;
  font-size: 1.2rem;
}

.trust-badge-header strong {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-main);
}

.review-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.review-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}

.contact-info-panel p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 28px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

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

.cd-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.contact-detail-item a, .contact-detail-item p {
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 0;
}

.contact-detail-item a:hover {
  color: var(--primary);
}

.contact-detail-item small {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

.direct-buttons-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.direct-buttons-row .btn-whatsapp {
  padding: 14px 36px;
  font-size: 1.02rem;
  font-weight: 700;
  width: 100%;
  max-width: 380px;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.direct-buttons-row .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-card p {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e293b;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.form-alert {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-alert.success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

/* ================= FOOTER ================= */
.main-footer {
  background: #0b1329;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 70px 0 25px;
  color: #94a3b8;
}

.footer-quotes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.5;
}

.footer-widgets-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  position: static;
  transform: none;
  margin-right: 0;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 320px;
  margin-bottom: 0;
  object-fit: contain;
  opacity: 0.95;
  transition: var(--transition);
  display: block;
}

.footer-logo:hover img {
  opacity: 1;
  transform: scale(1.02);
  filter: drop-shadow(0 2px 14px rgba(255, 120, 0, 0.4));
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-lang {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.fw-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.contact-p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.contact-p a {
  color: #ffffff;
}

.contact-p a:hover {
  color: #38bdf8;
}

.contact-p small,
.contact-p .call-charge-notice,
.main-footer .call-charge-notice,
.fw-col .call-charge-notice {
  text-align: left;
  display: block;
  font-size: 0.74rem;
  color: #94a3b8;
  margin-top: 3px;
  line-height: 1.4;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #94a3b8;
}

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

.footer-bottom-links a:hover {
  color: #38bdf8;
}

/* ================= SUBPAGE STYLES ================= */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #0b1329;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-content {
  max-width: 800px;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.breadcrumb-trail a {
  color: #38bdf8;
}

.breadcrumb-trail strong {
  color: #ffffff;
}

.page-hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-top: 6px;
}

.page-hero-subtitle {
  font-size: 1.12rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-top: 10px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-subtitle::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--orange-gradient, #ff7800);
  border-radius: 2px;
  flex-shrink: 0;
}

.page-main {
  background-color: #f8fafc;
}

.page-content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}

.content-box-elevated {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.content-box-elevated p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-box-elevated p:last-child {
  margin-bottom: 0;
}

/* Rich Service Article Layout */
.service-article-rich {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 30px;
}

.article-featured-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.article-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.article-header-block {
  margin-top: 4px;
}

.article-subheading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.heading-accent-bar {
  width: 48px;
  height: 4px;
  background: var(--orange-gradient);
  border-radius: var(--radius-full);
}

.article-body-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.article-body-text p:last-child {
  margin-bottom: 0;
}

.service-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.highlight-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.highlight-map-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  flex: 1;
}

.map-card-footer {
  padding: 16px 18px;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.coverage-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff7800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.coverage-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.highlight-list-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-list-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.highlight-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.highlight-checklist li svg {
  flex-shrink: 0;
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
}

.highlight-checklist .check-icon {
  color: #ff7900;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.article-cta-card {
  background: #ffffff;
  border: 1px solid #3b82f6;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.article-cta-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.article-cta-card p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 24px;
}

.article-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cta-btn-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.call-charge-notice {
  display: block;
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 95px;
  align-self: flex-start;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
}

.sidebar-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu-list a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.sidebar-menu-list a:hover, .sidebar-menu-list a.active {
  background: #eff6ff;
  color: var(--primary);
  border-color: #bae6fd;
  transform: translateX(4px);
}

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

.info-widget-item:last-child {
  margin-bottom: 0;
}

.iw-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.iw-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.45;
}

.iw-text a {
  color: var(--primary);
  font-weight: 700;
}

.iw-text .call-charge-notice {
  text-align: left;
  margin-top: 2px;
  font-size: 0.74rem;
  color: #64748b;
}

/* ================= FLOATING BUTTONS ================= */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.float-whatsapp {
  background: #25D366;
  color: #000000;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.float-phone {
  background: #ff7900;
  color: #ffffff;
}

.float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 121, 0, 0.6);
}

.float-top {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-top:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ================= RESPONSIVE DESIGN SYSTEM ================= */

/* 0. Extra Large: compact nav at 1400px */
@media (max-width: 1400px) {
  .nav-links {
    gap: 18px;
  }
  .nav-item {
    font-size: 0.9rem;
  }
}

/* 1. Large Laptops / Medium Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-item {
    font-size: 0.86rem;
  }
  .slide-title {
    font-size: 2.75rem;
  }
  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-widgets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .footer-quotes-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 2. Tablets Landscape & Small Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .page-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-sidebar {
    position: static;
    top: auto;
    width: 100%;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .visual-card {
    min-height: 340px;
    height: 340px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3. Tablets Portrait & Large Mobile (<= 992px) */
@media (max-width: 992px) {
  .nav-wrapper {
    height: 82px;
    justify-content: center;
    position: relative;
  }
  .nav-wrapper .brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
  }
  .nav-wrapper .brand-logo .logo-img {
    height: 42px;
    width: auto;
    max-width: 235px;
    display: block;
  }
  .footer-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .nav-cta-group {
    position: absolute;
    right: 16px;
  }
  .nav-cta-group .btn-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 40px;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-item {
    font-size: 1.05rem;
    padding: 13px 16px;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-item:hover, .nav-item:active, .nav-item.active {
    background: #eff6ff;
    color: var(--primary);
    border-color: #bfdbfe;
  }
  .dropdown-container {
    width: 100%;
  }
  .dropdown-container .dropdown-toggle svg {
    transition: transform 0.3s ease;
  }
  .dropdown-container.expanded .dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 6px;
    margin: 6px 0 10px;
    border: 1.5px solid #e2e8f0;
    display: none;
  }
  .dropdown-container.expanded .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dropdown-item {
    padding: 11px 16px;
    font-size: 0.94rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid #edf2f7;
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-item:hover, .dropdown-item:active {
    background: #eff6ff;
    color: var(--primary);
    padding-left: 20px;
  }
  .slider-wrapper {
    height: 560px;
  }
  .slide-title {
    font-size: 2.3rem;
  }
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 4. Mobile Devices & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  .nav-wrapper {
    height: 80px;
  }
  .brand-logo .logo-img {
    height: 36px;
    width: auto;
    max-width: 205px;
    display: block;
  }
  .nav-links {
    top: 80px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
  }
  .container {
    padding: 0 16px;
  }
  .section-padding {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
  }
  .section-subtitle {
    font-size: 0.96rem;
  }
  .top-bar {
    padding: 7px 0;
  }
  .top-bar-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px 14px;
    width: 100%;
  }
  .top-bar-centered > span.top-item:first-child {
    display: none;
  }
  .top-bar-centered .separator {
    display: none;
  }
  .top-phone-highlight {
    padding: 4px 14px;
    font-size: 0.82rem;
  }
  .phone-notice {
    display: none;
  }
  .slider-wrapper {
    height: 560px;
    min-height: 520px;
    display: block;
    position: relative;
    padding: 0;
  }
  .slide-item {
    padding: 30px 0;
    display: flex;
    align-items: center;
  }
  .slide-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .slide-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .slide-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .slider-arrow {
    display: none;
  }
  .slider-dots {
    bottom: 15px;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .coverage-pills {
    gap: 8px;
  }
  .coverage-pill {
    padding: 8px 14px;
    font-size: 0.88rem;
  }
  .visual-card {
    min-height: 260px;
    height: 260px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .mission-objectives-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px;
  }
  .direct-buttons-row {
    flex-direction: column;
    align-items: stretch;
  }
  .direct-buttons-row .btn, .cta-btn-wrap {
    width: 100%;
  }
  .direct-buttons-row .btn-whatsapp {
    max-width: 100%;
    width: 100%;
  }
  .logo-item {
    height: 56px;
    padding: 8px 16px;
  }
  .logo-item img {
    max-height: 36px;
    max-width: 120px;
  }
  .footer-widgets-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex;
    margin-bottom: 16px;
  }
  .footer-logo img {
    height: 54px;
    max-width: 300px;
  }
  .footer-quotes-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .page-hero {
    padding: 120px 0 50px;
    min-height: 220px;
  }
  .page-hero-title {
    font-size: 1.75rem;
  }
  .page-hero-subtitle {
    font-size: 0.94rem;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
  }
  .page-hero-subtitle::before {
    display: block;
    width: 32px;
    height: 3px;
    margin-bottom: 2px;
    flex-shrink: 0;
  }
  .content-box-elevated {
    padding: 24px 18px;
  }
  .service-article-rich {
    gap: 22px;
  }
  .article-hero-img {
    height: 220px;
  }
  .article-subheading {
    font-size: 1.25rem;
  }
  .service-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }
  .highlight-map-img {
    height: 240px;
    min-height: 220px;
    object-fit: cover;
  }
  .article-cta-card {
    padding: 24px 18px;
  }
  .article-cta-card h3 {
    font-size: 1.3rem;
  }
  .article-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .article-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 600px) {
  .top-bar-centered {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}

/* 5. Extra Small Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .nav-wrapper {
    height: 76px;
  }
  .nav-links {
    top: 76px;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
  }
  .brand-logo .logo-img {
    height: 32px;
    width: auto;
    max-width: 180px;
  }
  .top-bar-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    width: 100%;
  }
  .slider-wrapper {
    height: 540px;
  }
  .slide-title {
    font-size: 1.55rem;
  }
  .slide-tag {
    font-size: 0.74rem;
    padding: 3px 10px;
  }
  .btn-lg {
    padding: 13px 22px;
    font-size: 0.95rem;
  }
  .article-hero-img {
    height: 190px;
  }
  .highlight-map-img {
    height: 210px;
    min-height: 190px;
    object-fit: cover;
  }
  .footer-logo img {
    height: 48px;
    max-width: 270px;
  }
}

/* 6. Tiny Mobile Screens (<= 360px) */
@media (max-width: 360px) {
  .brand-logo .logo-img {
    height: 28px;
    max-width: 155px;
  }
  .footer-logo img {
    height: 42px;
    max-width: 235px;
  }
  .nav-wrapper {
    height: 70px;
  }
  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
  }
  .top-phone-highlight {
    padding: 4px 10px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .phone-label {
    font-size: 0.78rem;
  }
  .phone-number {
    font-size: 0.86rem;
  }
}

/* ================= COOKIE BANNER & PREFERENCE BOX ================= */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  width: calc(100% - 32px);
  max-width: 940px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 22px 28px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  color: #f1f5f9;
}

.cookie-banner-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cookie-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.cookie-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cookie-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
}

.cookie-text a {
  color: #ff7800;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  font-weight: 600;
}

.cookie-text a:hover {
  color: #ff9433;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: #ff7800;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: #e66c00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 120, 0, 0.35);
}

.btn-cookie-necessary {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-necessary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-preference-box {
  margin-top: 2.25rem;
  padding: 1.75rem 2rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.cookie-preference-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #003366;
  font-size: 1.25rem;
  font-weight: 700;
}

.cookie-preference-box p {
  margin-bottom: 1.25rem;
  color: #475569;
  font-size: 0.95rem;
}

.cookie-pref-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-status-badge {
  font-size: 0.95rem;
  font-weight: 600;
  color: #003366;
  background: #e0f2fe;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #bae6fd;
}

.btn-cookie-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange-gradient, linear-gradient(135deg, #ff7800 0%, #e65c00 100%));
  color: #ffffff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-full, 50px);
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 120, 0, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cookie-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 120, 0, 0.55);
  filter: brightness(1.08);
}

@media (max-width: 768px) {
  .cookie-banner-wrapper {
    bottom: 16px;
    width: calc(100% - 24px);
    padding: 18px 20px;
    border-radius: 16px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }
  .btn-cookie-accept, .btn-cookie-necessary {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* ================= PORTFOLIO SHOWCASE SECTION ================= */
.portfolio-showcase-section {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid #e2e8f0;
  scroll-margin-top: 110px;
}

.portfolio-header-block {
  margin-bottom: 1.5rem;
}

.portfolio-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.35rem;
}

.portfolio-subtitle-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 1.25rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.12);
  border-color: #cbd5e1;
}

.portfolio-logo-wrap {
  background: #f8fafc;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.portfolio-logo-img {
  max-height: 52px;
  max-width: 165px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-logo-img {
  transform: scale(1.05);
}

.portfolio-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0066cc;
  background: #e0f2fe;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.portfolio-client-name {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.portfolio-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 16px;
  flex: 1;
}

.portfolio-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #003366;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}

.portfolio-link-btn:hover {
  background: #ff7800;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 120, 0, 0.35);
}

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

/* ================= MODERN HOSTING PLANS & PRICING ================= */
.hosting-plans-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem auto;
}

.hosting-plans-intro h2 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.75rem;
}

.hosting-plans-intro p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.6;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
  align-items: stretch;
}

.pricing-plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 51, 102, 0.12);
  border-color: #cbd5e1;
}

.pricing-plan-card.featured-plan {
  border: 2px solid #ff7800;
  box-shadow: 0 8px 30px rgba(255, 120, 0, 0.15);
  transform: scale(1.02);
  overflow: visible;
}

.pricing-plan-card.featured-plan:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 20px 42px rgba(255, 120, 0, 0.22);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 5;
  background: linear-gradient(135deg, #ff7800 0%, #e65c00 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 3px 10px rgba(255, 120, 0, 0.45);
}

.plan-card-header {
  padding: 30px 24px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  text-align: center;
}

.pricing-plan-card.featured-plan .plan-card-header {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding-top: 48px;
}

.plan-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #003366;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-plan-card.featured-plan .plan-title {
  color: #ff7800;
}

.plan-tagline {
  font-size: 0.84rem;
  color: #64748b;
  min-height: 38px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003366;
}

.plan-amount {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.75rem;
  font-weight: 800;
  color: #003366;
  line-height: 1;
}

.pricing-plan-card.featured-plan .plan-currency,
.pricing-plan-card.featured-plan .plan-amount {
  color: #003366;
}

.plan-period {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.plan-features-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
}

.plan-features-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #003366;
  color: #ffffff !important;
}

.plan-select-btn:hover {
  background: #ff7800;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 120, 0, 0.35);
}

.pricing-plan-card.featured-plan .plan-select-btn {
  background: linear-gradient(135deg, #ff7800 0%, #e65c00 100%);
  box-shadow: 0 4px 14px rgba(255, 120, 0, 0.35);
}

.pricing-plan-card.featured-plan .plan-select-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(255, 120, 0, 0.5);
}

/* ================= FIREWALL PRO BANNER ================= */
.firewall-pro-banner {
  background: linear-gradient(135deg, #071329 0%, #0c1e3d 100%);
  border-radius: 18px;
  padding: 26px 32px;
  color: #ffffff;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(7, 19, 41, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.firewall-pro-content {
  flex: 1;
}

.firewall-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.firewall-pro-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.firewall-pro-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.firewall-pro-tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #e2e8f0;
  font-weight: 600;
  white-space: nowrap;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* ================= WHATSAPP ORDER FORM ================= */
.hosting-order-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.hosting-order-header {
  text-align: center;
  margin-bottom: 28px;
}

.hosting-order-header h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 6px;
}

.hosting-order-header p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-input-styled,
.form-select-styled,
.form-textarea-styled {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input-styled:focus,
.form-select-styled:focus,
.form-textarea-styled:focus {
  border-color: #0066cc;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.plan-radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-radio-label {
  position: relative;
  display: block;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.plan-radio-label:hover {
  border-color: #0066cc;
  background: #f0f9ff;
}

.plan-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plan-radio-label.checked {
  border-color: #0066cc;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.plan-radio-content {
  display: flex;
  flex-direction: column;
}

.plan-radio-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #003366;
  margin-bottom: 2px;
}

.plan-radio-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff7800;
}

.firewall-addon-checkbox-card {
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
}

.firewall-addon-checkbox-card:hover {
  border-color: #38bdf8;
  background: #f0fdf4;
}

.firewall-addon-checkbox-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #ff7800;
  cursor: pointer;
}

.firewall-addon-text strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.firewall-addon-text span {
  font-size: 0.84rem;
  color: #64748b;
}

.order-submit-wrap {
  text-align: center;
  margin-top: 14px;
}

.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 440px;
}

.btn-whatsapp-order svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-whatsapp-order:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-plan-card.featured-plan {
    transform: none;
    margin-top: 16px;
  }
  .pricing-plan-card.featured-plan:hover {
    transform: translateY(-6px);
  }
  .plan-radio-cards {
    grid-template-columns: 1fr;
  }
  .order-form-grid {
    grid-template-columns: 1fr;
  }
  .firewall-pro-banner {
    flex-direction: column;
    text-align: center;
  }
  .hosting-order-section {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Google Translate Bar Suppression (Seamless Native Look)
   ========================================================================== */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-gadget-simple,
.goog-te-menu-value,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  visibility: hidden !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

#google_translate_element {
  display: none !important;
}

.skiptranslate:not(.languages-selector):not(.top-item) {
  display: none !important;
}

/* ================= WHATSAPP CHAT MODAL ================= */

/* Overlay */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 24px 110px 24px;
  padding-bottom: max(110px, calc(110px + env(safe-area-inset-bottom)));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wa-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.wa-modal {
  width: 100%;
  max-width: 370px;
  max-height: calc(100dvh - 130px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(37, 211, 102, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.wa-modal-overlay.open .wa-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.wa-modal-header {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 18px 20px 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.wa-modal-header-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-modal-header-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.wa-modal-header-info {
  flex: 1;
}

.wa-modal-header-info strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-modal-header-info span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.wa-online-dot {
  width: 8px;
  height: 8px;
  background: #90EE90;
  border-radius: 50%;
  display: inline-block;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.wa-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s;
  flex-shrink: 0;
}

.wa-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Body */
.wa-modal-body {
  padding: 16px 16px 0 16px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Welcome bubble */
.wa-welcome-bubble {
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  position: relative;
}

.wa-welcome-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-right: 8px solid #d1fae5;
  border-bottom: 8px solid transparent;
}

.wa-welcome-bubble p {
  margin: 0;
  font-size: 0.82rem;
  color: #1a1a2e;
  line-height: 1.55;
  white-space: pre-line;
}

.wa-welcome-bubble .wa-bubble-time {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 6px;
  text-align: right;
}

/* Textarea */
.wa-message-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.wa-message-input {
  width: 100%;
  min-height: 70px;
  max-height: 120px;
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1a1a2e;
  background: #f9fafb;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
}

.wa-message-input:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
  background: #ffffff;
}

.wa-message-input::placeholder {
  color: #9ca3af;
}

/* Footer */
.wa-modal-footer {
  padding: 12px 16px 16px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  border-top: 1px solid #f3f4f6;
}

.wa-btn-send {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  font-family: inherit;
}

.wa-btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wa-btn-send:active {
  transform: translateY(0);
}

.wa-btn-send svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.wa-btn-cancel {
  background: #f3f4f6;
  color: #6b7280;
  border: none;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.wa-btn-cancel:hover {
  background: #e5e7eb;
  color: #374151;
}

/* Responsive — mobile / iPhone */
@media (max-width: 480px) {
  .wa-modal-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .wa-modal {
    max-width: 100%;
    max-height: 82dvh;
    border-radius: 20px 20px 0 0;
  }

  .wa-modal-header {
    padding: 14px 16px 12px 16px;
  }

  .wa-modal-header-icon {
    width: 38px;
    height: 38px;
  }

  .wa-modal-header-icon svg {
    width: 22px;
    height: 22px;
  }

  .wa-modal-header-info strong {
    font-size: 0.88rem;
  }

  .wa-modal-body {
    padding: 14px 14px 0 14px;
  }

  .wa-welcome-bubble p {
    font-size: 0.8rem;
  }

  .wa-message-input {
    min-height: 60px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .wa-modal-footer {
    padding: 10px 14px 14px 14px;
  }

  .wa-btn-send {
    font-size: 0.85rem;
    padding: 11px 14px;
  }
}

/* ================= AUDIENCE SPLIT (PARTICULARES VS EMPRESAS) ================= */
.audience-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.audience-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-card.card-particulares {
  border-top: 4px solid var(--primary);
}

.audience-card.card-empresas {
  border-top: 4px solid var(--accent-orange);
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.audience-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-particulares .audience-icon-wrap {
  background: #eff6ff;
  color: var(--primary);
}

.card-empresas .audience-icon-wrap {
  background: #fff7ed;
  color: var(--accent-orange);
}

.audience-title-group h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.audience-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.audience-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 22px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.audience-list li {
  font-size: 0.9rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.audience-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-empresas .audience-list li svg {
  color: var(--accent-orange);
}

.audience-cta {
  margin-top: auto;
}

.card-particulares .btn-audience {
  background: var(--accent-gradient);
  color: #ffffff;
  width: 100%;
}

.card-empresas .btn-audience {
  background: var(--orange-gradient);
  color: #ffffff;
  width: 100%;
}

/* ================= PORQUÊ A EVOLUTION REPAIR ================= */
.why-section {
  background: #ffffff;
}

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

.why-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition);
}

.why-card:hover {
  background: #ffffff;
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ================= SHORT ABOUT COMPACT ================= */
.about-compact-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.about-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-compact-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.about-compact-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-compact-text .sub-heading {
  margin-bottom: 10px;
}

.about-compact-text h2 {
  margin-bottom: 16px;
}

.about-compact-text p {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Responsive tweaks for new sections */
@media (max-width: 992px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-compact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    padding: 24px 20px;
  }
}

/* ================= CONTACT PAGE OPTIMIZATIONS ================= */
.contact-hero-slogan {
  margin-top: 4px;
}

.contact-slogan-sub {
  font-size: 1rem;
  font-weight: 500;
  color: #93c5fd;
  margin-top: 6px;
  padding-left: 34px;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .contact-slogan-sub {
    padding-left: 0;
    font-size: 0.92rem;
  }
}

.contact-quick-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  align-items: stretch;
}

.channel-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: var(--shadow-md);
}

.channel-card:hover::before {
  opacity: 1;
}

.channel-card.channel-whatsapp:hover::before {
  background: #25D366;
}

.channel-card.channel-email:hover::before {
  background: var(--orange-gradient);
}

.channel-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.channel-whatsapp .channel-card-icon {
  background: #e8fbf0;
  color: #16a34a;
}

.channel-email .channel-card-icon {
  background: #fef3eb;
  color: #ea580c;
}

.channel-card:hover .channel-card-icon {
  transform: scale(1.06);
}

.channel-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.channel-card-highlight {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  word-break: break-word;
}

.channel-whatsapp .channel-card-highlight {
  color: #15803d;
}

.channel-email .channel-card-highlight {
  color: #c2410c;
  font-size: 0.92rem;
}

.channel-card-desc {
  font-size: 0.92rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.5;
}

.channel-card-note {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}

.channel-card-btn {
  margin-top: auto;
  width: 100%;
  padding: 10px 18px;
  font-size: 0.9rem;
  text-align: center;
  border-radius: var(--radius-full);
}

.channel-card-btn.btn-outline-email {
  background: transparent;
  color: #ea580c;
  border: 1.5px solid #ea580c;
}

.channel-card-btn.btn-outline-email:hover {
  background: var(--orange-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 121, 0, 0.35);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: 32px;
  align-items: flex-start;
}

.contact-side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.contact-info-text p, .contact-info-text div {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}

.coverage-map-wrap {
  margin-top: 8px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
  box-shadow: var(--shadow-sm);
}

.coverage-map-wrap iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: none;
}

.coverage-map-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
}

.coverage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  flex-shrink: 0;
}

.contact-email-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.contact-email-entry {
  font-size: 0.9rem;
  color: #334155;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.contact-email-entry span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}

.contact-email-entry a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  word-break: break-all;
}

.contact-email-entry a:hover {
  text-decoration: underline;
}

.form-privacy-note {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 0 !important;
  text-align: center;
  line-height: 1.45;
}

.form-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .contact-quick-channels {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


