/* ===== AQUAFLOW PLUMBING — STYLE2.CSS ===== */
/* Dark glassmorphism, deep navy/teal, premium feel */

:root {
  --bg: #070d1a;
  --bg2: #0d1628;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.10);
  --primary: #00c2ff;
  --primary-dim: rgba(0,194,255,0.15);
  --accent: #00ffb3;
  --text: rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.5);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.chip {
  display: inline-block;
  background: var(--primary-dim);
  color: var(--primary);
  border: 1px solid rgba(0,194,255,0.25);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GLASS CARD */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

/* BUTTONS */
.btn-glass-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #0090cc);
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-glass-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,194,255,0.35);
}
.btn-glass-primary.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }
.btn-glass-primary.btn-full2 { width: 100%; text-align: center; display: block; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: 1px solid var(--glass-border);
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: var(--glass); border-color: rgba(255,255,255,0.25); }

/* CURSOR */
.cursor {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,194,255,0.4);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, left 0.12s ease, top 0.12s ease;
}

/* NAVBAR */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(7,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 2rem; max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--glass) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(10px);
  color: var(--primary) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 99px;
}
.nav-cta:hover { background: var(--primary-dim) !important; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: rgba(7,13,26,0.95); backdrop-filter: blur(20px); padding: 1rem 2rem 1.5rem; border-bottom: 1px solid var(--glass-border); }
.mobile-menu a { color: var(--text-muted); padding: 0.7rem 0; font-weight: 500; border-bottom: 1px solid var(--glass-border); }
.mobile-menu.open { display: flex; }

/* ORBs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 { width: 500px; height: 500px; background: rgba(0,194,255,0.12); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: rgba(0,255,179,0.08); bottom: 100px; left: -100px; }
.orb3 { width: 300px; height: 300px; background: rgba(100,50,255,0.1); top: 40%; left: 30%; }
.orb4 { width: 600px; height: 600px; background: rgba(0,194,255,0.1); top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  padding-top: 5rem;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-bg-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,80,150,0.4) 0%, transparent 70%),
              linear-gradient(180deg, #070d1a 0%, #0d1f3c 50%, #070d1a 100%);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; padding: 2rem 2rem 0; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.2rem; border-radius: 99px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-content p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 14rem; left: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--primary)); }
.scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-lr; }
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2rem; max-width: 1200px; margin: 0 auto; }
.stat-item { padding: 1.5rem 1rem; text-align: center; overflow: hidden; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-suffix { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.5rem); color: var(--accent); }
.stat-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; white-space: nowrap; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; background: var(--bg2); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 0.9rem 0; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 25s linear infinite; }
.marquee-track span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SERVICES SECTION */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-glass {
  position: relative; overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(0,194,255,0.3);
  box-shadow: 0 20px 60px rgba(0,194,255,0.1);
}
.service-glow {
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,194,255,0.15), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.featured-service { border-color: rgba(0,194,255,0.25); background: rgba(0,194,255,0.08); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-glass h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-glass p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: letter-spacing var(--transition); }
.service-link:hover { letter-spacing: 0.05em; }

/* MEDIA SCROLL */
.media-scroll-section { overflow: hidden; }
.scroll-gallery-wrap { overflow: hidden; position: relative; margin-top: 2rem; }
.scroll-gallery { display: flex; gap: 1.5rem; padding: 1rem 2rem; animation: scrollGallery 30s linear infinite; width: max-content; }
.scroll-gallery:hover { animation-play-state: paused; }
.scroll-img { flex-shrink: 0; width: 420px; height: 280px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.scroll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.scroll-img:hover img { transform: scale(1.05); }
.scroll-img-placeholder {
  width: 100%; height: 100%;
  background: var(--glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-align: center; font-size: 0.85rem;
  border: 2px dashed var(--glass-border);
}
@keyframes scrollGallery { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* WHY SECTION */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.why-img-placeholder {
  width: 100%; height: 500px;
  background: var(--glass);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-align: center; font-size: 0.9rem;
}
.why-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; padding: 1.5rem; text-align: center; min-width: 130px; }
.why-badge .big-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.why-badge p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.why-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: 1rem 0; }
.why-text > p { color: var(--text-muted); margin-bottom: 2rem; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.point-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; margin-top: 0.4rem; flex-shrink: 0; }
.why-point h4 { font-weight: 600; margin-bottom: 0.25rem; }
.why-point p { color: var(--text-muted); font-size: 0.9rem; }

/* TESTIMONIALS */
.testi-section { background: var(--bg2); }
.testi-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 1.5rem; }
.testi-glass {
  min-width: calc(33.333% - 1rem);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.testi-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-glass > p { color: var(--text-muted); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-dim); border: 1px solid rgba(0,194,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }
.testi-nav { display: flex; gap: 0.75rem; margin-top: 2rem; }
.testi-btn { background: var(--glass); border: 1px solid var(--glass-border); color: var(--text); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: background var(--transition), border-color var(--transition); }
.testi-btn:hover { background: var(--primary-dim); border-color: rgba(0,194,255,0.4); }

/* CTA */
.cta-section { position: relative; overflow: hidden; padding: 6rem 0; background: var(--bg2); }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,80,150,0.2), transparent 70%); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }

