/* ================================================================
   EURO FORCE RO - THEME INSPIRED BY AQUAASHIELDRO.IN
   Colors: Midnight Navy, Aqua Cyan, Cloud White, Ocean Slate
================================================================ */

:root {
  --as-blue: #08bce8;
  --as-blue-dark: #087fa8;
  --as-navy: #071522;
  --as-navy-2: #0b2538;
  --as-dark-bg: #020a12;
  --as-text: #17263b;
  --as-muted: #68788c;
  --as-light: #f5fafc;
  --as-border: #e3edf2;
  --as-white: #ffffff;
  --as-shadow: 0 20px 60px rgba(7, 37, 56, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--as-text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.as-container, .container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ================================================================
   TOPBAR
================================================================ */
.site-topbar {
  background: var(--as-dark-bg);
  color: #92b0c5;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-topbar-inner {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-topbar-phones {
  display: flex;
  gap: 14px;
}

.site-topbar-phones a {
  color: #1acbff;
  font-weight: 700;
  transition: .2s;
}

.site-topbar-phones a:hover {
  color: #ffffff;
}

/* ================================================================
   HEADER & NAVIGATION
================================================================ */
.site-header {
  height: 80px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--as-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 25px rgba(7, 21, 34, .05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Brand Name Graphic (recreating original logo graphics directly in name) */
.brand-graphic {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  line-height: 1;
  user-select: none;
  text-decoration: none;
}

.brand-main {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding-left: 18px;
}

/* Red crescent/disc emblem hugging the E in EURO FORCE */
.brand-crescent-mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-54%);
  width: 33px;
  height: 33px;
  background: radial-gradient(circle at 38% 42%, #d72626 0%, #b31b1b 75%, #8f1212 100%);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(179, 27, 27, 0.35);
}

.brand-crescent-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.brand-name {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Arial Black', sans-serif;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0.8px;
  color: #174f94;
  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff,
    -1px  0   0 #ffffff,
     1px  0   0 #ffffff,
     0   -1px 0 #ffffff,
     0    1px 0 #ffffff,
     0    2px 4px rgba(0, 0, 0, 0.08);
}

.brand-line {
  height: 2px;
  background: linear-gradient(90deg, #c42728 0%, #d82b2b 100%);
  margin: 3px 0 2.5px 0;
  border-radius: 2px;
  width: 100%;
}

.brand-tagline {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  font-size: 7.2px;
  font-weight: 850;
  color: #174f94;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Dark variant for footer */
.brand-graphic--dark .brand-name {
  color: #ffffff;
  text-shadow:
    -2px -2px 0 #061524,
     2px -2px 0 #061524,
    -2px  2px 0 #061524,
     2px  2px 0 #061524,
     0 0 10px rgba(8, 188, 232, 0.3);
}

.brand-graphic--dark .brand-line {
  background: linear-gradient(90deg, #d82b2b 0%, #1acbff 100%);
}

.brand-graphic--dark .brand-tagline {
  color: #a8d5e5;
  letter-spacing: 1.6px;
}

@media (max-width: 540px) {
  .brand-crescent-mark {
    width: 25px;
    height: 25px;
  }
  .brand-main {
    padding-left: 14px;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-ro {
    font-size: 14px;
  }
  .brand-tagline {
    font-size: 6.8px;
    letter-spacing: 0.8px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--as-text);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--as-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--as-blue);
  border-radius: 999px;
  color: var(--as-blue-dark);
  font-size: 13px;
  font-weight: 800;
  transition: .3s;
}

.btn-phone:hover {
  background: var(--as-blue);
  color: #fff;
  box-shadow: 0 8px 25px rgba(8, 188, 232, .35);
}

.btn-consult {
  padding: 10px 20px;
  background: linear-gradient(135deg, #14c8f2, #0798ca);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 188, 232, .25);
  transition: .3s;
}

.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 188, 232, .38);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--as-navy);
  cursor: pointer;
  padding: 6px;
}

/* ================================================================
   HERO SECTION (AQUAASHIELDRO STYLE)
================================================================ */
.as-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(9, 193, 235, .24), transparent 40%),
    linear-gradient(135deg, #020a12 0%, #0a263a 100%);
  color: #ffffff;
}

.as-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #06111d;
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.as-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 10, 18, .92) 0%, rgba(2, 10, 18, .75) 45%, rgba(2, 10, 18, .35) 75%, rgba(2, 10, 18, .2) 100%);
  pointer-events: none;
}

