@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Heebo:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --primary-color: #FFFFFF;
  --accent-color: #FFBB35;
  --accent-hover: #e5a420;
  --accent-gradient: linear-gradient(135deg, #FFE79A 0%, #FFBB35 50%, #D49013 100%);
  --text-color: #959595;
  --text-light: #DCDCDC;
  --bg-black: #000000;
  --bg-dark: #0C0C0C;
  --bg-card: #141414;
  --bg-card-hover: #1b1b1b;
  --border-color: #2C2C2C;
  --border-gold: rgba(255, 187, 53, 0.4);
  --font-heading: 'Fjalla One', 'Montserrat', sans-serif;
  --font-body: 'Heebo', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  --gold-glow: 0 0 25px rgba(255, 187, 53, 0.35);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-black);
  color: var(--text-color);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

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

/* Typography & Motion Scroll Animations */
h1, h2, h3, h4, h5, h6, .page-title, .hero-title, .section-tag {
  font-family: var(--font-heading);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Motion Reveal Initial State */
h1, h2, h3, .page-title, .hero-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.section-tag {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Motion Reveal In-View State */
h1.in-view, h2.in-view, h3.in-view, .page-title.in-view, .hero-title.in-view, .section-tag.in-view {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: 56px;
  font-weight: 600;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

p {
  margin-bottom: 1.2rem;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.accent-text {
  color: var(--accent-color) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-tag.in-view::after {
  transform: scaleX(1);
}

/* Gold glow pulse for active headings */
.hero-title.in-view span, h2.in-view .accent-text {
  animation: goldShimmer 2.5s ease-in-out infinite alternate;
}

@keyframes goldShimmer {
  0% {
    text-shadow: 0 0 10px rgba(255, 187, 53, 0.2);
  }
  100% {
    text-shadow: 0 0 25px rgba(255, 187, 53, 0.75), 0 0 45px rgba(255, 187, 53, 0.35);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 187, 53, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-black);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--bg-black);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(255, 187, 53, 0.2);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 187, 53, 0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px rgba(255, 187, 53, 0.45));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111111;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--accent-color);
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.dropdown-item a:hover {
  background-color: rgba(255, 187, 53, 0.1);
  color: var(--accent-color);
  padding-left: 25px;
}

.nav-btn-login {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-transform: uppercase;
  padding: 8px 22px;
  border: 1px solid var(--accent-color);
  border-radius: 40px;
  transition: var(--transition);
}

.nav-btn-login:hover {
  background-color: var(--accent-color);
  color: #000;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 120px;
  background: url('../images/hero_poker_table.jpg') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.5) 100%),
              radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.hero-title span {
  color: var(--accent-color);
  display: inline-block;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Floating Info Cards Section */
.info-section {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  margin-bottom: 60px;
}

.info-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--box-shadow);
  border-radius: 12px;
  overflow: hidden;
}

.info-card {
  position: relative;
  padding: 45px 40px;
  transition: var(--transition);
  overflow: hidden;
}

.info-card.dark {
  background-color: var(--bg-dark);
  border-left: 2px solid var(--border-color);
}

.info-card.gold {
  background-color: var(--accent-color);
  color: #000;
}

.info-card .watermark {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-family: var(--font-heading);
  font-size: 130px;
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.12;
  pointer-events: none;
}

.info-card.gold .watermark {
  color: #000;
  opacity: 0.15;
}

.info-card.dark .watermark {
  color: var(--border-color);
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.info-card.dark h3 {
  color: var(--primary-color);
}

.info-card.gold h3 {
  color: #000;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-card.dark p {
  color: var(--text-color);
}

.info-card.gold p {
  color: #111111;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.info-card.dark .card-link {
  color: var(--accent-color);
}

.info-card.dark .card-link:hover {
  color: var(--primary-color);
}

.info-card.gold .card-link {
  color: #000000;
  font-weight: 600;
}

.info-card.gold .card-link:hover {
  color: #fff;
}

/* Quick Bar (Location & Open Hours) */
.quick-meta-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  margin-bottom: 25px;
  padding: 15px 0;
}

.quick-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quick-meta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
}

.quick-meta-text h5 {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 2px;
}

