@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Space+Grotesk:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a10;
  --bg2: #0f0f18;
  --card: #13131e;
  --border: #1e1e2e;
  --primary: #f5c518;
  --primary-dark: #d4a812;
  --text: #f8f8f8;
  --muted: #8888aa;
  --destructive: #e63946;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,16,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-color: var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--primary);
  color: #0a0a10;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,16,0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #0a0a10; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.07); }

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(10,10,16,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 860px;
}
.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  color: var(--text);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 12px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── STRIP ── */
.strip {
  background: var(--primary);
  padding: 18px 0;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  color: #0a0a10;
}

/* ── SECTIONS ── */
section { padding: 80px 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 48px;
}
.section-center { text-align: center; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(245,197,24,0.4); }
.card-icon {
  background: rgba(245,197,24,0.1);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  transition: background 0.2s;
}
.card:hover .card-icon { background: rgba(245,197,24,0.2); }
.card h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PHOTO MOSAIC ── */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.mosaic-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.mosaic-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.mosaic-item:hover img { transform: scale(1.06); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--text);
  margin-bottom: 20px;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 36px; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col .text-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.two-col .text-content h2 { margin-bottom: 24px; }
.two-col .img-wrap {
  position: relative;
}
.two-col .img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}
.img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--primary);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(245,197,24,0.3);
}
.img-badge .name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: #0a0a10; }
.img-badge .sub { font-size: 13px; color: rgba(10,10,16,0.7); }

/* ── INFO BOX ── */
.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 48px;
}
.info-box .text-content p { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }

/* ── EQUIPMENT GRID ── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.equip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.equip-card:hover { border-color: rgba(245,197,24,0.4); }
.equip-card .eq-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.equip-card .eq-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.equip-card .eq-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); }

/* ── PRICING BOX ── */
.pricing-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(245,197,24,0.02));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 24px;
  padding: 48px;
}
.pricing-box .two-col { gap: 48px; }
.included-list { list-style: none; margin-top: 16px; }
.included-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.letop-box {
  margin-top: 20px;
  padding: 16px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius);
}
.letop-box .label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--destructive); margin-bottom: 6px; }
.letop-box p { font-size: 13px; color: var(--muted); }

/* ── GALLERY ── */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 24px 16px 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--text); }
.lightbox-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
}
.lightbox-nav button {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav button:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav .counter { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ── CONTACT INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-card .ic-icon {
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-card .ic-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.info-card .ic-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }

/* ── FORM ── */
.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.form-box h2 { margin-bottom: 6px; }
.form-box .form-sub { color: var(--muted); margin-bottom: 32px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}
select option { background: var(--bg2); }
textarea { resize: none; }
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}
.form-note a { color: var(--primary); font-weight: 700; }
.success-box {
  display: none;
  text-align: center;
  padding: 48px;
}
.success-box .success-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.success-box h2 { margin-bottom: 12px; }
.success-box p { color: var(--muted); font-size: 16px; }
.error-msg {
  display: none;
  color: var(--destructive);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.footer-logo .brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; }
.footer-logo .brand-sub { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }
.footer-tagline { color: var(--muted); font-size: 14px; max-width: 260px; }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-contact-item .fci-icon {
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 12px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(10,10,16,0.9));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .mosaic { grid-template-columns: 1fr; }
  .pricing-box { padding: 28px; }
  .form-box { padding: 24px; }
  .info-box { padding: 24px 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
