/* ═══════════════════════════════════════════════════════════
   TECHMYST — Main Stylesheet
   Brand: SeaGreen (#2E8B57) + RedOrange (#FF4500)
   Fonts: Syne (headings) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

:root {
  --green: #2E8B57;
  --green-dark: #1f6b42;
  --green-light: #3aaf6e;
  --green-pale: #e8f5ee;
  --orange: #FF4500;
  --orange-dark: #cc3700;
  --orange-light: #ff6a33;
  --orange-pale: #fff0eb;
  --dark: #0f1923;
  --dark-2: #1a2332;
  --dark-3: #243040;
  --mid: #4a5568;
  --muted: #718096;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,25,35,0.08);
  --shadow-md: 0 8px 40px rgba(15,25,35,0.12);
  --shadow-lg: 0 20px 60px rgba(15,25,35,0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header h2 em {
  font-style: normal;
  color: var(--green);
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-primary-main:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,139,87,0.3);
}
.btn-outline-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--green);
  transition: var(--transition);
}
.btn-outline-main:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1db954;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp.full-width, .btn-outline-main.full-width { width: 100%; justify-content: center; }
.mt-sm { margin-top: 10px; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #a0aec0;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-right {
  display: flex;
  gap: 24px;
}
.topbar a, .topbar span {
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.navbar-main.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand-logo { display: flex; align-items: center; }
.logo-img { height: 55px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  margin-left: auto;
}
.nav-menu > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* Always-visible Get a Quote button — shows on ALL screen sizes */
.nav-cta-fixed {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(255,69,0,0.3);
}
.nav-cta-fixed:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,69,0,0.4);
}

/* On mobile: shrink padding slightly so it fits beside hamburger */
@media (max-width: 768px) {
  .nav-cta-fixed {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* DROPDOWNS */
.dropdown, .sub-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
  padding: 8px;
}
.has-dropdown:hover > .dropdown,
.has-sub:hover > .sub-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a, .sub-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown li a:hover, .sub-dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green);
}
.has-sub { position: relative; }
.sub-dropdown { left: 100%; top: 0; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #162640 100%);
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 { width: 500px; height: 500px; background: var(--green); top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: -100px; left: 10%; }
.shape-3 { width: 200px; height: 200px; background: var(--green-light); top: 50%; left: 40%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  margin-bottom: 20px;
}
.hero-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,69,0,0.15);
  color: var(--orange-light);
  border: 1px solid rgba(255,69,0,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text h1 span { color: var(--green-light); }
.hero-text p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 800;
}
.hero-stat span {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* HERO ILLUSTRATION */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 16px;
}
.hex {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46,139,87,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-light);
  animation: hexFloat 4s ease-in-out infinite;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hex:hover { background: rgba(46,139,87,0.15); transform: scale(1.1); }
