/* ═══════════════════════════════════════════════════
   MaxZone Lab – style.css
   Brand: #0A1D37 (navy)  #E53935 (red)
════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --navy:       #0A1D37;
  --navy-dark:  #060F1E;
  --navy-mid:   #0d2444;
  --red:        #E53935;
  --red-dark:   #C62828;
  --white:      #FFFFFF;
  --gray:       #A8A8A8;
  --gray-light: rgba(168,168,168,0.15);
  --light-bg:   #F4F6F9;
  --text:       #1a1f36;
  --text-muted: #6B7080;
  --border:     rgba(255,255,255,0.08);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-heading: 'Rajdhani', sans-serif;
  --ff-body:    'Inter', sans-serif;

  --radius:     10px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --shadow-red: 0 8px 32px rgba(229,57,53,0.35);
  --trans:      all 0.3s ease;
  --nav-h:      80px;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: #fff; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─── TYPOGRAPHY UTILITIES ───────────────────────── */
.t-red        { color: var(--red); }
.t-white      { color: var(--white); }
.t-gray-light { color: rgba(255,255,255,0.75); }

/* ─── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }

/* ─── SECTION HEADERS ────────────────────────────── */
.sec-head  { text-align: center; margin-bottom: 60px; }
.sec-tag   {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(229,57,53,0.08);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.sec-tag-light {
  color: rgba(229,57,53,0.9);
  background: rgba(229,57,53,0.12);
}
.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--navy);
}
.sec-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--ff-heading);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(229,57,53,0.25);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: var(--shadow-red); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* ═══════════════════════════════════════
   PRELOADER
═══════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; background: #fff;
  z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.pl-box { text-align: center; }
.pl-logo { width: 100px; height: 100px; margin: 0 auto 24px; }
.pl-svg { width: 100%; height: 100%; }

/* SVG draw animations */
.pl-frame { stroke-dasharray: 336; stroke-dashoffset: 336; animation: drawLine 0.8s ease forwards; }
.pl-m { stroke-dasharray: 120; stroke-dashoffset: 120; animation: drawLine 0.6s ease 0.5s forwards; }
.pl-z { stroke-dasharray: 140; stroke-dashoffset: 140; animation: drawLine 0.6s ease 0.9s forwards; }

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.pl-brand {
  font-family: var(--ff-display);
  font-size: 2rem; letter-spacing: 4px;
  opacity: 0; animation: fadeUp 0.5s ease 1.1s forwards;
}
.pl-max  { color: var(--navy); }
.pl-zone { color: var(--red); }
.pl-lab  { color: var(--navy); }
.pl-tagline {
  font-family: var(--ff-heading);
  font-size: 0.75rem; letter-spacing: 4px;
  color: var(--gray); margin: 6px 0 24px;
  opacity: 0; animation: fadeUp 0.5s ease 1.3s forwards;
}
.pl-bar { width: 180px; height: 3px; background: var(--gray-light); border-radius: 3px; overflow: hidden; margin: 0 auto; opacity: 0; animation: fadeUp 0.4s ease 1.4s forwards; }
.pl-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--navy), var(--red)); animation: fillBar 1.2s ease 1.5s forwards; }
@keyframes fillBar { to { width: 100%; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.ann-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-heading);
  font-size: 0.88rem; letter-spacing: 0.5px;
  padding: 10px 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ann-inner { overflow: hidden; white-space: nowrap; }
.ann-inner span { display: inline-block; animation: ticker 30s linear infinite; }
@keyframes ticker { 0% { transform: translateX(50vw); } 100% { transform: translateX(-100%); } }
.ann-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 14px; padding: 4px;
}
.ann-close:hover { color: #fff; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,29,55,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  height: 68px;
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 32px; }

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-svg { width: 44px; height: 44px; }
.nav-name-block { display: flex; flex-direction: column; }
.nav-name { font-family: var(--ff-display); font-size: 1.5rem; letter-spacing: 2px; line-height: 1; }
.nav-sub  { font-family: var(--ff-heading); font-size: 0.62rem; color: var(--gray); letter-spacing: 2px; margin-top: 2px; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  font-family: var(--ff-heading);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px; border-radius: 6px;
  transition: var(--trans); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.nav-book { font-size: 0.875rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glows */
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.g1 { width: 600px; height: 600px; background: var(--red); top: -200px; right: -100px; }
.g2 { width: 500px; height: 500px; background: #1a3a70; bottom: -200px; left: -100px; animation-delay: 3s; }
@keyframes glowPulse { from { opacity: 0.1; transform: scale(0.95); } to { opacity: 0.2; transform: scale(1.05); } }

/* Floaters */
.hero-floaters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floater {
  position: absolute;
  color: rgba(229,57,53,0.12);
  font-size: clamp(24px, 4vw, 48px);
  animation: float 8s ease-in-out infinite;
}
.f1 { top: 15%; left: 5%;  animation-duration: 7s; }
.f2 { top: 70%; left: 8%;  animation-duration: 9s; animation-delay: 1s; }
.f3 { top: 20%; right: 6%; animation-duration: 8s; animation-delay: 2s; }
.f4 { top: 60%; right: 4%; animation-duration: 7s; animation-delay: 0.5s; }
.f5 { top: 40%; left: 2%;  animation-duration: 10s; animation-delay: 1.5s; }
.f6 { top: 80%; right: 10%;animation-duration: 6s; animation-delay: 3s; }
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-24px) rotate(8deg); }
}

