/* ============================================================
   ShinUrban — Event Management, Cambodia (ShinUrban.com)
   ============================================================ */
:root {
  --plum: #1d0d33;
  --plum-dark: #140823;
  --plum-mid: #2a1245;
  --coral: #ff416c;
  --orange: #ff7854;
  --amber: #ffb347;
  --grad: linear-gradient(100deg, #ff416c 0%, #ff7854 55%, #ffb347 100%);
  --ink: #2b2138;
  --muted: #6d6480;
  --bg: #ffffff;
  --bg-soft: #faf7fd;
  --radius: 16px;
  --shadow: 0 14px 44px rgba(29, 13, 51, 0.16);
  --font-head: 'Montserrat', 'Trebuchet MS', sans-serif;
  --font-body: 'Poppins', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 104px 0; }
.section-dark { background: var(--plum); color: #efe9f7; }
.center { text-align: center; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--plum); margin-bottom: 18px; }
.section-dark h2 { color: #ffffff; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--coral); margin-bottom: 14px;
}
.section-sub { max-width: 620px; margin: 0 auto 26px; color: var(--muted); }
.section-dark .section-sub { color: #bfaed6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 36px; border-radius: 60px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn-grad { background: var(--grad); color: #ffffff; box-shadow: 0 10px 30px rgba(255, 65, 108, 0.45); }
.btn-grad:hover { box-shadow: 0 16px 38px rgba(255, 65, 108, 0.6); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: #ffffff; }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-block { width: 100%; border: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px 0; transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 54px; width: auto; }
.navbar.scrolled { background: rgba(20, 8, 35, 0.96); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(0,0,0,0.35); padding: 8px 0; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: #ffffff;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--grad); color: #ffffff !important;
  padding: 11px 26px; border-radius: 50px; font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: #ffffff; border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,65,108,0.28), transparent 55%),
    linear-gradient(100deg, rgba(20,8,35,0.94) 0%, rgba(20,8,35,0.75) 45%, rgba(20,8,35,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; color: #ffffff; padding: 150px 0 100px; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.34em; color: var(--amber); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); font-weight: 900; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.01em; }
.hero-sub { max-width: 560px; font-size: 1.06rem; color: #d9cdea; margin-bottom: 38px; font-weight: 300; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,0.55); border-radius: 20px; z-index: 2;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 10px; margin-left: -2px;
  background: var(--amber); border-radius: 2px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(16px); } }

/* ---------- Stats ---------- */
.stats { background: var(--plum-dark); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num, .stat-plus {
  font-family: var(--font-head); font-size: 2.7rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { color: #a893c4; font-size: 0.9rem; margin-top: 6px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media > img:first-child { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-small {
  position: absolute; bottom: -36px; right: -26px; width: 46%;
  border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid #ffffff;
}
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-points { list-style: none; margin: 22px 0 8px; }
.about-points li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--ink); }
.check {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,65,108,0.14); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 3px;
}

.ceo-card {
  display: flex; align-items: center; gap: 18px; margin-top: 28px;
  background: var(--bg-soft); border: 1.5px solid #eee4f8;
  border-radius: var(--radius); padding: 20px 24px; max-width: 430px;
}
.ceo-avatar {
  flex: 0 0 auto; width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
}
.ceo-card strong { display: block; font-family: var(--font-head); color: var(--plum); }
.ceo-card span { display: block; font-size: 0.82rem; color: var(--muted); margin: 2px 0 4px; }
.ceo-card a { font-size: 0.86rem; color: var(--coral); font-weight: 500; }
.ceo-card a:hover { text-decoration: underline; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 38px 30px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.09); border-color: rgba(255,120,84,0.55); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255,65,108,0.3), rgba(255,179,71,0.12));
  display: flex; align-items: center; justify-content: center; color: var(--amber);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.14rem; color: #ffffff; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: #bfaed6; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 28px rgba(29,13,51,0.14); aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 60px 20px 18px;
  color: #ffffff; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  background: linear-gradient(180deg, transparent, rgba(20,8,35,0.9));
}

/* ---------- Verticals ---------- */
.verticals { background: var(--bg-soft); }
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.vertical-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 28px rgba(29,13,51,0.1); transition: transform 0.3s ease;
}
.vertical-card:hover { transform: translateY(-6px); }
.vertical-card img { width: 100%; height: 190px; object-fit: cover; }
.vertical-card h3 { font-size: 1.08rem; color: var(--plum); padding: 18px 20px 6px; }
.vertical-card p { font-size: 0.88rem; color: var(--muted); padding: 0 20px 22px; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,8,35,0.9), rgba(72,18,60,0.82));
}
.cta-content { position: relative; z-index: 2; text-align: center; color: #ffffff; }
.cta-content h2 { color: #ffffff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 34px; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-info > p { color: var(--muted); }
.contact-items { margin: 30px 0; display: grid; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,65,108,0.12); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.contact-item a:hover { color: var(--coral); }

.contact-form {
  background: #ffffff; border-radius: var(--radius); padding: 42px;
  box-shadow: var(--shadow); border: 1px solid #efe6f9;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--plum); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e5dcf2; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--ink);
  background: #fdfcff; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,65,108,0.14);
}
.form-note { margin-top: 14px; font-size: 0.88rem; text-align: center; color: var(--coral); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--plum-dark); color: #a893c4; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding: 74px 0 54px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; max-width: 330px; }
.footer-col h4 { color: #ffffff; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.06em; }
.footer-col a, .footer-col span { display: block; font-size: 0.88rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid, .gallery-grid, .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-media-small { right: 6px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .gallery-grid, .form-row, .verticals-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(320px, 82vw); height: 100vh;
    flex-direction: column; justify-content: center; gap: 28px;
    background: var(--plum-dark); transition: right 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 40px; }
}