/* Video Theme Selector Pill (Unique Video Selection) */
.as-video-switcher {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 14, 25, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(26, 203, 255, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.as-switcher-label {
  font-size: 11px;
  font-weight: 800;
  color: #1acbff;
  padding: 0 4px 0 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.as-switcher-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.as-switcher-btn:hover {
  color: #fff;
  background: rgba(26, 203, 255, 0.2);
}

.as-switcher-btn.active {
  background: linear-gradient(135deg, #14c8f2, #0798ca);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(8, 188, 232, 0.4);
}

@media (max-width: 768px) {
  .as-video-switcher {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    gap: 4px;
  }
  .as-switcher-label {
    display: none;
  }
  .as-switcher-btn {
    font-size: 10px;
    padding: 4px 8px;
  }
}

.as-hero-content {
  position: relative;
  z-index: 5;
  width: min(1200px, 92%);
  margin: auto;
  padding: 110px 0;
}

.as-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #1acbff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.as-eyebrow::before {
  content: "";
  width: 35px;
  height: 2px;
  background: #1acbff;
}

.as-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2px;
}

.as-hero h1 span {
  display: inline-block;
  color: #11c8f5;
  animation: asGlow 3s ease-in-out infinite;
}

@keyframes asGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(17, 200, 245, 0);
  }
  50% {
    text-shadow: 0 0 35px rgba(17, 200, 245, .55);
  }
}

.as-hero p {
  max-width: 700px;
  margin: 28px 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.75;
}

.as-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.as-btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: .3s ease;
  cursor: pointer;
  border: 0;
}

.as-btn-primary {
  background: linear-gradient(135deg, #14c8f2, #0798ca);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 188, 232, .28);
}

.as-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 188, 232, .45);
}

.as-btn-light {
  background: #ffffff;
  color: #132438;
}

.as-btn-light:hover {
  transform: translateY(-4px);
  background: #f0f9fc;
}

/* Floating water orbs and drops */
.as-hero-orb {
  position: absolute;
  z-index: 2;
  width: 360px;
  height: 360px;
  right: 7%;
  top: 22%;
  border-radius: 50%;
  border: 1px solid rgba(37, 205, 255, .25);
  box-shadow: 0 0 100px rgba(0, 188, 240, .12), inset 0 0 80px rgba(0, 188, 240, .08);
  animation: asFloat 7s ease-in-out infinite;
  pointer-events: none;
}

.as-hero-orb::before, .as-hero-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 205, 255, .20);
}

.as-hero-orb::before { inset: 45px; }
.as-hero-orb::after { inset: 95px; }

@keyframes asFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.as-water-drop {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24d4ff;
  box-shadow: 0 0 20px #24d4ff;
  animation: asDrop 6s linear infinite;
  pointer-events: none;
}

.as-water-drop:nth-child(1) { left: 55%; animation-delay: 0s; }
.as-water-drop:nth-child(2) { left: 66%; animation-delay: 1.5s; }
.as-water-drop:nth-child(3) { left: 76%; animation-delay: 3s; }
.as-water-drop:nth-child(4) { left: 86%; animation-delay: 4.5s; }

@keyframes asDrop {
  0% { top: -10%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: .8; }
  100% { top: 110%; opacity: 0; }
}

/* ================================================================
   SECTION HEADINGS & BASES
================================================================ */
.as-section {
  position: relative;
  padding: 95px 0;
}

.as-section-heading {
  position: relative;
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.as-section-heading small {
  display: block;
  margin-bottom: 12px;
  color: var(--as-blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.as-section-heading h2 {
  margin: 0;
  color: var(--as-text);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 950;
}

.as-section-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--as-muted);
  line-height: 1.8;
  font-size: 17px;
}

/* Scroll reveal animation */
.as-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.as-reveal.as-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.as-about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.as-about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.as-about-visual {
  position: relative;
  min-height: 460px;
}

.as-about-card {
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(145deg, #071b2b, #0a6f91);
  box-shadow: 0 30px 70px rgba(7, 40, 60, .18);
}

.as-about-card.main {
  inset: 20px 60px 20px 0;
  overflow: hidden;
}

.as-about-card.main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  mix-blend-mode: luminosity;
}

.as-about-card.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(26, 207, 255, .35), transparent 30%);
}

.as-about-circle {
  position: absolute;
  width: 170px;
  height: 170px;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #16c9f5, #087ca7);
  color: #ffffff;
  box-shadow: 0 25px 55px rgba(8, 160, 205, .30);
  animation: asFloat 5s ease-in-out infinite;
  text-align: center;
}

.as-about-circle strong {
  font-size: 26px;
  line-height: 1;
}

