/* ============================================
   JAY TECH SOLUTIONS - MAIN STYLESHEET
   Professional IT Services | Navy & Gold Theme
   ============================================ */

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --navy: #0B1F4B;
  --navy-mid: #163470;
  --navy-light: #1E4A9A;
  --gold: #C9A94A;
  --gold-light: #E8C96D;
  --gold-pale: #F5EDD3;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text-dark: #0D1B2A;
  --text-mid: #3A4A6B;
  --text-muted: #6B7A9A;
  --border: rgba(11,31,75,0.12);
}

html { scroll-behavior: smooth; }

body { 
  font-family: 'DM Sans', sans-serif; 
  color: var(--text-dark); 
  background: var(--white); 
  overflow-x: hidden; 
  line-height: 1.7; 
}

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Navigation */
nav { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 999; 
  background: rgba(11,31,75,0.97); 
  backdrop-filter: blur(8px); 
  padding: 0 5%; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 70px; 
  border-bottom: 1px solid rgba(201,169,74,0.25); 
  transition: box-shadow 0.3s; 
}

nav.scrolled { box-shadow: 0 4px 24px rgba(11,31,75,0.3); }

.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
}

.nav-logo-box { 
  width: 44px; 
  height: 44px; 
  border-radius: 8px; 
  background: var(--gold); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  flex-shrink: 0; 
}

.nav-logo-box img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}

.nav-logo-box span { 
  font-family: 'Playfair Display', serif; 
  font-weight: 900; 
  font-size: 18px; 
  color: var(--navy); 
}

.nav-logo-text { 
  font-family: 'Playfair Display', serif; 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--white); 
  line-height: 1.1; 
}

.nav-logo-text small { 
  display: block; 
  font-size: 11px; 
  font-family: 'DM Sans', sans-serif; 
  font-weight: 400; 
  color: var(--gold-light); 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
}

.nav-links { 
  display: flex; 
  gap: 2rem; 
  list-style: none; 
  align-items: center; 
}

.nav-links a { 
  color: rgba(255,255,255,0.8); 
  text-decoration: none; 
  font-size: 14px; 
  font-weight: 500; 
  transition: color 0.2s; 
  position: relative; 
}

.nav-links a::after { 
  content: ''; 
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  right: 0; 
  height: 1.5px; 
  background: var(--gold); 
  transform: scaleX(0); 
  transition: transform 0.2s; 
}

.nav-links a:hover, 
.nav-links a.active { 
  color: var(--gold-light); 
}

.nav-links a:hover::after, 
.nav-links a.active::after { 
  transform: scaleX(1); 
}

.nav-cta { 
  background: var(--gold) !important; 
  color: var(--navy) !important; 
  padding: 8px 20px; 
  border-radius: 6px; 
  font-weight: 600 !important; 
}

.nav-cta:hover { 
  background: var(--gold-light) !important; 
  transform: translateY(-2px);
}

.nav-cta::after { 
  display: none !important; 
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  background: none; 
  border: none; 
  padding: 4px; 
}

.hamburger span { 
  width: 24px; 
  height: 2px; 
  background: var(--white); 
  border-radius: 2px; 
}

/* Hero Section */
#home { 
  min-height: 100vh; 
  background: var(--navy); 
  position: relative; 
  display: flex; 
  align-items: center; 
  overflow: hidden; 
  padding: 120px 5% 80px; 
}

.hero-bg { 
  position: absolute; 
  inset: 0; 
  background-image: radial-gradient(circle at 20% 50%, rgba(201,169,74,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30,74,154,0.3) 0%, transparent 40%); 
}

.hero-grid { 
  position: absolute; 
  inset: 0; 
  background-image: linear-gradient(rgba(201,169,74,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,74,0.04) 1px, transparent 1px); 
  background-size: 60px 60px; 
  animation: gridDrift 20s linear infinite; 
}

@keyframes gridDrift { 
  0% { background-position: 0 0; } 
  100% { background-position: 60px 60px; } 
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 700px; 
}

.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(201,169,74,0.15); 
  border: 1px solid rgba(201,169,74,0.3); 
  border-radius: 100px; 
  padding: 6px 16px; 
  margin-bottom: 28px; 
  animation: fadeDown 0.8s ease both; 
}

@keyframes fadeDown { 
  from { opacity:0; transform:translateY(-20px); } 
  to { opacity:1; transform:translateY(0); } 
}

@keyframes fadeUp { 
  from { opacity:0; transform:translateY(30px); } 
  to { opacity:1; transform:translateY(0); } 
}

