/* ==========================================================================
   LUXE SOIREE HOUSE - PREMIUM STYLING SYSTEM
   Derived from Reference Design Aesthetics
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --primary-accent: #FFD200;
  --primary-accent-hover: #E6BC00;
  --primary-accent-rgb: 255, 210, 0;
  
  --bg-dark-base: #0d0d0d;
  --bg-dark-section: #111111;
  --bg-dark-card: #161616;
  --bg-dark-card-hover: #1f1f1f;
  
  --bg-light-base: #f9f9f6;
  --bg-light-card: #ffffff;
  
  /* Text Colors */
  --text-light: #ffffff;
  --text-light-secondary: #b5b5b5;
  --text-dark: #121212;
  --text-dark-secondary: #4a4a4a;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Options */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.4);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-base);
  color: var(--text-light-secondary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

ul {
  list-style: none;
}

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

/* Utilities */
.section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--bg-dark-section);
}

.section-light {
  background-color: var(--bg-light-base);
  color: var(--text-dark-secondary);
}

.section-light h1, 
.section-light h2, 
.section-light h3, 
.section-light h4 {
  color: var(--text-dark);
}

.section-label {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-accent);
  display: inline-block;
  margin-bottom: 15px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.gold {
  color: var(--primary-accent);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--text-dark);
  border-color: var(--primary-accent);
}

