@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1428;
  --gold: #d4a017;
  --white: #ffffff;
  --light: #f3f4f7;
  --text: #d8deea;
  --muted: #aeb8cc;
  --card: #101d36;
  --container: min(92vw, 1320px);
  --radius: 16px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 8% 10%, #1a2949, #0a1428 38%),
    radial-gradient(circle at 90% 90%, rgba(212, 160, 23, 0.18), transparent 40%),
    var(--navy);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 10vw, 120px) 0;
}

@media (max-width: 768px) {
  .section {
    padding: clamp(60px, 8vw, 80px) 0;
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--white);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}

.dual {
  display: inline-block;
}

.dual .gold {
  color: var(--gold);
}

.btn,
button.btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(120deg, #c89411, #e4bd4e);
  color: #111;
  box-shadow: 0 10px 26px rgba(212, 160, 23, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(10, 20, 40, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.logo span {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #eff4ff;
  opacity: 0.92;
}

.nav a.active,
.nav a:hover {
  color: var(--gold);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 330px;
  background: #0f1d37;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all var(--transition);
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 20, 40, 0.88), rgba(10, 20, 40, 0.5)),
    url('../../banner/banner.png') center/cover;
  z-index: -1;
}

.hero-content {
  max-width: 960px;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #eef2fb;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.55);
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
  margin: 26px 0;
}

.zigzag-item:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.zigzag-item:nth-child(even) .zigzag-media {
  order: 2;
}

.zigzag-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}

.zigzag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stagger {
  columns: 3 260px;
  column-gap: 20px;
}

.stagger .card {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.why-card {
  padding-top: 28px;
}

.why-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #111;
  background: linear-gradient(145deg, #efc65a, #d4a017);
  box-shadow: 0 12px 26px rgba(212, 160, 23, 0.35);
}

.why-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.timeline {
  position: relative;
  margin-left: 14px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-left: 34px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.package-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 18px;
}

.package-card {
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.price {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
}

.masonry {
  columns: 3 280px;
  column-gap: 18px;
}

.project-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1c35;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-media {
  position: relative;
  cursor: pointer;
}

.project-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition);
}

.project-card:hover .project-media img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.05), rgba(10, 20, 40, 0.9));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .overlay {
  opacity: 1;
}

.project-body {
  padding: 16px;
}

.filter-wrap {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--gold);
  color: #161616;
  background: var(--gold);
}

.load-more-wrap {
  text-align: center;
  margin-top: 22px;
}

.testimonial {
  position: relative;
}

.quote {
  font-size: 1.05rem;
}

.final-cta {
  text-align: center;
  padding: clamp(56px, 8vw, 86px) 24px;
  border-radius: 24px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.12), rgba(255, 255, 255, 0.03));
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(130deg, rgba(10, 20, 40, 0.93), rgba(10, 20, 40, 0.58)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1500&q=80') center/cover;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.map-card {
  padding: 26px;
}

.map-embed {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: min(62vh, 460px);
  border: 0;
}

.service-image-card {
  padding: 14px;
}

.service-banner-img {
  width: 100%;
  height: min(56vh, 420px);
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.float-call {
  background: linear-gradient(120deg, #c18b0a, #dfb443);
  color: #111;
}

.float-wa {
  background: #25d366;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1200;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 95vw);
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zigzag-item,
  .zigzag-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .zigzag-item:nth-child(even) .zigzag-media {
    order: 0;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: #0d1a31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav.open {
    max-height: 88vh;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 24px;
  }

  .nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav li:last-child {
    border-bottom: 0;
  }

  .nav a,
  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
  }

  .dropdown-menu {
    position: static;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    border-width: 0;
    transition: max-height var(--transition), padding var(--transition), margin var(--transition), border-color var(--transition);
  }

  .dropdown.open .dropdown-menu {
    max-height: 520px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-width: 1px;
  }

  .package-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 680px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }
}