.as-about-circle small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.as-about-content small {
  color: var(--as-blue-dark);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.as-about-content h2 {
  margin: 12px 0 20px;
  color: var(--as-text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 950;
}

.as-about-content p {
  color: var(--as-muted);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 14px;
}

.as-about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.as-about-point {
  padding: 16px 18px;
  border: 1px solid var(--as-border);
  border-radius: 16px;
  background: #ffffff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(10, 40, 60, .04);
}

/* ================================================================
   CATEGORY SECTION
================================================================ */
.as-category-section {
  background: #ffffff;
}

.as-category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.as-category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  background: #ffffff;
  text-decoration: none;
  color: var(--as-text);
  box-shadow: 0 12px 35px rgba(20, 50, 80, .05);
  transition: .35s ease;
}

.as-category-card:hover {
  transform: translateY(-8px);
  border-color: var(--as-blue);
  box-shadow: 0 25px 55px rgba(8, 188, 232, .16);
}

.as-category-number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: #e7f4f8;
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.as-category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e8faff, #d5f4fb);
  font-size: 26px;
}

.as-category-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.as-category-card p {
  margin: 0;
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ================================================================
   PRODUCTS SECTION
================================================================ */
.as-product-section {
  padding: 95px 0;
  border-top: 1px solid #edf2f5;
  background: #f7fbfd;
}

.as-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.as-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(20, 50, 80, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.as-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(20, 50, 80, .14);
}

.as-product-image {
  position: relative;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #ffffff, #edf7fa);
}

.as-product-image::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(8, 188, 232, .12);
  animation: asPulse 3s ease-in-out infinite;
}

@keyframes asPulse {
  0%, 100% { transform: scale(.85); opacity: .4; }
  50% { transform: scale(1.15); opacity: 1; }
}

.as-product-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  transition: transform .5s ease;
}

.as-product-card:hover .as-product-image img {
  transform: scale(1.07);
}

.as-product-body {
  padding: 24px;
}

.as-product-label {
  color: var(--as-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.as-product-body h3 {
  margin: 8px 0;
  color: var(--as-text);
  font-size: 20px;
  font-weight: 900;
}

.as-product-body p {
  min-height: 45px;
  margin: 0 0 15px;
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.6;
}

.as-product-actions {
  display: flex;
  gap: 10px;
}

.as-cart-btn {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #10bfe9, #078eb9);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.as-cart-btn:hover {
  box-shadow: 0 8px 25px rgba(8, 188, 232, .35);
}

.as-view-btn {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--as-border);
  border-radius: 12px;
  background: #edf8fc;
  color: #078eb9;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.as-services {
  background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
}

.as-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.as-service-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 50, 80, .05);
  transition: .35s ease;
}

.as-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(20, 50, 80, .12);
}

.as-service-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e9faff, #c9f3fc);
  font-size: 28px;
}

.as-service-card h3 {
  margin: 0 0 12px;
  color: var(--as-text);
  font-size: 21px;
  font-weight: 900;
}

.as-service-card p {
  margin: 0;
  color: var(--as-muted);
  line-height: 1.7;
  font-size: 14px;
}

/* ================================================================
   DARK GALLERY SECTION
================================================================ */
.as-gallery {
  background: #071a29;
  color: #ffffff;
}

.as-gallery .as-section-heading h2 {
  color: #ffffff;
}

.as-gallery .as-section-heading p {
  color: rgba(255, 255, 255, .7);
}

.as-gallery .as-section-heading small {
  color: #1acbff;
}

.as-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.as-gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 20px;
  background: #102c3f;
}

.as-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .45));
  pointer-events: none;
}

.as-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.as-gallery-item:hover img {
  transform: scale(1.09);
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.as-testimonials {
  background: #ffffff;
}

.as-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.as-testimonial {
  position: relative;
  padding: 32px;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f5fafc);
  box-shadow: 0 12px 35px rgba(20, 50, 80, .05);
}

.as-quote {
  position: absolute;
  top: 16px;
  right: 22px;
  color: #dff6fc;
  font-size: 65px;
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.as-stars {
  position: relative;
  margin-bottom: 16px;
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 3px;
}

.as-testimonial p {
  position: relative;
  color: #53657a;
  line-height: 1.75;
  font-size: 15px;
  margin: 0 0 16px;
}

.as-testimonial strong {
  display: block;
  color: var(--as-text);
  font-size: 15px;
}

.as-testimonial small {
  color: var(--as-blue-dark);
  font-weight: 700;
}

/* ================================================================
   FAQ SECTION
================================================================ */
.as-faq-section {
  background: #f6fafc;
}

.as-faq {
  max-width: 880px;
  margin: auto;
}

.as-faq details {
  margin-bottom: 14px;
  padding: 20px 24px;
  border: 1px solid var(--as-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(20, 50, 80, .03);
  transition: .3s ease;
}

.as-faq details[open] {
  border-color: var(--as-blue);
  box-shadow: 0 12px 30px rgba(8, 188, 232, .1);
}

.as-faq summary {
  cursor: pointer;
  color: var(--as-text);
  font-weight: 900;
  font-size: 16px;
  outline: none;
}

.as-faq p {
  margin: 14px 0 0;
  color: var(--as-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* ================================================================
   CONTACT CTA SECTION (DARK FROSTED GLASS)
================================================================ */
.as-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(16, 201, 245, .20), transparent 30%),
    linear-gradient(135deg, #061522, #063b55);
  color: #ffffff;
  padding: 100px 0;
}

.as-contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  bottom: -250px;
  border-radius: 50%;
  border: 1px solid rgba(30, 207, 255, .20);
  animation: asFloat 8s ease-in-out infinite;
}

.as-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.as-contact h2 {
  margin: 10px 0 20px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 950;
}

.as-contact p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  font-size: 17px;
}

.as-contact-box {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 25px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(15px);
}

.as-contact-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.as-contact-item:last-child {
  border-bottom: 0;
}

.as-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
}

