/* ============================================================
   ASL Technical Services — Modern Stylesheet
   Industrial × Premium design system
============================================================ */

:root {
  --color-bg:        #0b1220;
  --color-bg-soft:   #0f1a2e;
  --color-surface:   #ffffff;
  --color-surface-2: #f5f7fb;
  --color-border:    #e6eaf2;
  --color-text:      #0d1b2a;
  --color-text-soft: #4a5a6e;
  --color-muted:     #8794a6;

  --color-primary:    #ff6b1a;
  --color-primary-2:  #ff8a3d;
  --color-accent:     #00d1b2;
  --color-navy:       #0b1220;

  --shadow-sm: 0 4px 16px rgba(10,20,40,0.06);
  --shadow-md: 0 12px 32px rgba(10,20,40,0.10);
  --shadow-lg: 0 24px 60px rgba(10,20,40,0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-sans:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* ----------- Base ----------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { margin: 0 0 1em; color: var(--color-text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; position: relative; }
.section-sm{ padding: 60px 0; }
.text-center { text-align: center; }
.muted { color: var(--color-muted); }

/* ----------- Page Loader ----------- */
.page-loader {
  position: fixed; inset: 0; background: #0b1220;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--color-primary);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------- Cursor glow (desktop only) ----------- */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 1; top: 0; left: 0;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.10), transparent 60%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0;
}
@media (min-width: 992px) { .cursor-glow { opacity: 1; } }

/* ----------- Header ----------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar {
  background: #06101e; color: #cfd6e4; font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 42px; gap: 16px; flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact li { display: flex; align-items: center; gap: 8px; }
.topbar-contact i { color: var(--color-primary); }
.topbar-contact a:hover { color: var(--color-primary-2); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social span { color: #8794a6; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); font-size: 13px;
  transition: all .3s var(--ease);
}
.topbar-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled .navbar { background: rgba(255,255,255,0.98); box-shadow: var(--shadow-sm); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand img { height: 56px; width: auto; max-width: none; object-fit: contain; }

.nav-links {
  display: flex; gap: 8px; align-items: center;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  padding: 10px 16px; border-radius: 999px;
  font-weight: 500; color: var(--color-text);
  font-size: 15px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: 6px;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--color-primary); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after { width: 18px; }
.nav-links a.active { color: var(--color-primary); }
.nav-links a.active::after { width: 18px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-cta i { transition: transform .3s var(--ease); }
.btn-cta:hover i { transform: translateX(4px); }

.nav-toggle {
  display: none; background: var(--color-text); border: 0;
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .topbar { display: none; }
  .btn-cta { display: none; }
}
@media (max-width: 640px) {
  .topbar-contact li:nth-child(1) { display: none; }
  .brand img { height: 44px; }
}

/* ----------- Mobile drawer ----------- */
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(340px, 86vw);
  background: #fff; z-index: 200; padding: 24px;
  transform: translateX(105%); transition: transform .45s var(--ease);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,20,40,.5);
  z-index: 199; opacity: 0; visibility: hidden; transition: opacity .3s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.drawer-head img { height: 48px; }
.drawer-close {
  background: var(--color-surface-2); border: 0; width: 40px; height: 40px;
  border-radius: 10px; cursor: pointer; font-size: 18px;
}
.drawer-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.drawer-links a {
  display: block; padding: 14px 16px; border-radius: 12px;
  font-weight: 600; color: var(--color-text); transition: all .3s var(--ease);
}
.drawer-links a:hover { background: var(--color-surface-2); color: var(--color-primary); padding-left: 22px; }
.drawer-contact { border-top: 1px solid var(--color-border); padding-top: 22px; }
.drawer-contact h5 { margin-bottom: 12px; }
.drawer-contact p { margin: 6px 0; font-size: 14px; }
.drawer-contact i { color: var(--color-primary); margin-right: 8px; }
.drawer-social { display: flex; gap: 10px; margin-top: 16px; }
.drawer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.drawer-social a:hover { background: var(--color-primary); color: #fff; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: 0;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; box-shadow: 0 10px 24px rgba(255,107,26,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,107,26,0.45); }
.btn-light { background: #fff; color: var(--color-text); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: #fff; color: var(--color-text); border-color: #fff; }
.btn-dark { background: var(--color-navy); color: #fff; }
.btn-dark:hover { background: #1a2a45; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 880px);
  display: flex; align-items: center;
  background: radial-gradient(ellipse at top right, #1c2c4f 0%, #0b1220 55%, #060c18 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,12,24,0.55) 0%, rgba(6,12,24,0.75) 100%),
    radial-gradient(600px 400px at 80% 30%, rgba(255,107,26,0.20), transparent 60%),
    radial-gradient(500px 300px at 10% 80%, rgba(0,209,178,0.12), transparent 60%);
  pointer-events: none;
}
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
}
.hero-bg-video.is-ready { opacity: 1; }
.hero-grid-bg { z-index: 1; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 2;
  display: block;
}
.hero-veo-mask {
  position: absolute;
  right: 0; bottom: 0;
  width: clamp(120px, 18vw, 220px);
  height: clamp(40px, 6vw, 70px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(6,12,24,0) 0%, rgba(6,12,24,0.85) 45%, rgba(6,12,24,1) 100%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px;
  margin-bottom: 24px; color: #ffcfa8;
}
.hero-eyebrow i { color: var(--color-primary); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2) 60%, #ffd17a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 540px;
}
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.hero-stat .lbl { font-size: 13.5px; color: rgba(255,255,255,0.65); }

.hero-visual { position: relative; }
.hero-card-stack {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl); overflow: hidden;
  background: #0d1830; box-shadow: var(--shadow-lg);
}
.hero-card-stack img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 14s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-card-float {
  position: absolute; bottom: -20px; left: -20px;
  background: rgba(255,255,255,0.96); color: var(--color-text);
  padding: 18px 22px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: floaty 4.5s ease-in-out infinite;
}
.hero-card-float .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; display: grid; place-items: center; font-size: 22px;
}
.hero-card-float strong { font-family: var(--font-display); font-size: 1rem; }
.hero-card-float span { display:block; color: var(--color-muted); font-size: 13px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 991px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

/* ----------- Marquee ----------- */
.marquee {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; padding: 22px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 22px; }
.marquee-track i { font-size: 1.1rem; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------- Section heading ----------- */
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,107,26,0.10); color: var(--color-primary);
  margin-bottom: 16px;
}
.section-head h2 .grad {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { font-size: 1.05rem; }

.section-head.left { text-align: left; margin-left: 0; }

/* ----------- Service cards ----------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.service-card {
  background: #fff; border: 1px solid var(--color-border);
  padding: 36px 28px; border-radius: var(--radius-md);
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  opacity: 0; transition: opacity .4s var(--ease); z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card .icon-box {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(255,138,61,0.06));
  color: var(--color-primary); font-size: 26px;
  display: grid; place-items: center; margin-bottom: 22px;
  transition: all .4s var(--ease);
}
.service-card h3 { margin-bottom: 12px; transition: color .4s var(--ease); }
.service-card p { font-size: 15px; transition: color .4s var(--ease); }
.service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-primary); font-weight: 600; margin-top: 12px;
  transition: color .4s var(--ease);
}
.service-card .more i { transition: transform .3s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .icon-box { background: rgba(255,255,255,0.18); color: #fff; }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .more { color: #fff; }
.service-card:hover .more i { transform: translateX(6px); }

/* ----------- Feature split ----------- */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-img img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.feature-img .badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(11,18,32,0.85); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(10px);
}
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; background: var(--color-surface-2); border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
}
.feature-list li:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateX(6px); }
.feature-list .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: grid; place-items: center; font-size: 12px; flex-shrink: 0;
}