.pulse-dot { 
  width: 7px; 
  height: 7px; 
  background: var(--gold); 
  border-radius: 50%; 
  animation: pulse 2s infinite; 
}

@keyframes pulse { 
  0%,100% { opacity:1; transform:scale(1); } 
  50% { opacity:0.6; transform:scale(1.3); } 
}

.hero-badge span { 
  font-size: 13px; 
  color: var(--gold-light); 
  font-weight: 500; 
}

.hero-title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.8rem,6vw,5rem); 
  font-weight: 900; 
  color: var(--white); 
  line-height: 1.1; 
  margin-bottom: 24px; 
  animation: fadeUp 0.8s 0.2s ease both; 
}

.hero-title .gold { 
  color: var(--gold); 
}

.hero-sub { 
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.7); 
  max-width: 540px; 
  margin-bottom: 40px; 
  line-height: 1.8; 
  animation: fadeUp 0.8s 0.4s ease both; 
}

.hero-btns { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  animation: fadeUp 0.8s 0.6s ease both; 
}

.btn-primary { 
  background: var(--gold); 
  color: var(--navy); 
  padding: 14px 32px; 
  border-radius: 8px; 
  font-weight: 600; 
  font-size: 15px; 
  text-decoration: none; 
  border: none; 
  cursor: pointer; 
  transition: background 0.2s, transform 0.15s; 
  display: inline-block; 
}

.btn-primary:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px); 
}

.btn-outline { 
  background: transparent; 
  color: var(--white); 
  padding: 14px 32px; 
  border-radius: 8px; 
  font-weight: 500; 
  font-size: 15px; 
  text-decoration: none; 
  border: 1px solid rgba(255,255,255,0.3); 
  transition: border-color 0.2s, background 0.2s; 
  display: inline-block; 
}

.btn-outline:hover { 
  border-color: var(--gold); 
  color: var(--gold-light); 
}

.hero-stats { 
  display: flex; 
  gap: 40px; 
  margin-top: 60px; 
  padding-top: 40px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  flex-wrap: wrap; 
  animation: fadeUp 0.8s 0.8s ease both; 
}

.hero-stat-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--gold); 
}

.hero-stat-lbl { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
  margin-top: 2px; 
}

/* Section Styles */
.section-tag { 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 12px; 
  display: block; 
}

.section-title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2rem,4vw,3rem); 
  font-weight: 700; 
  color: var(--navy); 
  line-height: 1.2; 
  margin-bottom: 20px; 
}

.section-sub { 
  font-size: 1rem; 
  color: var(--text-muted); 
  max-width: 560px; 
  line-height: 1.8; 
}

/* About Section */
#about { 
  padding: 100px 5%; 
  background: var(--off-white); 
}

.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: start; 
  margin-top: 60px; 
}

.ceo-card { 
  background: var(--navy); 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 20px 60px rgba(11,31,75,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(11,31,75,0.25);
}

.ceo-photo { 
  position: relative; 
  height: 420px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); 
  overflow: hidden; 
}

.ceo-photo img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.ceo-card:hover .ceo-photo img {
  transform: scale(1.05);
  transition: transform 0.5s;
}

.ceo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,31,75,0.1) 40%, rgba(11,31,75,0.7) 100%);
}

.ceo-badge { 
  position: absolute; 
  bottom: 16px; 
  right: 16px; 
  background: var(--gold); 
  color: var(--navy); 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 1px; 
  padding: 5px 12px; 
  border-radius: 100px; 
  text-transform: uppercase; 
  z-index: 2;
}

.ceo-info { 
  padding: 28px 32px 32px; 
}

.ceo-name { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--white); 
  margin-bottom: 4px; 
}

.ceo-role { 
  font-size: 12px; 
  color: var(--gold-light); 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  font-weight: 500; 
  margin-bottom: 14px; 
}

.ceo-bio { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.68); 
  line-height: 1.8; 
}

.ceo-socials { 
  display: flex; 
  gap: 10px; 
  margin-top: 20px; 
}

.ceo-soc { 
  width: 36px; 
  height: 36px; 
  border-radius: 8px; 
  background: rgba(255,255,255,0.08); 
  border: 1px solid rgba(255,255,255,0.12); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  transition: background 0.2s, border-color 0.2s; 
}

.ceo-soc:hover { 
  background: rgba(201,169,74,0.2); 
  border-color: rgba(201,169,74,0.4); 
}