.as-contact-item span, .as-contact-item a {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.as-contact-item a:hover {
  color: #1acbff;
}

/* ================================================================
   FOOTER (MIDNIGHT PALETTE)
================================================================ */
.site-footer {
  background: #030c14;
  color: #8fa5b8;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin: 0 0 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-col p {
  color: #8fa5b8;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 10px;
}

.footer-col a {
  color: #1acbff;
  transition: .2s;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #647b8e;
}

/* ================================================================
   MOBILE STICKY BAR
================================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, .2);
}

.mobile-sticky-bar a {
  padding: 16px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-sticky-bar a.call-btn {
  background: var(--as-blue-dark);
}

.mobile-sticky-bar a.wa-btn {
  background: #19a960;
}

/* ================================================================
   RESPONSIVE MEDIA QUERIES
================================================================ */
@media (max-width: 1050px) {
  .as-about-grid { grid-template-columns: 1fr; }
  .as-about-visual { min-height: 360px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions .btn-consult { display: none; }
  .nav-toggle { display: block; }
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    border-bottom: 2px solid var(--as-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .site-topbar span { display: none; }
  .site-topbar-inner { justify-content: center; }
  .as-section { padding: 65px 0; }
  .as-hero-content { padding: 80px 0; }
  .as-hero h1 { font-size: 42px; letter-spacing: -1.5px; }
  .as-hero p { font-size: 16px; }
  .as-hero-orb { width: 220px; height: 220px; right: -80px; top: 20%; }
  .as-buttons { width: 100%; }
  .as-btn { width: 100%; }
  .as-about-points { grid-template-columns: 1fr; }
  .as-about-card.main { inset: 20px 20px 20px 0; }
  .as-about-circle { width: 120px; height: 120px; font-size: 14px; }
  .as-about-circle strong { font-size: 20px; }
  .as-contact-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; gap: 25px; padding-bottom: 50px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .mobile-sticky-bar { display: grid; }
}

/* ================================================================
   FLOATING ACTION BUTTONS (BOTH SIDES)
================================================================ */
.float-btn {
  position: fixed;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.float-btn-left {
  left: 26px;
}

.float-btn-right {
  right: 26px;
}

/* Call Button (Electric Cyan Gradient) */
.float-call {
  background: linear-gradient(135deg, #14c8f2, #078bb9);
  box-shadow: 0 8px 25px rgba(20, 200, 242, 0.45);
}

.float-call:hover {
  box-shadow: 0 12px 32px rgba(20, 200, 242, 0.65);
}

/* WhatsApp Button (Official WhatsApp Green Gradient) */
.float-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.float-wa:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.float-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

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

/* Radar Pulse Wave Animation */
.float-btn-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  animation: floatPulse 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.float-call .float-btn-pulse {
  border: 2px solid rgba(20, 200, 242, 0.7);
}

.float-wa .float-btn-pulse {
  border: 2px solid rgba(37, 211, 102, 0.7);
}

@keyframes floatPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tooltip Labels on Hover */
.float-btn-tooltip {
  position: absolute;
  white-space: nowrap;
  background: rgba(3, 14, 25, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 7px 15px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 3;
}

.float-btn-left .float-btn-tooltip {
  left: calc(100% + 12px);
  transform: translateX(-8px);
}

.float-btn-right .float-btn-tooltip {
  right: calc(100% + 12px);
  transform: translateX(8px);
}

.float-btn:hover .float-btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: Float nicely above the bottom bar on mobile */
@media (max-width: 768px) {
  .float-btn {
    bottom: 74px;
    width: 50px;
    height: 50px;
  }
  .float-btn-left {
    left: 16px;
  }
  .float-btn-right {
    right: 16px;
  }
  .float-btn-tooltip {
    display: none;
  }
}