@media (max-width: 900px) {
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
}

/* ----------- Stats counter ----------- */
.stats-band {
  background: #0b1220; color: #fff; position: relative; overflow: hidden;
  padding: 80px 0;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 20% 30%, rgba(255,107,26,0.20), transparent 60%),
    radial-gradient(300px 200px at 80% 70%, rgba(0,209,178,0.10), transparent 60%);
}
.stats-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px;
  text-align: center;
}
.stat { padding: 12px; }
.stat .num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat .num .plus { color: var(--color-primary); }
.stat .lbl { color: rgba(255,255,255,0.72); font-size: 15px; }

/* ----------- Why Choose / Process ----------- */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.process-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 32px 28px;
  text-align: center; transition: all .4s var(--ease);
  position: relative;
}
.process-card .step {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; display: grid; place-items: center; font-weight: 700;
  font-family: var(--font-display); box-shadow: 0 8px 18px rgba(255,107,26,0.35);
}
.process-card .ico {
  width: 70px; height: 70px; margin: 12px auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--color-surface-2); color: var(--color-primary);
  font-size: 28px; transition: all .4s var(--ease);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card:hover .ico { background: var(--color-primary); color: #fff; }

/* ----------- Product grid (trading) ----------- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .4s var(--ease);
  border: 1px solid var(--color-border);
}
.product-card .img {
  aspect-ratio: 4 / 3; background: var(--color-surface-2);
  display: grid; place-items: center; overflow: hidden;
}
.product-card .img img {
  max-width: 80%; max-height: 80%; width: auto; height: auto;
  transition: transform .6s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card:hover .img img { transform: scale(1.08); }
.product-card .body { padding: 20px; }
.product-card h4 { margin: 0 0 6px; font-size: 1.05rem; }
.product-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.product-card .tag {
  font-size: 11.5px; background: var(--color-surface-2);
  color: var(--color-text-soft); padding: 4px 10px; border-radius: 999px;
}

/* ----------- Breadcrumb / page banner ----------- */
.page-banner {
  position: relative; color: #fff; padding: 140px 0 100px;
  background: #0b1220 center/cover no-repeat;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,18,32,.85) 0%, rgba(11,18,32,.55) 60%, rgba(11,18,32,.30) 100%);
}
.page-banner > * { position: relative; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; background: rgba(255,255,255,0.10); border-radius: 999px;
  backdrop-filter: blur(10px); font-size: 14px;
}
.breadcrumb a:hover { color: var(--color-primary-2); }
.breadcrumb i { font-size: 10px; opacity: 0.6; }

/* ----------- About callouts ----------- */
.about-image-stack {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-stack img { width: 100%; height: 100%; object-fit: cover; }
.about-image-stack .floater {
  position: absolute; right: -24px; bottom: 40px;
  background: #fff; padding: 22px 26px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; gap: 16px; align-items: center;
  animation: floaty 5s ease-in-out infinite;
}
.about-image-stack .floater .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; display: grid; place-items: center; font-size: 24px;
}
.about-image-stack .floater strong { display: block; font-family: var(--font-display); font-size: 1.6rem; }
.about-image-stack .floater span { color: var(--color-muted); font-size: 13px; }
@media (max-width: 600px) { .about-image-stack .floater { right: 16px; } }

/* ----------- CTA band ----------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #fff; padding: 70px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 10% 10%, rgba(255,255,255,0.15), transparent),
    radial-gradient(500px 300px at 90% 90%, rgba(0,0,0,0.10), transparent);
}
.cta-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p   { color: rgba(255,255,255,0.85); margin: 0; }
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; } }

/* ----------- Contact page ----------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-card {
  background: #fff; border: 1px solid var(--color-border);
  padding: 32px 26px; border-radius: var(--radius-md);
  text-align: center; transition: all .4s var(--ease);
}
.contact-card .ico {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff; display: grid; place-items: center; font-size: 24px;
  transition: transform .4s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card:hover .ico { transform: rotate(-8deg) scale(1.05); }
.contact-card h4 { margin-bottom: 10px; }
.contact-card a { color: var(--color-text-soft); }
.contact-card a:hover { color: var(--color-primary); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--color-border);
  padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--color-text); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--color-border);
  border-radius: 12px; font-family: inherit; font-size: 15px; outline: none;
  background: var(--color-surface-2); transition: all .25s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,26,0.12);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* ----------- Map strip ----------- */
.map-strip { height: 380px; }

/* ----------- Footer ----------- */
.site-footer { background: #06101e; color: #cfd6e4; padding: 80px 0 0; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-2), var(--color-accent));
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px;
  padding-bottom: 56px;
}
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer-col p  { color: #95a4bc; font-size: 14.5px; }
.footer-brand img { height: 70px; margin-bottom: 18px; }
.footer-col ul li { margin: 10px 0; }
.footer-col ul li a {
  color: #95a4bc; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s var(--ease);
}
.footer-col ul li a::before {
  content: ''; width: 0; height: 1px; background: var(--color-primary);
  transition: width .3s var(--ease);
}
.footer-col ul li a:hover { color: var(--color-primary-2); }
.footer-col ul li a:hover::before { width: 12px; }
.footer-contact i { color: var(--color-primary); width: 18px; flex-shrink: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: #cfd6e4;
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }

.newsletter { display: flex; background: rgba(255,255,255,0.06); border-radius: 999px; padding: 5px; margin-top: 14px; }
.newsletter input {
  background: transparent; border: 0; outline: 0;
  padding: 10px 18px; flex: 1; color: #fff; font-size: 14px;
}
.newsletter input::placeholder { color: #6d7e96; }
.newsletter button {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  border: 0; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  transition: transform .3s var(--ease);
}
.newsletter button:hover { transform: rotate(-20deg) scale(1.05); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; color: #6d7e96; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ----------- WhatsApp + scroll top ----------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 28px;
  box-shadow: 0 12px 24px rgba(37,211,102,0.45);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 12px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 12px 24px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.scroll-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--color-navy); color: #fff; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary); }

/* ----------- Reveal animations ----------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal[data-reveal="left"]  { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px);  }
.reveal[data-reveal="zoom"]  { transform: scale(.92); }
.reveal[data-reveal="fade"]  { transform: none; }
.reveal.in-view { opacity: 1; transform: none; }

/* stagger via data-delay */
.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="400"] { transition-delay: .4s; }
.reveal[data-delay="500"] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal[data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-card-stack img, .hero-card-float, .about-image-stack .floater { animation: none; }
}

/* ----------- Misc helpers ----------- */
.bg-soft { background: var(--color-surface-2); }
.divider {
  height: 1px; background: var(--color-border); margin: 0;
}
.text-grad {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 1.1rem; color: var(--color-text-soft); }
.d-none-mobile { display: inline-flex; }
@media (max-width: 700px) { .d-none-mobile { display: none; } }
