/* =====================================================
   HHpoker - Main Stylesheet
   Deep Blue Gradient Theme with Gold Accent
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --blue-700: #1e3a5f;
  --blue-800: #152e4f;
  --blue-900: #0c1f3a;
  --blue-950: #061428;
  --amber-400: #f5a623;
  --amber-500: #e0960d;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  color: #e2e8f0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Utility Classes --- */
.text-amber {
  color: var(--amber-400);
}

.bg-glass {
  background: rgba(12, 31, 58, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 3rem;
}

section {
  padding: 80px 0;
}

/* ============================================
   NAVBAR - Glassmorphism
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: rgba(12, 31, 58, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--amber-400), transparent) 1;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-logo i {
  color: var(--amber-400);
  font-size: 1.8rem;
}

.navbar-logo span {
  color: var(--amber-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 18px;
  color: #cbd5e1;
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber-400);
  background: rgba(245, 166, 35, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--amber-400);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION - Right Image Left Text
   ============================================ */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.hero-content h1 span {
  color: var(--amber-400);
}

.hero-content .hero-desc {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-400), #d97706);
  color: #1a1a2e;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--amber-400);
  color: var(--amber-400);
  background: rgba(245, 166, 35, 0.08);
}

/* Hero Image - Rounded Hexagon clipping */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hexagon-image {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 40px;
  clip-path: polygon(
    50% 0%,
    90% 15%,
    100% 50%,
    90% 85%,
    50% 100%,
    10% 85%,
    0% 50%,
    10% 15%
  );
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.3), 0 0 0 12px rgba(245, 166, 35, 0.1);
  transition: var(--transition);
}

.hexagon-image:hover {
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.5), 0 0 0 16px rgba(245, 166, 35, 0.2);
  transform: scale(1.02);
}

/* ============================================
   FEATURES SECTION - 2x3 Grid
   ============================================ */
.features {
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.5) 0%, rgba(21, 46, 79, 0.7) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 24px 30px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-left: 4px solid var(--amber-400);
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber-400), #b45309);
  border-radius: 2px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--amber-400);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(245, 166, 35, 0.25);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============================================
   STATS SECTION - Diagonal Stripe Background
   ============================================ */
.stats-section {
  background-color: var(--blue-900);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(245, 166, 35, 0.04) 0px,
    rgba(245, 166, 35, 0.04) 3px,
    transparent 3px,
    transparent 12px
  );
  padding: 60px 0;
  overflow: hidden;
}

.stats-ribbon {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stats-ribbon::-webkit-scrollbar {
  display: none;
}

.stat-item {
  flex: 0 0 220px;
  scroll-snap-align: center;
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(245, 166, 35, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-300);
  font-weight: 500;
}

.stat-suffix {
  font-size: 1.2rem;
  color: var(--amber-400);
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS - Alternating Offset Cards
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, rgba(21, 46, 79, 0.7) 0%, rgba(12, 31, 58, 0.5) 100%);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  max-width: 65%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:nth-child(odd) {
  align-self: flex-start;
  margin-left: 0;
}

.testimonial-card:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 5rem;
  color: rgba(245, 166, 35, 0.3);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.25);
}

.testimonial-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-400);
}

.testimonial-author .author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author .author-info span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-rating {
  color: var(--amber-400);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ============================================
   FAQ SECTION - Two Column, +/- Toggle
   ============================================ */
.faq {
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.5) 0%, rgba(21, 46, 79, 0.6) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  user-select: none;
}

.faq-question:hover {
  color: var(--amber-400);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  color: var(--amber-400);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: rgba(245, 166, 35, 0.35);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px 22px;
}

/* ============================================
   CTA SECTION - Wavy SVG Top Edge
   ============================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, #1a1a2e 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cta-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER - Dark with Large Social Icons
   ============================================ */
.footer {
  background: var(--blue-950);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(245, 166, 35, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--amber-400);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--amber-400);
  color: #1a1a2e;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--amber-400);
  border-radius: 2px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--amber-400);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ============================================
   PAGE BANNER (Sub-pages)
   ============================================ */
.page-banner {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.8) 0%, rgba(21, 46, 79, 0.5) 100%);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.page-banner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner h1 span {
  color: var(--amber-400);
}

.page-banner .breadcrumb {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.page-banner .breadcrumb a {
  color: var(--amber-400);
}

.page-banner .breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   DOWNLOAD PAGE
   ============================================ */
.download-content {
  padding: 80px 0;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.download-app-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.download-app-info p {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 1rem;
}

.download-btn:hover {
  border-color: var(--amber-400);
  background: rgba(245, 166, 35, 0.08);
  transform: translateX(6px);
}

.download-btn i {
  font-size: 2.2rem;
  color: var(--amber-400);
}

.download-btn .dl-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.download-btn .dl-info span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.version-info {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
}

.version-info h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.version-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.version-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  font-size: 0.95rem;
}

.version-item .v-label {
  color: var(--gray-400);
}

.version-item .v-value {
  color: var(--amber-400);
  font-weight: 600;
}

.download-qr {
  text-align: center;
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.download-qr img {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 12px;
  border: 3px solid var(--amber-400);
}

.download-qr p {
  color: var(--gray-300);
  font-size: 0.95rem;
}

/* ============================================
   CLUB PAGE
   ============================================ */
.club-intro {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.5) 0%, rgba(21, 46, 79, 0.6) 100%);
}

.club-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.club-intro-grid img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(245, 166, 35, 0.2);
}

.club-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.club-info h2 span {
  color: var(--amber-400);
}

.club-info p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.club-benefits {
  padding: 80px 0;
}

.club-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 20px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: var(--shadow-lg);
}

.benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--amber-400);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: rgba(245, 166, 35, 0.25);
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.club-alliance {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(21, 46, 79, 0.6) 0%, rgba(12, 31, 58, 0.5) 100%);
}

.alliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.alliance-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.alliance-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
}

.alliance-card .alliance-rank {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-400);
  margin-bottom: 8px;
}

.alliance-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.alliance-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.contact-info-card .info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
  font-size: 1.3rem;
  color: var(--amber-400);
  flex-shrink: 0;
}

.contact-info-card .info-detail h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-card .info-detail p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrapper {
    order: 2;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .club-intro-grid {
    grid-template-columns: 1fr;
  }

  .club-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Navbar Mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: rgba(12, 31, 58, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 100px 30px 30px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 14px 18px;
    font-size: 1.05rem;
    width: 100%;
    border-radius: 10px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hexagon-image {
    width: 280px;
    height: 280px;
    border-radius: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-ribbon {
    gap: 0;
  }

  .stat-item {
    flex: 0 0 170px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .testimonial-card {
    max-width: 90%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .navbar-inner {
    padding: 12px 18px;
  }

  .club-benefits-grid {
    grid-template-columns: 1fr;
  }

  .alliance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-banner h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hexagon-image {
    width: 220px;
    height: 220px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .alliance-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}
