:root {
  --black: #ffffff;
  --dark: #f6f7f9;
  --card: #ffffff;
  --border: #e5e7eb;
  --green: #16a34a;
  --green-light: #22c55e;
  --green-dim: rgba(22, 163, 74, .12);
  --red: #b91c1c;
  --white: #0f172a;
  --muted: #334155;
  --accent: #b91c1c;
  --topbar-h: 36px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── LOADING SCREEN ───────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 80px; height: 80px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  margin-top: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── NAVBAR ───────────────────────────────────────────── */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 18px; color: var(--muted); }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-btn {
  padding: 4px 13px; border-radius: 3px; font-size: 11px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.topbar-btn-customer { background: var(--green-dim); color: var(--green); border: 1px solid var(--green); }
.topbar-btn-customer:hover { background: var(--green); color: var(--black); box-shadow: 0 0 12px var(--green-dim); }
.topbar-btn-admin { background: rgba(15, 23, 42, .06); color: var(--white); border: 1px solid rgba(15, 23, 42, .18); }
.topbar-btn-admin:hover { background: rgba(15, 23, 42, .10); color: var(--white); }

nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 10px 30px rgba(15, 23, 42, .10); }
#topbar.scrolled { background: rgba(255,255,255,.98); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--green); object-fit: cover; }
.nav-brand { font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--white); line-height: 1.2; }
.nav-brand span { color: var(--green); display: block; font-size: 9px; letter-spacing: 3px; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; transition: color .2s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:2px; background:var(--green); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.lang-btn {
  background: var(--border); border: 1px solid var(--green); color: var(--green);
  padding: 6px 14px; border-radius: 4px; font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 13px; cursor: pointer; letter-spacing: 1px; transition: all .2s;
}
.lang-btn:hover { background: var(--green); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 130px 5% 60px; position: relative; overflow: hidden; color: #ffffff;
}
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-repeat: no-repeat; background-color: #0b1220;
  opacity: 0; transform: scale(1.03); transition: opacity 1s ease, transform 1.2s ease;
  filter: saturate(1) contrast(1.05) brightness(1);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: none; pointer-events: none; }
.hero-dots { position: absolute; bottom: 28px; left: 5%; display: flex; gap: 8px; z-index: 3; }
.hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); cursor: pointer; transition: all .3s; }
.hero-dots span.active { background: var(--green); width: 24px; border-radius: 4px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .4; animation: gridMove 20s linear infinite;
}
@keyframes gridMove { to { background-position: 60px 60px; } }
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-dim) 0%, transparent 70%);
  top: -100px; right: -100px; animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-dim);
  border: 1px solid var(--green); border-radius: 40px; padding: 6px 16px; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; color: var(--green); text-transform: uppercase;
  margin-bottom: 24px; animation: fadeInDown .8s ease both;
}
.hero-tag::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--green); animation:pulse 1.5s infinite; }
.hero-title { font-family: 'Orbitron', sans-serif; font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 10px; animation: fadeInDown .8s .1s ease both; }
.hero-title .green { color: var(--green); }
.hero-title .red { color: var(--red); }
.hero-subtitle { font-family: 'Orbitron', sans-serif; font-size: clamp(14px, 2vw, 20px); font-weight: 400; color: rgba(255,255,255,.78); letter-spacing: 2px; margin-bottom: 30px; animation: fadeInDown .8s .2s ease both; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.84); max-width: 600px; margin-bottom: 40px; animation: fadeInDown .8s .3s ease both; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInDown .8s .4s ease both; }
.btn-primary {
  background: var(--green); color: var(--black); padding: 14px 32px; border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; border: 2px solid var(--green); cursor: pointer;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: transparent; color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 30px var(--green-dim); }
.btn-outline {
  background: transparent; color: #ffffff; padding: 14px 32px; border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,.45); cursor: pointer;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: #ffffff; transform: translateY(-2px); }
.btn-primary:disabled, .btn-outline:disabled { opacity: .6; cursor: not-allowed; transform:none !important; }

/* ── SLIDER ───────────────────────────────────────────── */
.slider-section { position: relative; height: 420px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .8s ease; display: flex; align-items: flex-end; justify-content: flex-start; padding: 40px 5%; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: none; }
.slide-label { position: relative; z-index: 2; font-family: 'Orbitron', sans-serif; font-size: clamp(20px, 3vw, 36px); font-weight: 700; color: #ffffff; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.slide-label span { display: block; color: var(--green); font-size: 60%; letter-spacing: 3px; font-weight: 400; margin-bottom: 6px; }
.slider-dots { position: absolute; bottom: 20px; right: 5%; display: flex; gap: 8px; z-index: 10; }
.slider-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .3s; }
.slider-dots span.active { background: var(--green); width: 24px; border-radius: 4px; }
.slide-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 120px; }
.slide-icon img { width: 100%; height: 100%; object-fit: cover; opacity: .92; filter: saturate(.98) contrast(1.03) brightness(.98); transform: scale(1.03); }

