/* =========================
   1. RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

::selection {
  background: #00ffe5;
  color: #000;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: rgba(255, 255, 255, 0.06);
  --gold: #d4af37;
  --silver: #c0c0c0;
  --cyan: #00ffe5;
  --blue: #3a86ff;
  --glow-cyan: 0 0 20px rgba(0, 255, 229, 0.6);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   2. PRELOADER
========================= */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader {
  width: 50px; height: 50px;
  border: 5px solid rgba(255,255,255,0.1);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================
   3. HEADER & NAVBAR
========================= */
#header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cyan);
}
.navbar .logo i { font-size: 1.8rem; }
.navbar .logo h2 { font-size: 1.2rem; color: #fff; line-height: 1.1; }
.navbar .logo span { font-size: 0.75rem; color: var(--silver); display: block; }
.navbar ul { display: flex; gap: 25px; list-style: none; }
.navbar ul li a { text-decoration: none; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: 0.3s; }
.navbar ul li a:hover, .navbar ul li a.active { color: var(--cyan); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #000;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--glow-cyan);
  transition: 0.3s;
}
.call-btn:hover { transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #fff; transition: 0.3s; }

/* =========================
   4. HERO SECTION
========================= */
#hero {
  min-height: 85vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: 
    radial-gradient(circle at center, rgba(0, 255, 229, 0.15) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(20, 20, 20, 1) 100%);
  text-align: center;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-top { font-size: 0.95rem; color: var(--gold); margin-bottom: 15px; }
.hero h1 { font-size: 3.5rem; text-transform: uppercase; margin-bottom: 15px; font-weight: 800; line-height: 1.2; }
.hero h1 span { background: linear-gradient(90deg, var(--cyan), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 1.1rem; opacity: 0.8; max-width: 700px; margin: 0 auto 30px auto; line-height: 1.6; color: #eee; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; }

/* =========================
   5. BUTTONS & GENERAL SECTIONS
========================= */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn.primary { background: linear-gradient(90deg, var(--cyan), var(--blue)); color: #000; box-shadow: var(--glow-cyan); }
.btn.secondary { background: #25d366; color: #fff; box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
.btn:hover { transform: translateY(-3px); }

section { padding: 90px 0; position: relative; z-index: 1; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 10px; background: linear-gradient(90deg, #fff, var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
.section-subtitle { text-align: center; opacity: 0.6; margin-bottom: 50px; font-size: 1rem; }

/* =========================
   6. GRID & PREMIUM CARD SYSTEM
========================= */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.08); padding: 40px 30px; border-radius: 20px; transition: 0.3s ease; text-align: center; }
.card:hover { transform: translateY(-8px); border-color: var(--cyan); box-shadow: 0 15px 30px rgba(0, 255, 229, 0.1); }
.service-icon, .why-icon { font-size: 2.5rem; color: var(--cyan); margin-bottom: 20px; display: inline-flex; justify-content: center; align-items: center; width: 100%; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
.card p { font-size: 0.95rem; opacity: 0.7; line-height: 1.6; }

/* =========================
   7. ABOUT SECTION
========================= */
.about-container { display: flex; align-items: center; gap: 50px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); object-fit: cover; }
.about-content { flex: 1; }
.small-title { color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; font-weight: 600; }
.about-content h2 { font-size: 2.3rem; margin: 15px 0; font-weight: 700; }
.about-content p { opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.feature-item i { color: var(--cyan); }

/* =========================
   8. COUNTER SECTION
========================= */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: rgba(255,255,255,0.02); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.counter-box h2 { font-size: 2.8rem; color: var(--cyan); font-weight: 700; margin-bottom: 5px; }
.counter-box p { opacity: 0.7; font-size: 0.95rem; }

/* =========================
   9. GALLERY & REVIEWS
========================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { overflow: hidden; border-radius: 15px; height: 260px; border: 1px solid rgba(255,255,255,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.review-card { padding: 35px 25px; }
.review-card h4 { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }

/* =========================
   10. CONTACT & MAP & FOOTER
========================= */
.contact-container { display: flex; gap: 40px; }
.contact-info { flex: 1; text-align: left; }
.contact-info h2 { margin-bottom: 25px; font-size: 2rem; }
.contact-info p { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; }
.contact-info p i { color: var(--cyan); font-size: 1.3rem; }
.map { flex: 1.5; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: #111; }
.map iframe { width: 100%; height: 100%; min-height: 350px; border: none; }
.footer { background: #050505; padding: 45px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer h2 { color: var(--cyan); margin-bottom: 10px; font-size: 1.5rem; }
.footer p { opacity: 0.5; font-size: 0.9rem; margin-top: 5px; }

/* =========================
   11. FLOATING BUTTONS
========================= */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 999; transition: 0.3s; }
.floating-whatsapp:hover { transform: scale(1.08); }
#topBtn { position: fixed; bottom: 105px; right: 30px; background: var(--cyan); border: none; color: #000; width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.1rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
#topBtn.show { opacity: 1; visibility: visible; }
#topBtn:hover { transform: translateY(-3px); }

/* =========================
   12. RESPONSIVE DESIGN
========================= */
@media (max-width: 992px) {
  .grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container, .contact-container { flex-direction: column; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar ul { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .grid, .gallery-grid, .counter-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hero-buttons { flex-direction: column; padding: 0 20px; }
}