.hex.h1 { animation-delay: 0s; color: var(--green-light); }
.hex.h2 { animation-delay: 0.4s; color: var(--orange-light); }
.hex.h3 { animation-delay: 0.8s; color: #60a5fa; }
.hex.h4 { animation-delay: 1.2s; color: #f59e0b; }
.hex.h5 { animation-delay: 1.6s; color: #a78bfa; }
.hex.h6 { animation-delay: 2.0s; color: var(--green-light); }

@keyframes hexFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── CLIENTS ─────────────────────────────────────────────── */
.clients-section {
  padding: 40px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.clients-ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: var(--transition);
}
.ticker-item img:hover { filter: grayscale(0) opacity(1); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}
.service-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-card:hover .read-more { color: var(--orange); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-placeholder {
  height: 460px;
  background: linear-gradient(135deg, var(--green-pale), var(--orange-pale));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--green);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.about-badge i { font-size: 1.4rem; }
.about-content { }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-content h2 em { font-style: normal; color: var(--green); }
.about-text { color: var(--mid); margin-bottom: 28px; font-size: 1rem; line-height: 1.8; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}
.highlight i { color: var(--green); font-size: 1.1rem; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item { }
.stat-item i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  color: #94a3b8;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── MISSION & VISION ────────────────────────────────────── */
.mv-section { background: var(--white); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-img { height: 240px; overflow: hidden; }
.mv-img img { width: 100%; height: 100%; object-fit: cover; }
.mv-body { padding: 32px; }
.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.mission-card .mv-icon { background: var(--green-pale); color: var(--green); }
.vision-card .mv-icon { background: var(--orange-pale); color: var(--orange); }
.mv-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.mv-body p { color: var(--muted); font-style: italic; line-height: 1.8; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--light); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-header-col { position: sticky; top: 100px; }
.faq-header-col h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.faq-header-col h2 em { font-style: normal; color: var(--green); }
.faq-header-col p { color: var(--muted); margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,139,87,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-question span {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  font-family: var(--font-body);
}
.faq-icon {
  color: var(--green);
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--mid); font-size: 0.93rem; line-height: 1.8; }

/* ── INQUIRY FORM ────────────────────────────────────────── */
.inquiry-section { background: var(--white); }
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.inquiry-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.inquiry-info h2 em { font-style: normal; color: var(--green); }
.inquiry-info > p { color: var(--muted); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
}
a.contact-detail-item:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(46,139,87,0.1); }
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.cd-icon.email { background: var(--green-pale); color: var(--green); }
.cd-icon.address { background: var(--orange-pale); color: var(--orange); }
.cd-icon.hours { background: rgba(99,102,241,0.1); color: #6366f1; }
.contact-detail-item strong { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.contact-detail-item span { font-size: 0.93rem; font-weight: 600; color: var(--dark); }

/* FORM */
.inquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inquiry-form .form-group { margin-bottom: 20px; }
.inquiry-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,139,87,0.1); }
.inquiry-form textarea { resize: vertical; }
.submit-btn { width: 100%; justify-content: center; }
.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-msg.success { background: var(--green-pale); color: var(--green-dark); }
.form-msg.error { background: var(--orange-pale); color: var(--orange-dark); }
.spin { animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.contact-card a { color: inherit; display: contents; }
.contact-card i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  animation: pulse-wa 2.5s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1db954; transform: scale(1.1); color: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #94a3b8; }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo { height: 55px; width: auto; margin-bottom: 16px; filter: brightness(2); }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-col ul li a i { color: var(--green); font-size: 0.7rem; }
.footer-contact-list { gap: 14px !important; }
.footer-contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #94a3b8;
}
.footer-contact-list li i { color: var(--orange); margin-top: 2px; }
.footer-contact-list li a { color: #94a3b8; }
.footer-contact-list li a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.87rem;
}
.footer-bottom a { color: var(--green); }
.footer-bottom a:hover { color: var(--green-light); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fadeInLeft"] { transform: translateX(-30px); }
[data-animate="fadeInRight"] { transform: translateX(30px); }
[data-animate].animated { opacity: 1; transform: translate(0); }

/* ── ALERT TOAST ─────────────────────────────────────────── */
.alert-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow-md);
}
.alert-success { background: var(--green); color: var(--white); }
.alert-danger { background: var(--orange); color: var(--white); }
@keyframes slideInRight { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--green); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { color: var(--dark); font-weight: 500; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 24px;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-overlay.active { display: block; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light);
    padding: 4px 0 4px 16px;
    margin-top: 4px;
    display: none;
  }
  .has-dropdown.open > .dropdown { display: block; }
  /* navbar: logo left, [Get a Quote] + hamburger right */
  .navbar-inner { padding: 12px 16px; gap: 10px; }
  /* nav-menu is a fixed drawer — reset margin-left so it doesn't push cta button */
  .nav-menu { margin-left: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -10px; right: -10px; }
  .mv-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header-col { position: static; }
  .inquiry-layout { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-form-wrap { padding: 24px; }
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-section { padding: 60px 0 48px; }
  .hero-actions { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