/* ── SECTIONS ─────────────────────────────────────────── */
section { padding: 100px 5%; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border: 1px solid var(--green);
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.section-tag::before { content:''; width:30px; height:2px; background:var(--green); }
.section-title { font-family: 'Orbitron', sans-serif; font-size: clamp(26px, 3.5vw, 46px); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.section-desc { color: var(--muted); font-size: 17px; font-weight: 500; max-width: 600px; line-height: 1.85; }
.page-hero { padding: 150px 5% 70px; background: var(--dark); border-bottom: 1px solid var(--border); }

/* ── ABOUT ────────────────────────────────────────────── */
#about { background: var(--dark); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-logo-wrap { width: 260px; height: 260px; border-radius: 50%; border: 2px solid var(--green); padding: 6px; position: relative; animation: rotateBorder 10s linear infinite; }
.about-logo-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; border: 4px solid var(--border); }
.about-logo-inner img { width:100%; height:100%; object-fit:cover; }
@keyframes rotateBorder { 0%{box-shadow:0 0 0 0 var(--green-dim)} 50%{box-shadow:0 0 40px 10px var(--green-dim)} 100%{box-shadow:0 0 0 0 var(--green-dim)} }
.about-ring { position: absolute; border: 1px dashed var(--green); border-radius: 50%; opacity: .3; animation: spinSlow 20s linear infinite; }
.about-ring:nth-child(1) { width:320px; height:320px; }
.about-ring:nth-child(2) { width:380px; height:380px; animation-direction:reverse; animation-duration:30s; }
@keyframes spinSlow { to{transform:rotate(360deg)} }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.stat-box { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px; transition: border-color .3s; }
.stat-box:hover { border-color: var(--green); }
.stat-number { font-family: 'Orbitron', sans-serif; font-size: 36px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.expertise-list { list-style: none; margin-top: 24px; }
.expertise-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--muted); transition: color .2s; }
.expertise-list li:hover { color: var(--white); }
.expertise-list li::before { content: '✓'; width: 24px; height: 24px; background: var(--green-dim); border: 1px solid var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* ── SERVICES ─────────────────────────────────────────── */
#services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 60px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden; transition: all .3s; cursor: pointer; }
.service-card::before { content: ''; position: absolute; top:0; left:0; right:0; height: 3px; background: linear-gradient(90deg, var(--green), transparent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15, 23, 42, .12); }
.service-card:hover::before { transform: scaleX(1); }
.service-thumb { width: 100%; height: 160px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); margin-bottom: 18px; display: block; background: var(--dark); }
.service-title { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 1px; }
.service-list { list-style: none; }
.service-list li { font-size: 15px; font-weight: 500; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '→'; color: var(--green); font-size: 12px; }
.service-list li:last-child { border-bottom: none; }

