:root {
  --bg: #0b0b0b;
  --bg-soft: #111;
  --white: #fff;
  --gray: #b5b5b5;
  --green: #6cc04a;
  --border: rgba(255, 255, 255, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  color: var(--gray);
  font-size: 14px;
}

/* BUTTONS */
.btn-primary {
  background: var(--green);
  color: #000;
  padding: 14px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.hero-title-main {
  display: block;
}

.hero-title-sub {
  display: block;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-line {
  display: block;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.9)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 6%;
}
/* ================= FLOATING ACTION BUTTONS ================= */

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 999;
}

/* Base FAB */
.fab {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;

  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

/* Call button */
.fab.call {
  color: #fff;
}

/* WhatsApp button */
.fab.whatsapp {
  color: #fff;
}

/* Hover (desktop only feel) */
.fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

/* Active tap (mobile feel) */
.fab:active {
  transform: scale(0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ================= MOBILE SAFETY ================= */

/* Keep above iOS bottom bars */
@media (max-width: 480px) {
  .floating-actions {
    right: 16px;
    bottom: 80px;
  }
}
/* FAB ICON */
.fab-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
/* WhatsApp – Green */
.fab.whatsapp {
  background: rgba(37, 211, 102, 0.18); /* WhatsApp green */
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25d366;
}

/* Call – Blue */
.fab.call {
  background: rgba(0, 122, 255, 0.18); /* Apple blue */
  border: 1px solid rgba(0, 122, 255, 0.45);
  color: #007aff;
}

/* Hover polish */
.fab.whatsapp:hover {
  background: rgba(37, 211, 102, 0.28);
}

.fab.call:hover {
  background: rgba(0, 122, 255, 0.28);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: var(--gray);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 40px 6%;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

/* ================= SERVICES ================= */

.services {
  padding: 100px 6%;
}

.services h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 48px;
}

/* GRID */
.service-grid {
  display: grid;
  gap: 28px;
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet + Desktop: 2 x 2 */
@media (min-width: 641px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= CARD ================= */

.card {
  position: relative;
  height: 320px;
  border-radius: 26px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
  padding: 28px;

  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;

  transition: transform 0.5s ease, background-size 0.6s ease;
}

/* Cinematic overlay */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  z-index: 1;
  transition: background 0.5s ease;
}

/* Glass label */
.card span {
  position: relative;
  z-index: 2;

  padding: 10px 18px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Hover magic */
.card:hover {
  transform: translateY(-10px);
  background-size: 120%;
}

.card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
}

/* ================= MOBILE POLISH ================= */

@media (max-width: 640px) {
  .card {
    height: 260px;
    padding: 22px;
  }

  .card span {
    font-size: 14px;
  }
}
/* ================= LOCATION ================= */

.location {
  padding: 120px 6%;
  background: radial-gradient(circle at top, #121212, #0b0b0b);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.location h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.location p {
  color: var(--gray);
  max-width: 420px;
  line-height: 1.7;
}

/* Actions */
.location-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Map wrapper */
.map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

/* Soft inner glow */
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* Map iframe */
.map iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
}

/* Hover reveal */
.map:hover iframe {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .location {
    grid-template-columns: 1fr;
    padding: 90px 6%;
  }

  .map iframe {
    height: 300px;
  }

  .location h2 {
    text-align: center;
  }

  .location p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .location-actions {
    justify-content: center;
  }
}
/* ================= LOCATION BUTTONS ================= */

.location-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Base button */
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease, border-color 0.25s ease;
}

/* Icon */
.location-btn .icon {
  font-size: 16px;
  line-height: 1;
}

/* Primary (Apple-style solid) */
.location-btn.primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Outline (secondary Apple CTA) */
.location-btn.outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #fff;
}

/* Hover (desktop only feel) */
.location-btn:hover {
  transform: translateY(-2px);
}

/* Active / tap (important for mobile premium feel) */
.location-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ================= RESPONSIVE ================= */

/* Tablets & below */
@media (max-width: 900px) {
  .location-actions {
    justify-content: center;
  }
}

/* Mobile: full-width buttons */
@media (max-width: 480px) {
  .location-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* ================= CTA ================= */
.cta {
  padding: 120px 6%;
  background: linear-gradient(to bottom, #0b0b0b, #111);
}

.cta-wrapper {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 60px;
}

/* TEXT */
.cta-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-text p {
  color: var(--gray);
  max-width: 420px;
}

/* FORM */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form input,
.cta-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: white;
  font-size: 14px;
  outline: none;
}

.cta-form textarea {
  min-height: 100px;
  resize: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #888;
}

/* Focus state (very premium) */
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--green);
}

/* Button */
.cta-form button {
  margin-top: 10px;
  align-self: flex-start;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-text p {
    margin: auto;
  }

  .cta-form button {
    width: 100%;
  }
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

/* MOBILE */
@media (max-width: 900px) {
  .navbar {
    position: relative;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .location {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 300px;
  }
}
/* ================= WHY CHOOSE US ================= */

.why-choose {
  padding: 96px 6%;
}

.why-header {
  max-width: 620px;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.why-header p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.why-card {
  padding: 36px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);

  transition: transform 0.35s ease, background 0.35s ease;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.why-header {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.why-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Subtle hover (Apple-approved) */
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
