/* =============================================
   GAMING POINT – Johor Bahru Gaming Center
   Green/Cyan Theme | Space Grotesk + Syne
   ============================================= */

:root {
  --green: #22c55e;
  --green-dark: #15803d;
  --green-light: #4ade80;
  --cyan: #06b6d4;
  --dark: #030712;
  --dark-2: #0c1121;
  --dark-3: #111827;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border: rgba(34,197,94,0.2);
  --card-bg: rgba(17,24,39,0.85);
  --font-title: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 14px;
  --shadow-green: 0 8px 32px rgba(34,197,94,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
.green { color: var(--green-light); }

/* CONTAINER */
.gp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.gp-btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.gp-btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.gp-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--green);
  transition: all 0.3s;
}
.gp-btn-outline:hover { background: var(--green); color: var(--dark); }

.gp-btn-link { color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.9rem; padding: 14px 0; border-bottom: 2px solid transparent; transition: all 0.3s; }
.gp-btn-link:hover { color: var(--green-light); border-bottom-color: var(--green-light); }

/* TAG */
.gp-tag {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: var(--green-light);
  border: 1px solid rgba(34,197,94,0.35);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* SECTION HEADER */
.gp-section-header { text-align: center; margin-bottom: 52px; }
.gp-section-header h2 { font-family: var(--font-title); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.gp-section-header p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(3,7,18,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-title); font-size: 1.3rem; font-weight: 800; }
.logo-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.logo strong { color: var(--green-light); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 28px; }
.nl { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nl:hover, .nl.active { color: var(--text); }
.nl-btn { background: var(--green); color: var(--dark) !important; padding: 8px 20px; border-radius: 8px; font-weight: 700; }
.nl-btn:hover { background: var(--green-light); }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; padding: 4px; }

/* HERO */
.gp-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.gp-hero-img { position: absolute; inset: 0; }
.gp-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.gp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--dark) 20%, rgba(3,7,18,0.5) 60%, rgba(3,7,18,0.2) 100%); }
.gp-hero-content { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 24px 40px; width: 100%; }
.gp-pretitle { font-size: 0.84rem; font-weight: 600; color: var(--green-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.gp-hero-content h1 { font-family: var(--font-title); font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; max-width: 700px; }
.gp-hero-content h1 em { font-style: normal; color: var(--green-light); }
.gp-hero-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.gp-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.gp-hero-cards { position: relative; z-index: 2; background: rgba(12,17,33,0.9); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.gp-hero-cards { display: grid; grid-template-columns: repeat(4, 1fr); }
.gp-card { padding: 24px 28px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.gp-card:last-child { border-right: none; }
.gp-card i { font-size: 1.5rem; color: var(--green-light); min-width: 24px; }
.gp-card h3 { font-family: var(--font-title); font-size: 1rem; font-weight: 700; }
.gp-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ABOUT */
.gp-about { padding: 100px 0; background: var(--dark-2); }
.gp-about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.gp-about-imgs { position: relative; }
.img-main { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.img-secondary { width: 55%; height: 220px; object-fit: cover; border-radius: var(--radius); border: 3px solid var(--green); position: absolute; bottom: -28px; right: -24px; box-shadow: var(--shadow-green); }
.gp-about-text h2 { font-family: var(--font-title); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.gp-about-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.92rem; line-height: 1.8; }
.gp-about-stats { display: flex; gap: 36px; margin: 28px 0 32px; }
.gp-stat { display: flex; flex-direction: column; }
.gn { font-family: var(--font-title); font-size: 2rem; font-weight: 800; color: var(--green-light); line-height: 1; }
.gp-stat p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* PACKAGES */
.gp-packages { padding: 100px 0; }
.gp-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-green); }
.pkg-card.pkg-featured { border-color: var(--green); background: rgba(34,197,94,0.05); }
.pkg-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--dark); padding: 4px 18px; border-radius: 99px; font-size: 0.76rem; font-weight: 700; white-space: nowrap; }
.pkg-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pkg-icon i { color: var(--green-light); }
.pkg-card h3 { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.pkg-img { border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.pkg-img img { width: 100%; height: 160px; object-fit: cover; }
.pkg-card ul { list-style: none; margin-bottom: 20px; flex: 1; }
.pkg-card ul li { font-size: 0.84rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(34,197,94,0.08); display: flex; align-items: center; gap: 8px; }
.pkg-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pkg-card ul li:last-child { border-bottom: none; }
.pkg-price { font-family: var(--font-title); font-size: 2.2rem; font-weight: 800; color: var(--green-light); margin-bottom: 20px; }
.pkg-price span { font-size: 0.9rem; color: var(--text-muted); }

/* GALLERY STRIP */
.gp-gallery { padding: 100px 0; background: var(--dark-2); }
.gp-gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gstrip-item { border-radius: var(--radius); overflow: hidden; }
.gstrip-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.gstrip-item:hover img { transform: scale(1.08); }

/* WHY US */
.gp-why { padding: 100px 0; }
.gp-why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.gp-why-text h2 { font-family: var(--font-title); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 32px; line-height: 1.2; }
.why-items { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: rgba(34,197,94,0.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 1rem; }
.why-item h4 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.why-item p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.gp-why-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }

/* REVIEWS */
.gp-reviews { padding: 100px 0; background: var(--dark-2); }
.gp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gp-review-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.gp-review-card:hover { border-color: var(--green); transform: translateY(-3px); }
.gp-stars { color: #fbbf24; font-size: 1.05rem; margin-bottom: 14px; }
.gp-review-card p { color: var(--text-muted); font-size: 0.88rem; font-style: italic; margin-bottom: 18px; line-height: 1.8; }
.gp-review-card strong { display: block; font-weight: 700; font-size: 0.9rem; }
.gp-review-card span { font-size: 0.78rem; color: var(--green-light); }

/* FOOTER */
.gp-footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 72px 0 0; }
.gp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.gp-footer-brand p { font-size: 0.84rem; color: var(--text-muted); margin: 14px 0 20px; max-width: 260px; line-height: 1.7; }
.gp-socials { display: flex; gap: 10px; }
.gp-socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.84rem; transition: all 0.3s; }
.gp-socials a:hover { border-color: var(--green); color: var(--green); }
.gp-footer-col h5 { font-family: var(--font-title); font-size: 0.85rem; font-weight: 800; margin-bottom: 16px; letter-spacing: 0.5px; }
.gp-footer-col ul { list-style: none; }
.gp-footer-col ul li { margin-bottom: 8px; }
.gp-footer-col ul li a { font-size: 0.84rem; color: var(--text-muted); transition: color 0.3s; }
.gp-footer-col ul li a:hover { color: var(--green-light); }
.gp-footer-col p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.gp-footer-col i { color: var(--green); min-width: 14px; margin-top: 3px; }
.gp-footer-col a { color: var(--text-muted); }
.gp-footer-col a:hover { color: var(--green-light); }
.gp-footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.gp-footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* INNER PAGE */
.inner-hero { padding: 130px 0 64px; text-align: center; background: var(--dark-3); border-bottom: 1px solid var(--border); }
.inner-hero h1 { font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 12px; }
.inner-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ABOUT FULL PAGE */
.gp-about-full { padding: 80px 0; }
.gp-abt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.gp-abt-grid img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.gp-abt-grid h2 { font-family: var(--font-title); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.gp-abt-grid p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.8; }

/* PACKAGES FULL PAGE */
.gp-packages-full { padding: 80px 0; }
.pkg-full-card { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-bottom: 32px; transition: all 0.3s; }
.pkg-full-card:hover { border-color: var(--green); }
.pkg-full-card img { width: 100%; height: 280px; object-fit: cover; border-radius: 10px; }
.pkg-full-card h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 12px; }
.pkg-full-card p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.9rem; }
.pkg-full-card ul { list-style: none; margin-bottom: 20px; }
.pkg-full-card ul li { padding: 6px 0; color: var(--text-muted); font-size: 0.88rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pkg-full-card ul li:last-child { border-bottom: none; }
.pkg-full-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pkg-full-price { font-family: var(--font-title); font-size: 2.8rem; font-weight: 800; color: var(--green-light); margin-bottom: 20px; }
.pkg-full-price span { font-size: 0.9rem; color: var(--text-muted); }

/* GALLERY FULL */
.gp-gallery-full { padding: 80px 0; }
.gp-grid-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gp-grid-item { border-radius: var(--radius); overflow: hidden; }
.gp-grid-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.gp-grid-item:hover img { transform: scale(1.06); }

/* CONTACT */
.gp-contact { padding: 80px 0; }
.gp-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.gp-contact-left h2 { font-family: var(--font-title); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.gp-contact-left p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.9rem; }
.gp-info-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.gp-info-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(34,197,94,0.1); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 0.9rem; }
.gp-info-item h4 { font-weight: 600; margin-bottom: 2px; font-size: 0.9rem; }
.gp-info-item p, .gp-info-item a { color: var(--text-muted); font-size: 0.84rem; }
.gp-info-item a:hover { color: var(--green-light); }
.gp-form-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.gp-form-wrap h3 { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.gp-form-wrap > p { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 24px; }
.gp-form-group { margin-bottom: 16px; }
.gp-form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.gp-form-group input, .gp-form-group select, .gp-form-group textarea { width: 100%; background: rgba(3,7,18,0.7); border: 1px solid var(--border); border-radius: 9px; color: var(--text); padding: 12px 14px; font-family: var(--font-body); font-size: 0.88rem; outline: none; transition: border-color 0.3s; }
.gp-form-group input:focus, .gp-form-group select:focus, .gp-form-group textarea:focus { border-color: var(--green); }
.gp-form-group select option { background: var(--dark-3); }
.gp-form-group textarea { resize: vertical; min-height: 110px; }
.gp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* LEGAL */
.gp-legal { padding: 60px 0 80px; max-width: 800px; margin: 0 auto; }
.gp-legal h2 { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; margin: 30px 0 10px; }
.gp-legal p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.9rem; line-height: 1.8; }
.gp-legal ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 12px; font-size: 0.9rem; line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gp-hero-cards { grid-template-columns: repeat(2, 1fr); }
  .gp-about-layout { grid-template-columns: 1fr; gap: 48px; }
  .gp-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; }
  .gp-abt-grid { grid-template-columns: 1fr; }
  .gp-contact-grid { grid-template-columns: 1fr; }
  .pkg-full-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .burger { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 270px; height: 100vh; background: rgba(3,7,18,0.98); backdrop-filter: blur(16px); flex-direction: column; padding: 80px 28px; gap: 20px; transition: right 0.4s; border-left: 1px solid var(--border); }
  .nav-links.open { right: 0; }
  .navbar { background: rgba(3,7,18,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
  .gp-packages-grid { grid-template-columns: 1fr; }
  .gp-gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gstrip-item:last-child { grid-column: span 2; }
  .gp-reviews-grid { grid-template-columns: 1fr; }
  .gp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gp-grid-mosaic { grid-template-columns: 1fr 1fr; }
  .gp-form-row { grid-template-columns: 1fr; }
  .img-secondary { display: none; }
}
@media (max-width: 480px) {
  .gp-hero-cards { grid-template-columns: 1fr 1fr; }
  .gp-gallery-strip { grid-template-columns: 1fr; }
  .gstrip-item:last-child { grid-column: auto; }
  .gp-grid-mosaic { grid-template-columns: 1fr; }
  .gp-hero-actions { flex-direction: column; align-items: flex-start; }
}