/* Hero Layout */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding-top: 40px; padding-bottom: 60px;
  position: relative; z-index: 1;
}

/* Left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-heading);
  font-size: 0.8rem; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 30px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeRight 0.7s ease 1.8s forwards;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 3px;
  margin-bottom: 28px;
  overflow: hidden;
}
.ht-line {
  display: block; color: #fff;
  opacity: 0; transform: translateY(80px);
  animation: slideUp 0.7s ease forwards;
}
#htLine1 { animation-delay: 1.9s; }
#htLine2 { animation-delay: 2.1s; }
.ht-accent { color: var(--red); }

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem; line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0; animation: fadeRight 0.7s ease 2.3s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeRight 0.7s ease 2.5s forwards;
}

@keyframes fadeRight { from{opacity:0;transform:translateX(-20px);} to{opacity:1;transform:translateX(0);} }
@keyframes slideUp   { from{opacity:0;transform:translateY(60px);}  to{opacity:1;transform:translateY(0);} }

/* Right – ECG + Stats */
.hero-right {
  display: flex; flex-direction: column; gap: 32px;
  opacity: 0; animation: fadeLeft 0.8s ease 2.2s forwards;
}
@keyframes fadeLeft { from{opacity:0;transform:translateX(30px);} to{opacity:1;transform:translateX(0);} }

.ecg-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px; overflow: hidden;
}
.ecg-svg { width: 100%; height: 80px; }
.ecg-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: ecgDraw 2.5s ease 2.5s forwards, ecgPulse 3s ease 5s infinite;
}
@keyframes ecgDraw  { to { stroke-dashoffset: 0; } }
@keyframes ecgPulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

/* Stat cards grid */
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.hstat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px;
  text-align: center;
  transition: var(--trans);
}
.hstat:hover { background: rgba(229,57,53,0.08); border-color: rgba(229,57,53,0.3); }
.hstat-icon { font-size: 1.4rem; color: var(--red); margin-bottom: 8px; }
.hstat-val  { font-family: var(--ff-display); font-size: 2rem; letter-spacing: 1px; color: #fff; }
.hstat-label{ font-family: var(--ff-heading); font-size: 0.75rem; letter-spacing: 1px; color: var(--gray); margin-top: 4px; }

/* Scroll Indicator */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-heading); font-size: 0.7rem; letter-spacing: 2px;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--red); border-radius: 2px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: wheelScroll 1.5s ease-in-out infinite;
}
@keyframes wheelScroll { 0%,100%{top:5px;opacity:1;} 50%{top:16px;opacity:0.3;} }
@keyframes bounceDown  { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 60px; height: 60px;
  background: rgba(229,57,53,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--red);
  margin-bottom: 20px;
  transition: var(--trans);
}
.svc-card:hover .svc-icon { background: var(--red); color: #fff; }
.svc-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.svc-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.svc-tags span {
  background: var(--light-bg);
  color: var(--text-muted);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red);
  font-family: var(--ff-heading);
  font-size: 0.9rem; font-weight: 700;
  transition: gap 0.3s ease;
}
.svc-link:hover { gap: 10px; }

/* Featured service card */
.svc-featured {
  background: var(--navy);
  border-color: transparent;
}
.svc-featured h3, .svc-featured p { color: rgba(255,255,255,0.9); }
.svc-featured .svc-icon { background: rgba(229,57,53,0.2); }
.svc-featured:hover .svc-icon { background: var(--red); }
.svc-featured .svc-tags span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.svc-featured .svc-link { color: var(--red); }

.svc-featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 4px;
}

