/* ===== Reset / Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #070407;
  --bg-alt: #100a07;
  --bg-elevated: rgba(20, 12, 8, 0.9);
  --accent: #f3b554;
  --accent-soft: rgba(243, 181, 84, 0.4);
  --accent-strong: #ffd47a;
  --text: #f6f1ea;
  --text-muted: #b59f87;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.9);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --nav-height: 80px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #20100a 0, #070407 55%, #030104 100%);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/* ===== Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #2b1206, #050103);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--accent-strong);
}

.loader-bar {
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  position: relative;
  overflow: hidden;
}

.loader-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: loaderSlide 1.2s infinite;
}

@keyframes loaderSlide {
  to {
    transform: translateX(100%);
  }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background: radial-gradient(circle at top left, #20100a 0, #070407 50%, #020103 100%);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(244, 197, 106, 0.08), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 40;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.96), rgba(12, 10, 25, 0.96));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
}

.nav-logo-icon {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.25s ease-out;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA button */
.nav-cta,
.btn {
  border-radius: var(--radius-pill);
  border: 0;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), opacity 0.2s;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #050509;
  box-shadow: 0 18px 40px rgba(244, 197, 106, 0.45);
}

.nav-cta:hover,
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 60px rgba(244, 197, 106, 0.6);
}

.btn.ghost {
  border: 1px solid rgba(244, 197, 106, 0.4);
  color: var(--accent-strong);
  background: transparent;
  backdrop-filter: blur(12px);
}

.btn.ghost:hover {
  background: rgba(244, 197, 106, 0.08);
}

.btn-full {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  background: #fff;
  border-radius: 999px;
  width: 100%;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 32px);
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 181, 84, 0.24), transparent 55%),
    linear-gradient(180deg, rgba(7, 3, 2, 0.85) 0%, #050103 80%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-bottom: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 106, 0.4);
  background: rgba(5, 5, 9, 0.6);
  backdrop-filter: blur(18px);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #41ffb3;
  box-shadow: 0 0 0 5px rgba(65, 255, 179, 0.32);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.2vw + 10px, 60px);
  line-height: 1.1;
  margin: 22px 0 16px;
  letter-spacing: 0.03em;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-size: 15px;
  max-width: 560px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta > div {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(4, 4, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: #72728a;
}

.meta-value {
  font-size: 12px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--accent-strong), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  height: 30%;
  background: white;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  80% {
    transform: translateY(250%);
    opacity: 0;
  }
  100% {
    transform: translateY(250%);
    opacity: 0;
  }
}

/* ===== Sections ===== */
.section-split .section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}

.section-label h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 10px 0 0;
}

.section-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.stat {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(5, 5, 15, 0.8);
  border: 1px solid rgba(244, 197, 106, 0.25);
}

.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-strong);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.section-header {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

/* Label kicker */
.label-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.label-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  opacity: 0.8;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(243, 181, 84, 0.12), rgba(12, 7, 4, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast), background 0.3s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(244, 197, 106, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 197, 106, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(5, 5, 15, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.icon-gold {
  fill: var(--accent-strong);
}

.service-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card li::before {
  content: "•";
  color: var(--accent-strong);
  font-size: 14px;
}

/* ===== Reel ===== */
.reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.reel-copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.reel-highlights {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.reel-media {
  position: relative;
}

.reel-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(244, 197, 106, 0.4);
  box-shadow: var(--shadow-soft);
}

.reel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(244, 197, 106, 0.2), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.reel-frame-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top, rgba(244, 197, 106, 0.2), transparent 55%);
  opacity: 0.4;
  filter: blur(12px);
}

.reel-frame iframe {
  width: 100%;
  height: 300px;
  display: block;
}

.reel-caption {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-cards {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 5, 15, 0.92);
  font-size: 13px;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  display: block;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 197, 106, 0.5);
  background: radial-gradient(circle at top left, rgba(244, 197, 106, 0.2), rgba(5, 5, 15, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 65%);
  mix-blend-mode: soft-light;
  opacity: 0.3;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-field label {
  font-size: 12px;
  color: #dedee6;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 13px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 15, 0.9);
  color: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

input::placeholder,
textarea::placeholder {
  color: #5e5e78;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(244, 197, 106, 0.5);
  background: rgba(5, 5, 18, 0.95);
}

.form-message {
  font-size: 12px;
  margin-top: 8px;
}

/* ===== Footer ===== */
.footer {
  padding: 18px 0 24px;
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #111221, #050509);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-right a {
  color: var(--accent-strong);
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* ===== Animations: scroll-in (AOS-like) ===== */
.aos-fade-up,
.aos-fade-right,
.aos-fade-left {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--transition-med), transform 0.7s var(--transition-med);
}

.aos-fade-right {
  transform: translateX(-14px);
}

.aos-fade-left {
  transform: translateX(14px);
}

.aos-animate {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Delay attribute */
[data-delay="0.1"] {
  transition-delay: 0.08s;
}
[data-delay="0.2"] {
  transition-delay: 0.16s;
}
[data-delay="0.3"] {
  transition-delay: 0.24s;
}
[data-delay="0.4"] {
  transition-delay: 0.32s;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-split .section-grid,
  .reel-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .navbar {
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.96), rgba(12, 10, 25, 0.96));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    background: radial-gradient(circle at top, #141529, #050509);
    flex-direction: column;
    padding: 18px 24px 24px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease-out, opacity 0.28s ease-out;
  }

  .nav-links.open {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    text-align: left;
  }

  .hero-title {
    font-size: clamp(32px, 4vw + 10px, 46px);
  }

  .hero-meta {
    gap: 10px;
  }

  .hero-meta > div {
    padding: 8px 10px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding: 18px 16px 16px;
  }

  .reel-frame iframe {
    height: 230px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}