/* luxvoya.click - Generic Multi-Game Platform CSS (Version 2 - Different Colors) */

:root {
  --primary-color: #f97316;
  --secondary-color: #ea580c;
  --accent-color: #0ea5e9;
  --dark-bg: #0c4a6e;
  --light-bg: #fef3c7;
  --text-dark: #18181b;
  --text-light: #52525b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navigation */
#menu1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.luxvoya-logo {
  flex-shrink: 0;
}

.luxvoya-logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.luxvoya-logo a:hover {
  color: #fef3c7;
  transform: scale(1.05);
}

.luxvoya-menu-area {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.dgmenuwrap {
  display: flex;
  align-items: center;
}

.dgnav {
  display: flex;
  align-items: center;
}

ul.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

ul.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

ul.menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fef3c7;
  transform: translateY(-2px);
}

/* Hero Banner */
.luxvoya-inner-page-header {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.luxvoya-inner-page-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.luxvoya-banner-text {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0;
  text-align: center;
}

.luxvoya-banner-text h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.luxvoya-banner-text p {
  font-size: 1.3rem;
  color: #fef3c7;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.6);
  text-decoration: none;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
  color: #ffffff;
}

/* Features Area */
.luxvoya-features-area {
  padding: 100px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.feature-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
  background: #ffffff;
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent-color) 0%, #0284c7 100%);
}

.feature-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Games Section */
.luxvoya-games-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fffbeb 0%, #fde68a 100%);
}

.games-header {
  text-align: center;
  margin-bottom: 70px;
}

.games-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 25px;
  border: 2px solid var(--primary-color);
}

.games-header h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.games-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.games-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center;
}

.games-grid>.col-lg-4,
.games-grid>.col-md-4 {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.game-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  height: 100%;
}

.game-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
  border-color: var(--primary-color);
}