.quick-meta-text p {
  margin: 0;
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

/* Standard Section Layouts & Scroll Transitions */
.section {
  padding: 90px 0;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.section.in-view, .section.active-section {
  opacity: 1;
  transform: translateY(0);
}

.info-section {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.info-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section.dark-bg {
  background-color: #080808;
}

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

.two-col-grid > *:first-child {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.two-col-grid > *:last-child {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.two-col-grid.in-view > *:first-child,
.two-col-grid.in-view > *:last-child,
.section.in-view .two-col-grid > * {
  opacity: 1;
  transform: translateX(0);
}

.two-col-grid.reverse {
  direction: rtl;
}

.two-col-grid.reverse > * {
  direction: ltr;
}

/* Image Stack Layout */
.img-stack {
  position: relative;
  opacity: 0;
  transform: scale(0.94) translateY(25px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-stack.in-view, .section.in-view .img-stack {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.img-stack-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.img-stack-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
  border: 3px solid var(--accent-color);
}

.img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: scale(0.95) translateY(25px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-frame.in-view, .section.in-view .img-frame {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.img-frame:hover img {
  transform: scale(1.03);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}

.gallery-grid.in-view .gallery-item,
.section.in-view .gallery-item {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-grid.in-view .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid.in-view .gallery-item:nth-child(2) { transition-delay: 0.10s; }
.gallery-grid.in-view .gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid.in-view .gallery-item:nth-child(4) { transition-delay: 0.20s; }
.gallery-grid.in-view .gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-grid.in-view .gallery-item:nth-child(6) { transition-delay: 0.30s; }
.gallery-grid.in-view .gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-grid.in-view .gallery-item:nth-child(8) { transition-delay: 0.40s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--accent-color);
  font-size: 28px;
  transform: scale(0.6);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Tournaments & QR Section */
.tournament-qr-card {
  background: linear-gradient(135deg, #111111 0%, #161616 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--box-shadow);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.95s ease;
}

.tournament-qr-card.in-view,
.section.in-view .tournament-qr-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 10px 40px rgba(255, 187, 53, 0.15);
}

.qr-box {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--gold-glow);
}

.qr-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.qr-box p {
  color: #000;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* PR & News / Legal Articles */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.news-grid.in-view .news-card,
.section.in-view .news-card {
  opacity: 1;
  transform: translateY(0);
}

.news-grid.in-view .news-card:nth-child(1) { transition-delay: 0.1s; }
.news-grid.in-view .news-card:nth-child(2) { transition-delay: 0.25s; }

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(255, 187, 53, 0.15);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  font-size: 13px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-card-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.4;
}

.news-card-body p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Page Banner (For sub-pages) */
.page-hero {
  position: relative;
  padding: 160px 0 70px 0;
  background: linear-gradient(180deg, #0c0c0c 0%, #000000 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/luxury_card_room.jpg') center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 52px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--text-light);
}

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

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

/* Poker Hands Grid */
.hands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.hand-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: var(--transition);
}

.hand-card:hover {
  border-color: var(--accent-color);
  background-color: var(--bg-card-hover);
  transform: translateY(-3px);
}

.hand-rank-badge {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  min-width: 40px;
}

.hand-image {
  width: 160px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hand-details h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.hand-details p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

/* FAQ Accordion */
.faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-color);
}

.faq-header {
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-header h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
  font-family: var(--font-heading);
}

.faq-icon {
  color: var(--accent-color);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 25px;
}

.faq-item.active .faq-body {
  padding: 0 25px 22px 25px;
}

.faq-body p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

/* Contact Form & Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 187, 53, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  position: relative;
}

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

.footer-logo {
  height: 95px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 10px rgba(255, 187, 53, 0.3));
}

.footer-about p {
  font-size: 14px;
  color: var(--text-color);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #666666;
}

.footer-bottom a {
  color: var(--accent-color);
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--gold-glow);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

/* ========================================================
   SEO & Google Business Profile Enhancement Styles
   ======================================================== */

/* Google Business Profile & Review Badges */
.gbp-badge-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.google-review-badge:hover {
  background: rgba(255, 187, 53, 0.1);
  transform: translateY(-2px);
}

.google-review-badge .google-icon {
  font-size: 16px;
  color: #4285F4;
}

.google-review-badge .stars {
  color: var(--accent-color);
  letter-spacing: 1px;
}

.google-review-badge .score {
  font-weight: 700;
  color: var(--accent-color);
}

.verified-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Interactive Map Container */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--box-shadow);
  background: var(--bg-card);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.1) invert(90%) hue-rotate(180deg);
}

.map-actions-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 20px;
  background: #0d0d0d;
  border-top: 1px solid var(--border-color);
}

.map-address-text {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-address-text i {
  color: var(--accent-color);
  font-size: 18px;
}

/* Regional Transit & Proximity Grid */
.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.transit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transit-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 187, 53, 0.15);
}

.transit-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.transit-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.transit-time {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.transit-time span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color);
}

.transit-route {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.5;
}

/* Social Media Channels Grid & Pills */
.social-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.social-channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
}

.social-channel-card i {
  font-size: 20px;
  color: var(--accent-color);
  transition: var(--transition);
}

.social-channel-card:hover {
  background: rgba(255, 187, 53, 0.12);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.social-channel-card:hover i {
  transform: scale(1.15);
}

/* Footer Social Icons Bar */
.footer-social-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 187, 53, 0.4);
}

/* Competitor Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.advantage-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: rgba(255, 187, 53, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .connectivity-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .hero-title { font-size: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hands-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #141414;
    border: none;
    border-left: 2px solid var(--accent-color);
    margin-top: 10px;
    padding-left: 15px;
    display: none;
  }
  .nav-item.dropdown-open .dropdown-menu {
    display: block;
  }
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-title {
    font-size: 34px;
  }
  .info-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tournament-qr-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-box {
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .connectivity-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .map-actions-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
