
:root {
  --primary: #ff7a00;
  --secondary: #f2c94c;
  --dark: #0b1b2b;
  --light: #ffffff;
  --accent: #e85d75;
  --mint: #3ecf8e;
  --bg-gradient: linear-gradient(135deg, #ff7a00 0%, #f2c94c 50%, #e85d75 100%);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--dark);
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(11,27,43,0.6);
  color: var(--light);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .2s ease, background .2s ease;
}
.nav-links a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.18); }

/* Hero with video background */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--light);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,27,43,0.6) 0%, rgba(11,27,43,0.4) 50%, rgba(11,27,43,0.85) 100%);
  z-index: -1;
}
.hero .content {
  padding: 0 24px;
  max-width: 1100px;
}
.badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 16px 0 0;
}
.badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.cta {
  margin-top: 22px;
  display: inline-flex;
  gap: 12px;
}
.btn {
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-primary {
  background: var(--bg-gradient);
  color: var(--dark);
  box-shadow: 0 10px 24px rgba(255,122,0,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn:hover { transform: translateY(-2px); }

/* Sections */
.section {
  padding: 80px 20px;
  background: #fff;
}
.section.alt { background: radial-gradient(1200px 600px at 20% 10%, rgba(255,122,0,0.12), transparent 60%), radial-gradient(900px 400px at 80% 50%, rgba(242,201,76,0.18), transparent 60%); }
.container { max-width: 1200px; margin: 0 auto; }
.section h2 {
  font-size: 42px;
  margin: 0 0 14px 0;
}
.lead { font-size: 18px; opacity: .8; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(11,27,43,0.06);
}
.card .thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #eee;
  margin-bottom: 12px;
}

/* Gallery page */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 26px;
}
.filters button {
  border: 1px solid rgba(11,27,43,0.2);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.filters button.active { background: var(--dark); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-grid .item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-grid .item:hover::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 700;
}
@media (max-width: 990px) { .grid-3 { grid-template-columns: 1fr 1fr; } .gallery-grid { grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: repeat(2, 1fr);} }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox img { max-width: 90vw; max-height: 90vh; }
.lightbox.show { display: flex; }
.lightbox .close, .lightbox .prev, .lightbox .next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: #fff; background: rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  padding: 10px 14px; border-radius: 12px;
}
.lightbox .close { top: 20px; right: 20px; transform: none; }
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

/* Forms */
.form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11,27,43,0.2);
  font-size: 16px;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form .row { grid-template-columns: 1fr; } }

footer {
  background: var(--dark);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}
footer a { color: #fff; text-decoration: underline; }
