/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
  line-height: 1.6;
}

/* =========================
   COLORS
========================= */
:root {
  --accent: #f59e0b;
  --accent-soft: #ff8a3d;
  --bg-dark: #0b0b0b;
  --bg-card: #121212;
  --text-muted: #b5b5b5;
}

/* =========================
   HEADER
========================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

nav a {
  color: #e5e5e5;
  text-decoration: none;
  margin-left: 26px;
  font-size: 14px;
}

nav a:hover {
  color: var(--accent);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  padding: 120px 8% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* HERO IMAGE */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
}

/* =========================
   SERVICES
========================= */
.services {
 padding: 120px 8%;
  text-align: center;
 
}

.services h2 {
  font-size: 36px;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: 16px;
  text-align: center;
  transition: transform .3s ease, background .3s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: #1a1a1a;
}

/* =========================
   WHY SECTION (FINAL – CLEAN)
========================= */
.why-section {
  padding: 160px 8%;
  direction: ltr;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text {
  text-align: left;
}

.why-text h2 {
  font-size: 38px;
  margin-bottom: 28px;
}

.why-text ul {
  list-style: none;
}

.why-text li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-muted);
}

.why-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 18px;
}

/* WHY IMAGE */
.why-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 25px 50px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.04);
  filter: contrast(1.05) saturate(1.05);
  transition: transform .4s ease, box-shadow .4s ease;
}

.why-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,.6);
}


/* =========================
   CONTACT
========================= */
.contact-section {
  padding: 200px 8%;
  text-align: center;
}

.contact-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.process-section {
  padding: 120px 8%;
  background: #0f1115;
}

.process-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.process-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.process-number {
  color: #ff8a00;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}

.process-item h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.process-item p {
  opacity: .8;
  line-height: 1.6;
}





/* =========================
   ANIMATION
========================= */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-text {
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
nav a:first-child {
  opacity: 0.6;
}

nav a:first-child:hover {
  opacity: 1;
}


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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform .4s ease;
  z-index: 999;
}

.mobile-menu a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}

/* Active */
.mobile-menu.active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    display: none;
  }
}


/* =========================
   FOOTER – CRESTAY MEDIA
   ========================= */


.site-footer {
  background: #0f1115;
  padding: 80px 8% 32px;
  margin-top: 120px;
  color: #e5e7eb;
}

/* container */
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* left */
.site-footer .footer-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.site-footer .footer-left h3 span {
  color: var(--accent);
}

.site-footer .footer-left p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

/* right */
.site-footer .footer-right {
  display: flex;
  gap: 20px;
}

.site-footer .footer-right a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  position: relative;
  transition: color .3s ease;
}

.site-footer .footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}

.site-footer .footer-right a:hover {
  color: #ffffff;
}

.site-footer .footer-right a:hover::after {
  width: 100%;
}

/* bottom */
.site-footer .footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 6% 28px;
  }

  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .footer-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}