.btn-primary:hover {
  background-color: var(--primary-accent-hover);
  border-color: var(--primary-accent-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 210, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #0d0d0d;
  color: #ffffff;
  border-color: #0d0d0d;
}

.btn-dark:hover {
  background-color: var(--primary-accent);
  color: var(--text-dark);
  border-color: var(--primary-accent);
  transform: translateY(-2px);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  background: #0d0d0d;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.navbar-brand img {
  height: 40px;
}

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

.nav-links a {
  color: var(--text-light-secondary);
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover, 
.nav-links a.active {
  color: var(--primary-accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-accent);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-nav-box {
  width: 38px;
  height: 38px;
  background-color: var(--primary-accent);
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-nav-box:hover {
  background-color: var(--text-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 45%, #181818 100%);
}

.hero-row {
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}

.hero-content .hero-label {
  font-family: var(--font-headings);
  color: var(--primary-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text-light-secondary);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-play {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.btn-play:hover {
  background-color: var(--primary-accent);
  color: var(--text-dark);
  border-color: var(--primary-accent);
  transform: scale(1.1);
}

.hero-media {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-dark);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0) 50%);
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Partners Bar */
.partners-bar {
  background-color: #f5f5f2;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.partners-intro {
  flex: 0 0 25%;
  max-width: 25%;
}

.partners-intro h4 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.partners-intro p {
  font-size: 13px;
  color: var(--text-dark-secondary);
}

.partners-logos {
  flex: 0 0 75%;
  max-width: 75%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.partner-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: #8c8c88;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  color: var(--text-dark);
}

.partner-logo i {
  font-size: 26px;
  color: var(--text-dark-secondary);
}

/* Highlights Sektion (3 cards) */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.highlight-card.light {
  background-color: var(--bg-light-card);
  color: var(--text-dark-secondary);
  box-shadow: var(--box-shadow-light);
}

.highlight-card.light h3 {
  color: var(--text-dark);
}

.highlight-card.dark {
  background-color: var(--bg-dark-card);
  color: var(--text-light-secondary);
  box-shadow: var(--box-shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.highlight-card.dark:hover {
  background-color: var(--bg-dark-card-hover);
  border-color: rgba(255, 210, 0, 0.2);
}

.highlight-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.highlight-card.light .highlight-icon-box {
  background-color: var(--bg-dark-base);
  color: var(--primary-accent);
}

.highlight-card.dark .highlight-icon-box {
  background-color: var(--primary-accent);
  color: var(--text-dark);
}

.highlight-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight-card p {
  font-size: 15px;
  margin-bottom: 30px;
}

.highlight-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.highlight-card.light .highlight-link {
  color: var(--text-dark);
}

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

.highlight-link:hover {
  gap: 15px;
}

/* Aspiration / About Section */
.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-images-col {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.portrait-img {
  width: 50%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-dark);
}

.portrait-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.portrait-img-stagger {
  margin-top: 60px;
}

.about-content-col {
  flex: 0 0 55%;
  max-width: 55%;
}

.about-content-col h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content-col p {
  margin-bottom: 30px;
  font-size: 16px;
}

.progress-list {
  margin-bottom: 40px;
}

.progress-item {
  margin-bottom: 20px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.progress-track {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-accent);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.about-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-social-row span {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-light);
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 40px;
  background-color: var(--primary-accent);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-circle-btn:hover {
  background-color: var(--text-light);
  transform: translateY(-2px);
}

/* Stats Counter Section */
.stats-section {
  background-color: #080808;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.stats-info {
  flex: 0 0 40%;
  max-width: 40%;
}

.stats-info h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.stats-info p {
  font-size: 15px;
  margin-bottom: 30px;
}

.stats-grid {
  flex: 0 0 60%;
  max-width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box.dark {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-light-secondary);
}

.stat-box.dark .stat-icon {
  color: var(--primary-accent);
}

.stat-box.highlight {
  background-color: var(--primary-accent);
  color: var(--text-dark);
}

.stat-box.highlight h3,
.stat-box.highlight p {
  color: var(--text-dark);
}

.stat-box.highlight .stat-icon {
  color: var(--text-dark);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
}

.stat-box p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Event List / Cards Section */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-item-card {
  background-color: var(--bg-dark-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.event-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 210, 0, 0.3);
  box-shadow: var(--box-shadow-dark);
}

.event-card-header {
  position: relative;
  overflow: hidden;
}

.event-card-header img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-item-card:hover .event-card-header img {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-accent);
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.event-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.brand-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
}

.brand-meta img {
  height: 24px;
  width: auto;
}

.rating-stars {
  color: var(--primary-accent);
  font-size: 13px;
}

.event-card-body h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.event-card-body p {
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--text-light-secondary);
}

.event-meta-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light-secondary);
}

.tag-item i {
  color: var(--primary-accent);
  font-size: 14px;
}

.event-card-footer {
  margin-top: auto;
}

.event-card-footer .btn {
  width: 100%;
}

/* Testimonial Section */
.testimonials-row {
  display: flex;
  align-items: stretch;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonials-left {
  flex: 0 0 65%;
  max-width: 65%;
  padding: 80px;
  position: relative;
}

.testimonial-carousel {
  width: 100%;
}

.testimonial-slide {
  outline: none;
}

.star-rating {
  color: var(--primary-accent);
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-accent);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.author-details span {
  font-size: 13px;
  color: var(--text-light-secondary);
}

.slick-dots {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 10px;
}

.slick-dots li {
  cursor: pointer;
}

.slick-dots li span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.slick-dots li.slick-active span {
  background-color: var(--primary-accent);
  width: 24px;
  border-radius: 4px;
}

.testimonials-right {
  flex: 0 0 35%;
  max-width: 35%;
  background-color: var(--primary-accent);
  color: var(--text-dark);
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-right h2 {
  color: var(--text-dark);
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.testimonials-right p {
  color: var(--text-dark-secondary);
  font-size: 15px;
  margin-bottom: 30px;
}

.testimonials-right .highlight-link {
  color: var(--text-dark);
}

/* More Opportunities (Privileges) */
.opportunities-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.opportunities-left {
  flex: 0 0 45%;
  max-width: 45%;
}

.opportunities-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.opportunities-left p {
  font-size: 16px;
  margin-bottom: 35px;
}

.opportunities-right {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.opportunity-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-smooth);
}

.opportunity-item:hover {
  transform: translateX(10px);
  box-shadow: var(--box-shadow-hover);
}

.opportunity-icon {
  width: 48px;
  height: 48px;
  background-color: #121212;
  color: var(--primary-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.opportunity-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.opportunity-text p {
  font-size: 14px;
  color: var(--text-dark-secondary);
}

/* Blog & Article Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-dark-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 210, 0, 0.2);
  box-shadow: var(--box-shadow-dark);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-accent);
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.blog-body {
  padding: 30px;
}

.blog-body h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-body p {
  font-size: 14px;
  color: var(--text-light-secondary);
  margin-bottom: 25px;
}

/* Form Controls and Contact Page */
.contact-layout {
  display: flex;
  gap: 50px;
}

.contact-info-col {
  flex: 0 0 40%;
  max-width: 40%;
}

.contact-info-col h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info-col p {
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--primary-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-detail-text h4 {
  font-size: 15px;
  color: var(--text-light-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-text p {
  margin: 0;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.contact-form-col {
  flex: 0 0 60%;
  max-width: 60%;
  background-color: var(--bg-dark-card);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-dark-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 20px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-smooth);
}

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.checkbox-group input {
  margin-top: 5px;
  cursor: pointer;
  accent-color: var(--primary-accent);
}

.checkbox-group label {
  font-size: 13px;
  color: var(--text-light-secondary);
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--primary-accent);
}

/* Footer styling */
.footer {
  background-color: #080808;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  flex: 0 0 30%;
  max-width: 30%;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 25px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.footer-col {
  flex: 0 0 18%;
  max-width: 18%;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  color: var(--text-light);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-light-secondary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--primary-accent);
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark-card);
  border-top: 2px solid var(--primary-accent);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  padding: 25px 0;
  transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-inner p {
  font-size: 14px;
  color: var(--text-light-secondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-inner p a {
  color: var(--primary-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Legal Pages Styling (privacy, terms, cookie) */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}

.legal-title-section {
  text-align: center;
  padding: 140px 0 60px;
  background-color: var(--bg-dark-section);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.legal-title-section h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

.legal-title-section p {
  font-size: 15px;
  color: var(--text-light-secondary);
}

.legal-content {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--box-shadow-dark);
}

.legal-content h2 {
  font-size: 24px;
  margin: 35px 0 15px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p, 
.legal-content li {
  font-size: 15px;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* Header Spacer for sub-pages */
.subpage-header {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.subpage-header h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.subpage-header p {
  font-size: 16px;
  color: var(--text-light-secondary);
}

/* Responsive Grid / Breakpoints */
@media (max-width: 992px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  
  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-media {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-image-wrap img {
    height: 380px;
  }
  
  .partners-row {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .partners-intro {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .partners-logos {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-images-col {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  
  .about-content-col {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    text-align: center;
  }
  
  .about-social-row {
    justify-content: center;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .stats-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .stats-grid {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .event-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-row {
    flex-direction: column;
  }
  
  .testimonials-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px 30px 80px;
  }
  
  .slick-dots {
    left: 30px;
  }
  
  .testimonials-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px 30px;
    text-align: center;
  }
  
  .opportunities-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .opportunities-left {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .opportunities-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    flex-direction: column;
    gap: 50px;
  }
  
  .contact-info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact-form-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .footer-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0d0d0d;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    display: block;
  }
  
  .nav-right {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 46px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .legal-content {
    padding: 25px;
  }
}