/* PAGE HERO DARK */
.page-hero-dark {
  position: relative; overflow: hidden;
  background: var(--bg2);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}
.page-hero-dark h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; }
.page-hero-dark p { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.75rem; }

/* SERVICES DETAIL PAGE */
.services-detail .container { max-width: 1100px; }
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--glass-border); }
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse .service-detail-img { order: 2; }
.service-detail-item.reverse .service-detail-text { order: 1; }
.service-detail-img img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }
.detail-img-placeholder { width: 100%; height: 360px; background: var(--glass); border: 2px dashed var(--glass-border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-align: center; font-size: 0.9rem; }
.service-icon-xl { font-size: 3rem; margin-bottom: 1rem; }
.service-detail-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.service-detail-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.glass-list { list-style: none; margin-bottom: 2rem; }
.glass-list li { padding: 0.6rem 0; color: var(--text-muted); font-size: 0.95rem; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; gap: 0.75rem; }
.glass-list li::before { content: '→'; color: var(--primary); font-size: 0.85rem; }

/* ABOUT PAGE */
.about-numbers { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.about-num-item { padding: 1.2rem 1.5rem; text-align: center; }
.about-num-item span { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); display: block; }
.about-num-item p { font-size: 0.8rem; color: var(--text-muted); }
.team-glass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-glass-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.5rem; text-align: center; backdrop-filter: blur(12px); transition: transform var(--transition), border-color var(--transition); }
.team-glass-card:hover { transform: translateY(-4px); border-color: rgba(0,194,255,0.3); }
.team-glass-img { width: 100%; height: 220px; background: var(--bg2); border: 2px dashed var(--glass-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; text-align: center; margin-bottom: 1rem; overflow: hidden; }
.team-glass-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-glass-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.team-glass-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* GALLERY PAGE */
.gallery-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn2 { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 99px; padding: 0.5rem 1.3rem; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all var(--transition); font-family: var(--font-body); color: var(--text-muted); }
.filter-btn2:hover, .filter-btn2.active { background: var(--primary-dim); border-color: rgba(0,194,255,0.4); color: var(--primary); }
.gallery2-grid { columns: 3; gap: 1rem; }
@media (max-width: 900px) { .gallery2-grid { columns: 2; } }
@media (max-width: 600px) { .gallery2-grid { columns: 1; } }
.gallery2-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--glass-border); }
.gallery2-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery2-item:hover img { transform: scale(1.04); }
.gallery2-item.tall .g2-placeholder { height: 380px; }
.g2-placeholder { width: 100%; height: 220px; background: var(--glass); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; text-align: center; transition: transform 0.4s ease; }
.gallery2-item:hover .g2-placeholder { transform: scale(1.02); }
.g2-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--text); padding: 2rem 1rem 0.75rem; font-size: 0.82rem; font-weight: 500; }
.gallery2-item.hidden { display: none; }
.lightbox2 { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
.lightbox2.active { display: flex; }
.lightbox2-close { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--glass); border: 1px solid var(--glass-border); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }
.lightbox2-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }

/* CONTACT PAGE */
.contact2-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact2-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.contact2-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact2-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 1.5rem; }
.c2-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact2-card h4 { font-weight: 600; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact2-card p { font-size: 0.95rem; }
.contact2-card small { font-size: 0.8rem; color: var(--text-muted); }
.map2-placeholder { width: 100%; height: 220px; background: var(--glass); border: 2px dashed var(--glass-border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-align: center; font-size: 0.85rem; margin-top: 1.5rem; }
.glass-form-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2.5rem; backdrop-filter: blur(16px); }
.glass-form-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.glass-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form2-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form2-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form2-group input, .form2-group select, .form2-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form2-group input:focus, .form2-group select:focus, .form2-group textarea:focus {
  border-color: rgba(0,194,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.08);
}
.form2-group select option { background: var(--bg2); }
.form2-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form2-success { text-align: center; padding: 3rem 2rem; }
.success2-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 1.8rem; font-weight: 700; margin: 0 auto 1.5rem; }
.form2-success h3 { font-family: var(--font-display); font-size: 2rem; }
.form2-success p { color: var(--text-muted); margin-top: 0.5rem; }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--glass-border); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-pill { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 99px; padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); transition: all var(--transition); }
.social-pill:hover { color: var(--primary); border-color: rgba(0,194,255,0.4); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4, .footer-contact h4 { color: var(--text); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 1.2rem 0; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-layout, .service-detail-item, .contact2-layout, .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-item.reverse .service-detail-img, .service-detail-item.reverse .service-detail-text { order: unset; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .testi-glass { min-width: calc(80% - 1rem); }
  .why-badge { right: 1rem; bottom: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-item { padding: 1rem; }
}
@media (max-width: 600px) {
  .form2-row { grid-template-columns: 1fr; }
  .about-numbers { gap: 0.75rem; }
  .hero-content h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; padding: 1.5rem 1rem; }
  .stat-item p { font-size: 0.75rem; }
}
