@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #c6ff00;      /* Lime-Yellow */
  --primary-dark: #b2e600;
  --secondary: #8b5cf6;     /* Vibrant Purple */
  --secondary-light: #f3e8ff;
  --accent: #2563eb;        /* Royal/Electric Blue */
  --accent-dark: #1d4ed8;
  --dark-bg: #0a0f1d;       /* Dark Navy / Slate */
  --dark-card: #131a30;
  --light-bg: #f8fafc;      /* Light Background */
  --light-card: #ffffff;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --border-radius: 24px;
  --border-radius-sm: 12px;
  --border-radius-pill: 50px;
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 20px 40px -15px rgba(139, 92, 246, 0.1);
  --shadow-hover: 0 30px 50px -15px rgba(139, 92, 246, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

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

.section-label {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-dark .section-label {
  color: var(--primary);
}

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

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

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.section-dark .section-header p {
  color: #94a3b8;
}

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

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

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

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

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

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

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

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

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

.badge-pill {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-lime {
  background-color: var(--primary);
  color: var(--text-dark);
}

.badge-purple {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: var(--light-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-subtle);
}

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

.navbar-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-cta {
  background-color: var(--accent);
  color: var(--text-light) !important;
  padding: 10px 24px !important;
  border-radius: var(--border-radius-pill);
}

.nav-cta:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

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

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

.hero-label {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero h1 span.highlight {
  color: var(--secondary);
  position: relative;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
}

.hero-stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.hero-stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-main-img {
  width: 90%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
  height: 500px;
}

.hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: var(--light-card);
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 250px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-floating-card .icon-box {
  background: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-floating-card h4 {
  font-size: 16px;
  font-weight: 700;
}

.hero-floating-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(198,255,0,0.15) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Feature Grid Highlight Section */
.feature-highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.feature-large-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-large-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-large-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.feature-large-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-large-content h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-large-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-right-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-purple-card {
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.feature-purple-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-purple-card h3 {
  color: var(--text-light);
  font-size: 36px;
  margin-bottom: 16px;
  z-index: 2;
}

.feature-purple-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 24px;
  z-index: 2;
}

.feature-purple-card .arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 700;
  z-index: 2;
  transition: var(--transition);
}

.feature-purple-card:hover .arrow-btn {
  transform: scale(1.1);
}

.feature-blue-card {
  background-color: var(--accent);
  color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.feature-blue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-blue-card h3 {
  color: var(--text-light);
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-blue-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.feature-blue-card .status-bar-custom {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-pill);
  height: 8px;
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
}

.feature-blue-card .status-progress {
  background: var(--primary);
  height: 100%;
  width: 85%;
  border-radius: var(--border-radius-pill);
}

/* Numbered Grid (Benefits) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

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

.benefit-num {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-num {
  opacity: 1;
  color: var(--secondary);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #0f172a!important;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Services Section (Three Column Layout) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

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

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

.service-body {
  padding: 32px;
}

.service-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-body p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 15px;
}

/* Showcase Grid Section */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.showcase-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.showcase-img-box {
  position: relative;
  height: 300px;
}

.showcase-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.showcase-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.showcase-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a!important;
  margin-bottom: 12px;
}

.showcase-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
  margin-top: 20px;
}

.showcase-price {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}

.showcase-price span.original {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 8px;
}

/* Logos Section */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: var(--light-bg);
}

.logos-title {
  text-align: center;
  font-size: 16px;
  font-family: var(--font-headings);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition);
}

.logo-item:hover {
  opacity: 1;
  color: var(--secondary);
}

/* Testimonial Panel (Lime Green) */
.testimonial-panel {
  background-color: var(--primary);
  border-radius: var(--border-radius);
  padding: 80px;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.testimonial-panel h2 {
  color: var(--text-dark);
  font-size: 42px;
  margin-bottom: 48px;
  max-width: 600px;
}

.testimonial-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.testimonial-author-card.active {
  background: #ffffff;
  border-color: rgba(0,0,0,0.05);
  box-shadow: var(--shadow-medium);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author-info p {
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.8;
}

.testimonial-right {
  display: flex;
  align-items: center;
  position: relative;
}

.testimonial-content-box {
  background: #ffffff;
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 20px;
}

.testimonial-active-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* FAQ Section & Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--light-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
      color: #0f172a;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-right-card {
  position: relative;
  background: var(--light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.faq-right-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.faq-right-content {
  padding: 32px;
  text-align: center;
}

.faq-right-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.faq-right-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Footer Section */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  font-size: 15px;
}

.footer h4 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand h2 {
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand h2 span {
  color: var(--primary);
}

.footer-brand p {
  color: #94a3b8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--text-dark);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

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

.footer-col ul a {
  color: #94a3b8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #64748b;
  font-size: 14px;
}

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

.footer-bottom-links a {
  color: #64748b;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -500px;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  border-top: 2px solid var(--primary);
  padding: 24px 0;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-light);
}

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

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

.cookie-inner p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 0;
}

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

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

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

/* Inner Page Header */
.inner-header {
  padding: 140px 0 80px 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
  position: relative;
}

.inner-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
}

.inner-header p {
  color: #94a3b8;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact / Booking Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--light-card);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0,0,0,0.03);
}

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

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

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  background-color: #f8fafc;
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

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

/* Grid layout for features and casino pages */
.experience-intro {
  margin-bottom: 60px;
}

.experience-intro h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.experience-intro p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 800px;
}

.info-banner-card {
  background: var(--secondary-light);
  border-radius: var(--border-radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 80px;
}

.info-banner-content h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-banner-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 16px;
}

/* Legal Page Content Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 16px 0;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p {
    margin: 0 auto 36px auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    justify-content: center;
  }
  
  .hero-main-img {
    width: 100%;
    height: 400px;
  }
  
  .feature-highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid, .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-panel {
    padding: 40px;
  }
  
  .testimonial-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--light-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .benefits-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  
  .logos-grid {
    justify-content: center;
    gap: 24px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .inner-header h1 {
    font-size: 36px;
  }
  
  .contact-form-card {
    padding: 24px;
  }
  
  .info-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
}
