body {
  margin: 0;
  background: #0b1220;
  color: #e5e7eb;
  font-family: Arial;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(10px);}
  to {opacity:1; transform:translateY(0);}
}

/* ================= NAVBAR ================= */
.navbar {
  display:flex;
  justify-content:space-between;
  padding:18px;
  background:#111a2e;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-links {
  display:flex;
  gap:18px;
}

.nav-links a {
  color:#cbd5e1;
  text-decoration:none;
}

/* ================= HERO ================= */
.hero {
  position:relative;
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-video {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.75);
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.hero-content {
  z-index:2;
}

.hero h1 {
  font-size:42px;
}

/* ================= BUTTONS ================= */
.btn {
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  display:inline-flex;
}

.primary {
  background:linear-gradient(135deg,#4f46e5,#3b82f6);
  color:white;
}

/* FIX CALL BUTTON */
.hero .call-btn {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  box-shadow: 0 10px 25px rgba(16,185,129,0.35);
}

/* ================= CARDS ================= */
.service-cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.card {
  position:relative;
  border-radius:14px;
  overflow:hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform:scale(1.08);
}

.card::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  opacity:0;
  transition:0.3s;
}

.card:hover::after {
  opacity:1;
}

/* ================= PRICING ================= */
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.price-card {
  background:#111a2e;
  padding:20px;
  border-radius:14px;
  text-align:center;
}

.featured {
  border:2px solid #3b82f6;
}

/* ================= CONTACT ================= */
.contact {
  background: #0b1220;
}

.contact-map-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.contact-form-wrapper {
  background: #111a2e;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #1f2a44;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0b1220;
  color: white;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 16px;
}

/* ================= LOADER ================= */
.loader {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
}

.loader::after {
  content:"";
  width:40px;
  height:40px;
  border:4px solid #333;
  border-top:4px solid #3b82f6;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin {
  to {transform:rotate(360deg);}
}

.hidden {display:none;}

/* ================= TOAST ================= */
.toast {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#111a2e;
  padding:12px;
  border-radius:10px;
  opacity:0;
  transition:0.3s;
}

.toast.show {
  opacity:1;
}

/* ================= MOBILE NAV (FIXED - ONLY ONCE) ================= */
.hamburger {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #111a2e;
    flex-direction: column;
    padding: 80px 20px;
    gap: 18px;
    transition: right 0.35s ease;
    z-index: 10000;
    border-left: 1px solid #1f2a44;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}
/*  */

.footer-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social a {
  background: rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.25s ease;
  backdrop-filter: blur(8px);
  color: white;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255,255,255,0.18);
}

/*  */

/* ================= FOOTER (SAAS 3 COLUMN) ================= */

.footer {
  background: #0b1220;
  padding: 60px 20px 20px;
  border-top: 1px solid #1f2a44;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.footer.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.footer-col p {
  margin: 6px 0;
  color: #cbd5e1;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  background: rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255,255,255,0.18);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #64748b;
  font-size: 14px;
}
/*  */

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/*  */

/* ================= CALL FLOAT (MOBILE ONLY) ================= */

.call-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 12px 14px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(16,185,129,0.35);
}

.call-float:hover {
  transform: scale(1.05);
}

/* show only mobile */
@media (max-width: 768px) {
  .call-float {
    display: block;
  }
}
/*  */
@media (max-width: 768px) {

  body {
    padding: 0;
  }

  .section-box {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero {
    height: auto;
    min-height: 70vh;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }
}
/*  */
.card {
  position: relative;
}

.card-overlay {
  pointer-events: none;
}

.card-overlay a {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}
/*  */

/* ================= BOOKING BUTTON ANIMATION ================= */
.btn.primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn.primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn.primary:hover {
  transform: scale(1.05);
}
/*  */