/* ═══════════════════════════════════════
   PROMOTIONS
═══════════════════════════════════════ */
.promo-section { background: var(--light-bg); }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.promo-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--trans);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-img { width: 100%; height: 180px; object-fit: cover; background: var(--light-bg); }
.promo-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.2);
}
.promo-body { padding: 20px; }
.promo-title { font-family: var(--ff-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.promo-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.promo-badge { display: inline-block; background: rgba(229,57,53,0.1); color: var(--red); font-size: 0.8rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

/* ═══════════════════════════════════════
   BOOKING
═══════════════════════════════════════ */
.booking-section { background: var(--light-bg); }
.booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.booking-left .sec-title { color: var(--navy); margin-bottom: 16px; }
.booking-intro { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.booking-features { display: flex; flex-direction: column; gap: 20px; }
.bf-row { display: flex; align-items: flex-start; gap: 16px; }
.bf-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(229,57,53,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.bf-text strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.bf-text span   { font-size: 0.85rem; color: var(--text-muted); }

/* Form */
.booking-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.875rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text);
  background: var(--light-bg);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(229,57,53,0.08); }
.form-group textarea { resize: vertical; min-height: 80px; }

.discount-row { display: flex; gap: 10px; }
.discount-row input { flex: 1; }
.discount-msg { font-size: 0.82rem; margin-top: 6px; font-weight: 600; }
.discount-msg.success { color: #2e7d32; }
.discount-msg.error   { color: var(--red); }

.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }

/* ═══════════════════════════════════════
   CORPORATE CAMPS
═══════════════════════════════════════ */
.corporate-section {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.corporate-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(229,57,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,57,53,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.corporate-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

/* Corp Left */
.corp-left .sec-title { color: #fff; margin-bottom: 16px; }
.corp-left > p { margin-bottom: 36px; }

.corp-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.cstat-val { font-family: var(--ff-display); font-size: 2rem; color: var(--red); letter-spacing: 1px; }
.cstat-lbl { font-family: var(--ff-heading); font-size: 0.75rem; letter-spacing: 1px; color: var(--gray); margin-top: 2px; }

.corp-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.corp-features li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.corp-features li i { color: var(--red); font-size: 1rem; flex-shrink: 0; }

/* Industry grid */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px 12px;
  text-align: center; cursor: default;
  transition: var(--trans);
}
.ind-card i { font-size: 1.6rem; color: rgba(229,57,53,0.7); margin-bottom: 10px; }
.ind-card span { display: block; font-family: var(--ff-heading); font-size: 0.8rem; letter-spacing: 0.5px; color: rgba(255,255,255,0.7); }
.ind-card:hover { background: rgba(229,57,53,0.1); border-color: rgba(229,57,53,0.3); transform: translateY(-4px); }
.ind-card:hover i { color: var(--red); }

/* ═══════════════════════════════════════
   PRICE CHART
═══════════════════════════════════════ */
.price-controls { display: flex; justify-content: center; margin-bottom: 24px; }
.price-search-wrap {
  position: relative; width: 100%; max-width: 500px;
}
.price-search-wrap i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
}
.price-search-wrap input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  font-size: 0.9rem; outline: none;
  background: var(--light-bg);
  transition: var(--trans);
}
.price-search-wrap input:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(229,57,53,0.08); }

/* Tabs */
.price-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.ptab {
  font-family: var(--ff-heading); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.3px;
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff; color: var(--text-muted);
  cursor: pointer; transition: var(--trans);
}
.ptab:hover, .ptab.active { background: var(--red); color: #fff; border-color: var(--red); }

/* Table */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; }
.price-table thead { background: var(--navy); color: #fff; }
.price-table th {
  font-family: var(--ff-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-align: left;
  padding: 16px 20px;
}
.price-table th:last-child { text-align: center; }
.price-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--trans); }
.price-table tbody tr:hover { background: rgba(229,57,53,0.03); }
.price-table td { padding: 14px 20px; font-size: 0.9rem; color: var(--text); }
.price-table td:first-child { color: var(--text-muted); font-size: 0.8rem; }
.price-table td:nth-child(3) { font-family: var(--ff-heading); font-weight: 700; color: var(--navy); }
.price-table td:last-child { text-align: center; }
.price-discounted { text-decoration: line-through; color: var(--text-muted) !important; font-weight: 400 !important; }
.price-offer { color: var(--red) !important; }

.price-empty { text-align: center; padding: 60px; background: #fff; }
.price-empty i { font-size: 2.5rem; color: var(--gray); margin-bottom: 12px; display: block; }
.price-empty p { color: var(--text-muted); }

.price-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.price-footer p { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ═══════════════════════════════════════
   COLLABORATE
═══════════════════════════════════════ */
.collab-section { background: var(--light-bg); }
.collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.collab-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--trans);
}
.collab-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.collab-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(10,29,55,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--navy);
  margin-bottom: 20px; transition: var(--trans);
}
.collab-card-hero .collab-icon { background: var(--navy); color: var(--red); }
.collab-card:hover .collab-icon { background: var(--navy); color: var(--red); }

.collab-card h3 { font-family: var(--ff-heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.collab-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.collab-perks   { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.collab-perks li{ display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.collab-perks li i { color: #2e7d32; }
.collab-card-hero { background: var(--navy); }
.collab-card-hero h3, .collab-card-hero p { color: rgba(255,255,255,0.9); }
.collab-card-hero .collab-perks li { color: rgba(255,255,255,0.7); }
.collab-card-hero .collab-perks li i { color: #69f0ae; }

/* Banner */
.collab-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.collab-banner-left { display: flex; align-items: center; gap: 20px; }
.cb-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(229,57,53,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red);
}
.collab-banner h3 { font-family: var(--ff-heading); font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.collab-banner p  { font-size: 0.88rem; color: var(--gray); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section { background: var(--navy-dark); }
.testi-section .sec-tag { background: rgba(229,57,53,0.15); }
.testi-section .sec-title { color: #fff; }

.testi-swiper { padding-bottom: 60px !important; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px; height: 100%;
  transition: var(--trans);
}
.testi-card:hover { background: rgba(229,57,53,0.06); border-color: rgba(229,57,53,0.2); }

.testi-stars { color: #f59e0b; margin-bottom: 16px; font-size: 0.9rem; display: flex; gap: 4px; }
.testi-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  font-family: var(--ff-heading); font-size: 0.9rem; font-weight: 700;
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.testi-author strong { display: block; color: #fff; font-size: 0.9rem; }
.testi-author span   { font-size: 0.78rem; color: var(--gray); }

.testi-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.testi-swiper .swiper-pagination-bullet-active { background: var(--red); }
.testi-swiper .swiper-button-prev,
.testi-swiper .swiper-button-next { color: var(--red); }
.testi-swiper .swiper-button-prev::after,
.testi-swiper .swiper-button-next::after { font-size: 1.2rem; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--light-bg); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.cinfo-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: var(--radius);
  padding: 20px; margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--trans);
}
.cinfo-card:hover { border-color: var(--red); transform: translateX(4px); }
.cinfo-card > i { color: var(--red); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; width: 24px; }
.cinfo-card strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.cinfo-card span   { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  transition: var(--trans);
}
.social-btn:hover { background: var(--red); transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--navy-dark); }
.footer-top { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-svg  { width: 48px; height: 48px; flex-shrink: 0; }
.fl-name { font-family: var(--ff-display); font-size: 1.4rem; letter-spacing: 2px; color: #fff; }
.fl-tag  { font-family: var(--ff-heading); font-size: 0.65rem; letter-spacing: 2.5px; color: var(--gray); margin-top: 2px; }
.footer-brand p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 280px; }

.footer-links-col h4 { font-family: var(--ff-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a { font-size: 0.875rem; color: var(--gray); transition: var(--trans); }
.footer-links-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--gray); margin-bottom: 10px; }
.footer-contact li i { color: var(--red); flex-shrink: 0; margin-top: 3px; width: 16px; }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.825rem; color: var(--gray); }
.footer-bottom strong { color: var(--red); }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 5000;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-heading);
  font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--red);
  transform: translateX(120%); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.success { border-color: #2e7d32; }
.toast.error   { border-color: var(--red); }

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn { from{transform:scale(0.8);opacity:0;} to{transform:scale(1);opacity:1;} }

.success-icon { font-size: 4rem; color: #2e7d32; margin-bottom: 20px; }
.modal-box h3 { font-family: var(--ff-heading); font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; }
.modal-box p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right     { display: none; }
  .corporate-wrap { grid-template-columns: 1fr; }
  .corp-right     { display: none; }
  .collab-grid    { grid-template-columns: 1fr 1fr; }
  .contact-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .booking-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; flex-direction: column; gap: 4px; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-book  { display: none; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-btns  { flex-direction: column; }

  .services-grid { grid-template-columns: 1fr; }
  .collab-grid   { grid-template-columns: 1fr; }
  .collab-banner { flex-direction: column; text-align: center; }
  .collab-banner-left { flex-direction: column; align-items: center; }
  .booking-form  { padding: 28px 20px; }
  .form-row-2    { grid-template-columns: 1fr; }

  .corp-stats { flex-wrap: wrap; gap: 20px; }
  .contact-form { padding: 28px 20px; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .price-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; }
  .sec-title  { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .ann-bar    { display: none; }
}