/* ── WHY US ───────────────────────────────────────────── */
#why { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 60px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; transition: all .3s; }
.why-card:hover { border-color: var(--green); transform: translateY(-4px); }
.why-icon { font-size: 48px; margin-bottom: 16px; }
.why-title { font-family: 'Rajdhani', sans-serif; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── DUKA / SHOP ──────────────────────────────────────── */
#shop-section { background: var(--black); }
.shop-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 10px; }
.shop-filter button {
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.shop-filter button:hover { border-color: var(--green); color: var(--green); }
.shop-filter button.active { background: var(--green); color: var(--black); border-color: var(--green); }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 30px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .3s; display:flex; flex-direction:column; }
.product-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15, 23, 42, .12); }
.product-thumb { width: 100%; height: 170px; object-fit: cover; background: var(--dark); display:block; }
.product-body { padding: 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-cat { font-size: 11px; letter-spacing:1px; text-transform:uppercase; color: var(--green); font-weight:700; }
.product-name { font-family:'Rajdhani', sans-serif; font-size: 18px; font-weight:700; color: var(--white); }
.product-desc { font-size: 13px; color: var(--muted); line-height:1.6; flex:1; }
.product-price { font-family:'Orbitron', sans-serif; font-size: 18px; font-weight:800; color: var(--green); margin-top:6px; }
.product-actions { padding: 0 20px 20px; }
.product-actions .btn-primary, .product-actions .btn-outline { width:100%; justify-content:center; padding:11px; font-size:13px; }

/* ── GALLERY ──────────────────────────────────────────── */
#gallery-section { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin-top: 50px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; aspect-ratio: 4/3; background: var(--dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display:block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute; left:0; right:0; bottom:0; padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff; font-size: 13px; font-weight: 600;
}
.gallery-empty { color: var(--muted); margin-top: 40px; text-align: center; }
.lightbox { position: fixed; inset:0; background: rgba(0,0,0,.9); z-index: 3000; display:none; align-items:center; justify-content:center; padding: 5%; }
.lightbox.open { display:flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 24px; right: 5%; color:#fff; font-size: 32px; cursor: pointer; background:none; border:none; }

/* ── BOOKING ──────────────────────────────────────────── */
#booking-section { background: var(--dark); border-top: 1px solid var(--border); }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 36px; max-width: 700px; margin-top: 50px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: 15px; background: #fff; color: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 600; display:none; }
.form-alert.success { display:block; background: var(--green-dim); border: 1px solid var(--green); color: var(--green); }
.form-alert.error { display:block; background: rgba(185,28,28,.1); border: 1px solid var(--red); color: var(--red); }

/* ── CONTACT ──────────────────────────────────────────── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 24px; text-decoration: none; color: inherit; transition: all .2s; }
.contact-item:hover { border-color: var(--green); transform: translateX(4px); }
.contact-item-icon { width: 44px; height: 44px; background: var(--green-dim); border: 1px solid var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.contact-item-text span { font-size: 14px; color: var(--muted); }
.map-placeholder { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 34px; min-height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; font-size: 15px; position: relative; overflow: hidden; }
.map-placeholder.has-embed { padding: 0; gap: 0; align-items: stretch; justify-content: stretch; }
.map-embed { width: 100%; height: 300px; border: 0; display: block; }
.map-embed-actions { padding: 14px; border-top: 1px solid var(--border); background: var(--card); display: flex; justify-content: center; }

/* ── CONTACT FORM (kwenye home) ───────────────────────── */
.contact-form-wrap { margin-top: 60px; }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--green); }
.footer-title { font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--white); }
.footer-title span { display: block; font-size: 9px; color: var(--green); letter-spacing: 3px; font-weight: 400; }
.footer-about { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-heading { font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--green); text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-links li span { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all .2s; text-decoration: none; }
.social-btn:hover { border-color: var(--green); background: var(--green-dim); }

/* ── WHATSAPP FLOAT ───────────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: all .2s; animation: floatIn 1s 2s ease both;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
@keyframes floatIn { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ── CALL NOW (MOBILE) ────────────────────────────────── */
#call-now {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--green); color: var(--black); font-family: 'Rajdhani', sans-serif; font-weight: 800;
  font-size: 16px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  padding: 16px; text-align: center; border-top: 2px solid rgba(0,0,0,.2);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ───────────────────────────────────────────── */
@media(max-width: 900px) {
  #topbar { height: auto; flex-direction: column; padding: 8px 4%; gap: 6px; }
  .topbar-left { gap: 12px; flex-wrap: wrap; }
  .nav-links {
    display: flex; position: fixed; top: calc(var(--topbar-h) + 70px); left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px); flex-direction: column;
    gap: 0; padding: 0; border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: max-height .35s ease, opacity .25s ease, transform .35s ease;
  }
  .nav-links.open { max-height: 80vh; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 16px 5%; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .slider-section { height: 340px; }
  section { padding: 80px 5%; }
  #call-now { display: block; }
  body { padding-bottom: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media(max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  #hero { padding: 116px 5% 44px; }
  .hero-title { font-size: clamp(30px, 8.5vw, 44px); }
  .hero-desc { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-thumb { height: 140px; }
  .slider-section { height: 280px; }
  .map-embed { height: 260px; }
  section { padding: 72px 5%; }
  .page-hero { padding: 130px 5% 50px; }
  #topbar { font-size: 11px; }
  .topbar-left span { width: 100%; }
  #whatsapp-float { width: 48px; height: 48px; right: 14px; bottom: 70px; font-size: 22px; }
  #call-now { font-size: 13px; padding: 14px 14px; }
}