.about-pts { 
  list-style: none; 
  margin-top: 28px; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.about-pts li { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
}

.apt-icon { 
  width: 28px; 
  height: 28px; 
  min-width: 28px; 
  background: var(--gold-pale); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-top: 2px; 
}

.apt-icon svg { 
  width: 14px; 
  height: 14px; 
}

.about-pts li p { 
  font-size: 0.95rem; 
  color: var(--text-mid); 
  line-height: 1.7; 
}

/* Services Section */
#services { 
  padding: 100px 5%; 
  background: var(--white); 
}

.svc-header { 
  text-align: center; 
  max-width: 600px; 
  margin: 0 auto 60px; 
}

.svc-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px; 
}

.svc-card { 
  background: var(--off-white); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 32px; 
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; 
  position: relative; 
  overflow: hidden; 
}

.svc-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px; 
  background: var(--gold); 
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform 0.3s; 
}

.svc-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 16px 40px rgba(11,31,75,0.12); 
  border-color: rgba(201,169,74,0.3); 
}

.svc-card:hover::before { 
  transform: scaleX(1); 
}

.svc-icon { 
  width: 52px; 
  height: 52px; 
  background: var(--navy); 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 20px; 
  transition: transform 0.3s; 
}

.svc-card:hover .svc-icon { 
  transform: scale(1.1) rotate(-4deg); 
}

.svc-icon svg { 
  width: 24px; 
  height: 24px; 
}

.svc-card h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 10px; 
}

.svc-card p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  line-height: 1.7; 
}

/* Why Choose Us */
.why-sec { 
  background: var(--navy); 
  padding: 80px 5%; 
}

.why-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 32px; 
  margin-top: 50px; 
}

.why-card { 
  text-align: center; 
  padding: 32px 20px; 
  border: 1px solid rgba(201,169,74,0.15); 
  border-radius: 12px; 
  transition: background 0.2s, border-color 0.2s; 
}

.why-card:hover { 
  background: rgba(201,169,74,0.05); 
  border-color: rgba(201,169,74,0.3); 
}

.why-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 2.8rem; 
  font-weight: 900; 
  color: var(--gold); 
  line-height: 1; 
}

.why-lbl { 
  font-size: 0.9rem; 
  color: rgba(255,255,255,0.6); 
  margin-top: 8px; 
}

/* Testimonials */
#testimonials { 
  padding: 80px 5%; 
  background: var(--white); 
}

.testi-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px; 
  margin-top: 50px; 
}

.testi-card { 
  background: var(--off-white); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 28px; 
}

.testi-q { 
  font-size: 48px; 
  color: var(--gold); 
  line-height: 1; 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 12px; 
}

.testi-txt { 
  font-size: 0.92rem; 
  color: var(--text-mid); 
  line-height: 1.8; 
  font-style: italic; 
}

.testi-author { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-top: 20px; 
}

.testi-av { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: var(--navy); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  color: var(--gold); 
  font-size: 14px; 
}

.testi-nm { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--navy); 
}

.testi-rl { 
  font-size: 12px; 
  color: var(--text-muted); 
}

.testi-stars { 
  color: var(--gold); 
  font-size: 13px; 
  margin-top: 3px; 
}

/* Blog Section */
#blog { 
  padding: 100px 5%; 
  background: var(--off-white); 
}

.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 32px; 
  margin-top: 50px; 
}

.blog-card { 
  background: var(--white); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  overflow: hidden; 
  transition: transform 0.25s, box-shadow 0.25s; 
}

.blog-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 14px 36px rgba(11,31,75,0.1); 
}

.blog-media { 
  background: var(--navy); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 10px; 
}

.blog-media img, 
.blog-media video { 
  width: 100%; 
  height: auto; 
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px; 
}

.blog-body { 
  padding: 24px; 
}

.blog-tag { 
  display: inline-block; 
  background: var(--gold-pale); 
  color: var(--gold); 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  padding: 3px 10px; 
  border-radius: 100px; 
  margin-bottom: 10px; 
}

.blog-body h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 10px; 
  line-height: 1.3; 
}

.blog-body p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  line-height: 1.7; 
}

.blog-foot { 
  padding: 16px 24px; 
  border-top: 1px solid var(--border); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.blog-date { 
  font-size: 12px; 
  color: var(--text-muted); 
}

.blog-link { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--gold); 
  text-decoration: none; 
  transition: letter-spacing 0.2s; 
}

.blog-link:hover { 
  letter-spacing: 0.5px; 
}

/* Contact Section */
#contact { 
  padding: 100px 5%; 
  background: var(--white); 
}

.contact-simple { 
  max-width: 800px; 
  margin: 0 auto; 
  text-align: center; 
}

