/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0b0f14;
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.primary:hover {
  background: #1e40af;
}

.btn.secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.btn.secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* ================= HEADER ================= */
.header {
  background: #0b0f14;
  padding: 20px 0;
  border-bottom: 1px solid #1f2933;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.nav a {
  color: #cbd5f5;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.nav .btn {
  margin-left: 35px;
}

/* ================= HERO ================= */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #0b0f14);
}

.hero-content {
  max-width: 750px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 35px;
}

.hero-buttons .btn {
  margin-right: 15px;
}

/* ================= METRICS ================= */
.metrics {
  background: #020617;
  padding: 60px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.metrics-grid strong {
  font-size: 32px;
  color: #2563eb;
}

.metrics-grid span {
  display: block;
  font-size: 14px;
  color: #94a3b8;
}

/* ================= SERVICES ================= */
.services {
  padding: 90px 0;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #020617;
  padding: 35px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  color: #94a3b8;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ================= VENUES ================= */
.venues-preview {
  padding: 90px 0;
  background: #020617;
  text-align: center;
}

.section-desc {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #94a3b8;
}

.venue-links a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  background: #0b0f14;
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.venue-links a:hover {
  background: #2563eb;
  color: #fff;
}

.center-btn {
  margin-top: 40px;
}

/* ================= WHY US ================= */
.why-us {
  padding: 90px 0;
}

.why-us h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-grid h4 {
  color: #fff;
  margin-bottom: 10px;
}

.why-grid p {
  color: #94a3b8;
}

/* ================= CTA ================= */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  text-align: center;
}

.cta h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 15px;
}

.cta p {
  color: #e0e7ff;
  margin-bottom: 30px;
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #64748b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-grid,
  .why-grid,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .why-grid,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form select {
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
}

.contact-form button {
  margin-top: 10px;
}


/* ================= SERVICE PAGE LAYOUT ================= */

.service-hero {
  padding: 100px 20px 80px;
  background: linear-gradient(180deg, #0b0f1a, #020617);
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-hero p {
  max-width: 800px;
  font-size: 18px;
  opacity: 0.9;
}

.service-section {
  padding: 80px 20px;
}

.service-section.dark {
  background: #020617;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #0b0f1a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-process div {
  padding: 25px;
  border-left: 3px solid #2563eb;
  background: rgba(255,255,255,0.02);
}

.service-cta {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(180deg, #020617, #0b0f1a);
}

.service-cta h2 {
  margin-bottom: 20px;
}

.service-cta p {
  margin-bottom: 30px;
  opacity: 0.9;
}