.game-thumbnail {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.game-card:hover .game-thumbnail img {
  transform: scale(1.15);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(234, 88, 12, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-button {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.play-button:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: scale(1.1);
  text-decoration: none;
}

.game-info {
  padding: 30px 25px;
}

.game-info h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.game-info p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* About Section */
.luxvoya-about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-color);
}

.about-content {
  padding-left: 50px;
}

.about-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 25px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.btn-learn-more {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
  text-decoration: none;
  color: #ffffff;
}

/* Info Carousel */
.luxvoya-info-carousel {
  padding: 100px 0;
  background: linear-gradient(180deg, #fffbeb 0%, #fde68a 100%);
}

.luxvoya-info-carousel h2 {
  font-size: 3rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin: 0 10px;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
  border-color: var(--primary-color);
}

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

.card-content {
  padding: 30px 25px;
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.card-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Owl Carousel */
.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 1.5rem !important;
  transition: all 0.3s ease !important;
  border: 3px solid var(--primary-color) !important;
}

.owl-carousel .owl-nav button:hover {
  background: var(--secondary-color) !important;
  transform: scale(1.15) !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color) !important;
  transform: scale(1.3);
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(249, 115, 22, 0.3) !important;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  transition: all 0.3s ease !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #075985 100%);
  padding: 60px 0 30px;
  border-top: 5px solid var(--primary-color);
}

.luxvoya-footer-logo {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.luxvoya-footer-logo img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.luxvoya-footer-logo img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-bg {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-menu li a {
  color: #fef3c7;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-menu li:last-child a {
  border-right: none;
}

.footer-menu li a:hover {
  color: var(--primary-color);
}

/* Responsive Columns */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

.col-12,
.col-md-4,
.col-md-6,
.col-lg-4,
.col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .luxvoya-banner-text h2 {
    font-size: 3rem;
  }

  .section-header h2,
  .games-header h2,
  .luxvoya-info-carousel h2 {
    font-size: 2.5rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  ul.menu {
    gap: 1.5rem;
  }

  .games-grid {
    flex-wrap: wrap;
  }

  .games-grid>.col-lg-4,
  .games-grid>.col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  ul.menu {
    display: none;
  }

  .luxvoya-banner-text h2 {
    font-size: 2.5rem;
  }

  .luxvoya-banner-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .section-header h2,
  .games-header h2,
  .luxvoya-info-carousel h2 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .footer-menu ul {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu li a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    padding: 10px 0;
  }

  .footer-menu li:last-child a {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .luxvoya-logo a {
    font-size: 1.5rem;
  }

  .luxvoya-banner-text h2 {
    font-size: 2rem;
  }

  .luxvoya-inner-page-header {
    min-height: 70vh;
  }

  .feature-card,
  .game-card,
  .info-card {
    margin-bottom: 20px;
  }

  .about-image img {
    height: 350px;
  }

  .luxvoya-footer-logo img {
    width: 80px;
  }
}

/* Mean Menu Responsive */
.mean-container .mean-bar {
  background: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
}

.mean-container .mean-nav {
  background: var(--secondary-color);
}

.mean-container .mean-nav ul li a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a:hover {
  background: var(--primary-color);
  color: #fef3c7;
}

.mean-container a.meanmenu-reveal {
  color: #ffffff;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Links Default */
a {
  transition: all 0.3s ease;
}

/* Image Responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Button Reset */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* Collapse Classes */
.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Selection Styling */
::selection {
  background: var(--primary-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--primary-color);
  color: #ffffff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #fffbeb;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  border: 2px solid #fffbeb;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

/* Inner Page Header */
.luxvoya-inner-page-header1 {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.luxvoya-inner-page-header1 h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}

.luxvoya-inner-page-header1 img {
  opacity: 0.2;
}

/* Welcome Area - For About/Inner Pages */
.luxvoya-welcome-area {
  padding: 100px 0;
  background: #ffffff;
}

.luxvoya-welcome-area.luxvoya-welcome-area-black {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #075985 100%);
}

.luxvoya-welcome-area-reverce .row {
  flex-direction: row-reverse;
}

.luxvoya-welcome-text {
  padding: 0 20px;
}

.luxvoya-welcome-text span {
  display: inline-block;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.luxvoya-welcome-area-black .luxvoya-welcome-text span {
  color: var(--primary-color);
}

.luxvoya-welcome-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.luxvoya-welcome-area-black .luxvoya-welcome-text h2 {
  color: #ffffff;
}

.luxvoya-welcome-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.luxvoya-welcome-area-black .luxvoya-welcome-text p {
  color: #fef3c7;
}

.luxvoya-welcome-text a {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.luxvoya-welcome-text a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
  text-decoration: none;
  color: #ffffff;
}

.luxvoya-welcome-area-img {
  position: relative;
}

.luxvoya-welcome-area-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-color);
}

/* Header Bottom Section */
.luxvoya-header-bottom-section {
  width: 100%;
  display: flex;
  padding: 15px 0;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  background: #fffbeb;
}

.luxvoya-header-bottom-section img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.luxvoya-header-bottom-section img:hover {
  opacity: 1;
}

/* Inner Details Section */
.luxvoya-inner-details-section {
  padding: 80px 0;
  background: #ffffff;
}

.luxvoya-inner-details-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 800;
}

.luxvoya-inner-details-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 30px 0 20px;
  font-weight: 700;
}

.luxvoya-inner-details-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.luxvoya-inner-details-section ul,
.luxvoya-inner-details-section ol {
  padding-left: 30px;
  margin: 20px 0;
}

.luxvoya-inner-details-section li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 12px;
}

.luxvoya-inner-details-section a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.luxvoya-inner-details-section a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Contact Page */
.luxvoya-contact-contant {
  padding: 80px 0;
  background: #ffffff;
}

.luxvoya-contact-contant p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.luxvoya-contact-contant a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.luxvoya-contact-contant a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Contact Form */
.luxvoya-send-text {
  max-width: 700px;
  margin: 50px auto 0;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-color);
}

.luxvoya-send-text label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-text,
.input-text:focus {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #fde68a;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #fffbeb;
}

.input-text:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.input-text-msg {
  min-height: 150px;
  resize: vertical;
}

.luxvoya-send-free {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.luxvoya-send-free:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
}

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #fde68a;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #fffbeb;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

/* FAQ/Disclaimer Area */
.luxvoya-faq-area {
  width: 100%;
  padding: 100px 0;
  background: #fffbeb;
}

.luxvoya-faq-area .container {
  max-width: 900px;
}

.luxvoya-faq-area h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.luxvoya-faq-area p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

.luxvoya-colleps-text {
  padding: 25px 30px;
  background: #ffffff;
  border: 3px solid var(--primary-color);
  border-top: none;
  border-radius: 0 0 15px 15px;
  margin-top: -15px;
}

.luxvoya-faq-area .btn {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  border: 3px solid var(--primary-color);
  text-align: left;
  box-shadow: none !important;
  padding: 25px 60px 25px 30px;
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.luxvoya-faq-area .btn:hover {
  background: #fffbeb;
  border-color: var(--secondary-color);
}

.luxvoya-faq-area .btn::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.luxvoya-faq-area .btn[aria-expanded="true"]::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.luxvoya-faq-area .collapse.show,
.luxvoya-faq-area .collapsing {
  border: 3px solid var(--primary-color);
  border-radius: 0 0 15px 15px;
  border-top: none;
}

.luxvoya-colleps-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.luxvoya-colleps-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Copyright/Footer Text */
.copyright-area {
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copy-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #fef3c7;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 20px;
}

.copy-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.copy-text a:hover {
  text-decoration: underline;
}

/* Symbol/Banner Area */
.luxvoya-symbol-area {
  width: 100%;
  display: flex;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #075985 100%);
  position: relative;
}

.luxvoya-symbol-area span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.luxvoya-symbol-area h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #ffffff;
}

.luxvoya-symbol-area p {
  color: #fef3c7;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* Game/Iframe Area */
.luxvoya-game-area {
  background: #ffffff;
  padding: 80px 0;
}

.luxvoya-game-area h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.luxvoya-game-area p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.ifreamcontainer {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid var(--primary-color);
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive for Inner Pages */
@media (max-width: 992px) {
  .luxvoya-welcome-area-reverce .row {
    flex-direction: column;
  }

  .luxvoya-welcome-text {
    margin-top: 40px;
  }

  .luxvoya-welcome-area-img img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .luxvoya-inner-page-header1 h2 {
    font-size: 2.5rem;
  }

  .luxvoya-welcome-text h2 {
    font-size: 2rem;
  }

  .luxvoya-faq-area h2 {
    font-size: 2rem;
  }

  .luxvoya-faq-area .btn {
    font-size: 1rem;
    padding: 20px 50px 20px 25px;
  }

  .luxvoya-header-bottom-section img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .luxvoya-welcome-area-img img {
    height: 300px;
  }

  .luxvoya-send-text {
    padding: 30px 20px;
  }
}