.contact-cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 32px; 
  margin-top: 50px; 
}

.contact-card { 
  background: var(--off-white); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 32px; 
  transition: transform 0.25s, box-shadow 0.25s; 
  text-decoration: none; 
  display: block; 
}

.contact-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 16px 40px rgba(11,31,75,0.12); 
  border-color: var(--gold); 
}

.contact-icon { 
  width: 70px; 
  height: 70px; 
  background: var(--navy); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 20px; 
}

.contact-icon svg { 
  width: 32px; 
  height: 32px; 
}

.contact-card h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.3rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 12px; 
}

.contact-card p { 
  font-size: 1rem; 
  color: var(--text-mid); 
  word-break: break-all; 
}

.contact-card .contact-label { 
  font-size: 12px; 
  color: var(--gold); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-top: 12px; 
  display: inline-block; 
}

.soc-row { 
  display: flex; 
  gap: 15px; 
  justify-content: center; 
  margin-top: 48px; 
}

.soc-btn { 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  background: var(--white); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  transition: all 0.2s; 
}

.soc-btn:hover { 
  transform: translateY(-3px); 
  border-color: var(--gold); 
  background: var(--gold-pale); 
}

/* Footer */
footer { 
  background: var(--navy); 
  color: rgba(255,255,255,0.6); 
  padding: 60px 5% 30px; 
}

.foot-top { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr 1fr; 
  gap: 40px; 
  padding-bottom: 40px; 
  border-bottom: 1px solid rgba(255,255,255,0.08); 
}

.foot-brand p { 
  font-size: 0.9rem; 
  line-height: 1.8; 
  margin-top: 14px; 
  max-width: 280px; 
}

.foot-col h4 { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--gold-light); 
  margin-bottom: 16px; 
  letter-spacing: 0.5px; 
}

.foot-col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.foot-col ul a { 
  color: rgba(255,255,255,0.55); 
  text-decoration: none; 
  font-size: 14px; 
  transition: color 0.2s; 
}

.foot-col ul a:hover { 
  color: var(--gold-light); 
}

.foot-socs { 
  display: flex; 
  gap: 10px; 
  margin-top: 20px; 
}

.foot-soc { 
  width: 36px; 
  height: 36px; 
  border-radius: 8px; 
  background: rgba(255,255,255,0.07); 
  border: 1px solid rgba(255,255,255,0.1); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  transition: background 0.2s, border-color 0.2s; 
}

.foot-soc:hover { 
  background: rgba(201,169,74,0.2); 
  border-color: rgba(201,169,74,0.4); 
}

.foot-soc svg { 
  width: 16px; 
  height: 16px; 
}

.foot-bot { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding-top: 28px; 
  font-size: 13px; 
  flex-wrap: wrap; 
  gap: 12px; 
}

.foot-bot a { 
  color: var(--gold-light); 
  text-decoration: none; 
}

/* WhatsApp Float */
.wa-float { 
  position: fixed; 
  bottom: 28px; 
  right: 28px; 
  z-index: 998; 
  width: 58px; 
  height: 58px; 
  border-radius: 50%; 
  background: #25D366; 
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  transition: transform 0.2s, box-shadow 0.2s; 
  animation: waBounce 2.5s 2s ease infinite; 
}

.wa-float:hover { 
  transform: scale(1.1); 
  box-shadow: 0 8px 28px rgba(37,211,102,0.55); 
  animation: none; 
}

@keyframes waBounce { 
  0%,100% { transform:scale(1); } 
  50% { transform:scale(1.07); } 
}

.wa-tip { 
  position: absolute; 
  right: 68px; 
  background: var(--navy); 
  color: var(--white); 
  font-size: 13px; 
  font-weight: 500; 
  padding: 6px 14px; 
  border-radius: 8px; 
  white-space: nowrap; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.2s; 
}

.wa-tip::after { 
  content:''; 
  position:absolute; 
  right:-6px; 
  top:50%; 
  transform:translateY(-50%); 
  border:6px solid transparent; 
  border-right:none; 
  border-left-color:var(--navy); 
}

.wa-float:hover .wa-tip { 
  opacity: 1; 
}

/* Responsive */
@media(max-width:900px){ 
  .foot-top { grid-template-columns: 1fr 1fr; } 
}

@media(max-width:768px){
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 70px; 
    left: 0; 
    right: 0; 
    background: var(--navy); 
    padding: 20px 5%; 
    gap: 1rem; 
    border-bottom: 1px solid rgba(201,169,74,0.2); 
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}