/* ==========================================================================
   VELVET VENUE CO - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

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

:root {
  /* Color Palette - Derived from reference image */
  --primary-red: #e30016;
  --primary-red-hover: #c40012;
  --color-secondary: #0b1120;
  --color-secondary-hover: #1e293b;
  --color-dark: #0f172a;
  --color-light: #f8fafc;
  --color-white: #ffffff;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-red-light: #fef2f2;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 12px 24px -10px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 30px 50px -10px rgba(15, 23, 42, 0.2), 0 15px 30px -15px rgba(15, 23, 42, 0.2);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--color-muted);
}

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

ul {
  list-style: none;
}

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

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

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

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

.section-navy {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section-navy h2, .section-navy h3 {
  color: var(--color-white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.7);
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 0, 22, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(11, 17, 32, 0.15);
}

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

.btn-outline-red:hover {
  background-color: var(--primary-red);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 0, 22, 0.2);
}

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

.btn-white:hover {
  background-color: var(--color-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Sticky Clean Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-secondary);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

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

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-cta {
  margin-left: 10px;
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

/* Page Hero Header (Inner pages) */
.page-hero {
  padding: 160px 0 100px 0;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(227, 0, 22, 0.15) 0%, transparent 60%);
  z-index: 1;
}

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

.page-hero h1 {
  font-size: 46px;
  color: var(--color-white);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section (Replicating RoxRide layout) */
.hero-section {
  padding: 180px 0 140px 0;
  background-color: var(--color-secondary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(227, 0, 22, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-badge-circle {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, -40%);
  background-color: var(--primary-red);
  color: var(--color-white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(227, 0, 22, 0.3);
  animation: float 4s ease-in-out infinite alternate;
}

.hero-badge-circle span {
  font-size: 11px;
  font-weight: 400;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-red);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

/* Overlapping Booking Search Card */
.booking-search-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border-bottom: 4px solid var(--primary-red);
}

.booking-search-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--color-border);
  background-color: var(--color-light);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-red);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(227, 0, 22, 0.1);
}

/* Tabbed Events Grid */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-muted);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

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

.event-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.event-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

.event-card:hover .event-img img {
  transform: scale(1.08);
}

.event-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

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

.event-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.event-body p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.event-meta {
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

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

.event-footer {
  padding: 0 20px 20px 20px;
}

.event-footer .btn {
  width: 100%;
  padding: 10px 0;
  font-size: 13px;
}

/* Split Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 30px;
}

.adv-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.adv-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.adv-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.adv-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.adv-item h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
}

.adv-item p {
  font-size: 14px;
}

.adv-center-img {
  position: relative;
  text-align: center;
}

.adv-center-img img {
  max-width: 90%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Global Network Split Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.showcase-img-wrap {
  position: relative;
}

.showcase-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-red);
  color: var(--color-white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.showcase-badge span {
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.showcase-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-secondary);
}

.check-list li i {
  color: var(--primary-red);
  font-size: 18px;
}

/* Brand Sponsor Strip */
.sponsor-strip {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-light);
}

.sponsor-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.sponsor-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-muted);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.sponsor-item:hover {
  opacity: 1;
  color: var(--primary-red);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-red-light);
  color: var(--primary-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--primary-red);
  color: var(--color-white);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
}

.service-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background-color: var(--color-light);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition-fast);
}

.service-card:hover .service-arrow {
  background-color: var(--primary-red);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Double Banners CTA */
.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.banner-item {
  border-radius: var(--radius-lg);
  padding: 50px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.banner-red {
  background-color: var(--primary-red);
}

.banner-navy {
  background-color: var(--color-secondary);
}

.banner-item h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.banner-item p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 15px;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.banner-item .btn {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.banner-bg-decor {
  position: absolute;
  right: -5%;
  bottom: -10%;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  font-weight: 800;
}

/* Booking Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--primary-red);
  background-color: var(--color-red-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-text p {
  font-size: 14px;
}

.steps-image-wrap {
  position: relative;
}

.steps-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.steps-floating-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary-red);
}

.steps-floating-badge h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 4px;
}

.steps-floating-badge p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Discover Freedom Full Width */
.discover-banner {
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: var(--color-white);
}

.discover-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 17, 32, 0.75);
  z-index: 1;
}

.discover-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.discover-banner h2 {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 24px;
}

.play-btn {
  width: 70px;
  height: 70px;
  background-color: var(--primary-red);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 0 rgba(227, 0, 22, 0.5);
  animation: pulse 2s infinite;
  margin-top: 20px;
}

.play-btn:hover {
  background-color: var(--primary-red-hover);
  transform: scale(1.1);
}

/* Testimonials Layout */
.testimonials-slider {
  display: flex;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.test-stars {
  color: #fbbf24;
  margin-bottom: 20px;
}

.testimonial-quote-bubble {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  object-fit: cover;
}

.test-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.test-info span {
  font-size: 12px;
  color: var(--color-muted);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 60px;
  color: rgba(227, 0, 22, 0.05);
  content: '“';
  line-height: 1;
}

/* Latest News (Saison Highlights) Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.news-body {
  padding: 24px;
}

.news-category {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

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

.news-body p {
  font-size: 14px;
  margin-bottom: 20px;
}

.news-footer {
  padding: 0 24px 24px 24px;
}

.news-footer .btn {
  font-size: 13px;
  padding: 10px 20px;
}

/* Footer Section */
.footer {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px 0;
  border-top: 4px solid var(--primary-red);
}

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

.footer-brand {
  flex: 1 1 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-red);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-size: 14px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-col {
  flex: 1 1 180px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -900px;
  left: 0;
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 24px 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 3px solid var(--primary-red);
}

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

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

.cookie-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex: 1 1 600px;
}

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

.cookie-inner a:hover {
  color: var(--color-white);
}

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

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

/* Form Controls and Layout for contact.html */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

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

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--color-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

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

.info-text p {
  font-size: 14px;
}

.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 800;
}

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

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

/* Legal text formatting */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.legal-content h3 {
  font-size: 18px;
  margin: 20px 0 10px 0;
}

.legal-content p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.legal-content li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--color-muted);
}

/* Animations */
@keyframes float {
  0% { transform: translate(50%, -40%) translateY(0); }
  100% { transform: translate(50%, -40%) translateY(-10px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 0, 22, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(227, 0, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 0, 22, 0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-badge-circle {
    right: 10%;
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .booking-search-card {
    margin-top: -30px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .adv-center-img {
    order: -1;
    margin-bottom: 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .navbar {
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-secondary);
    flex-direction: column;
    padding: 100px 40px;
    align-items: flex-start;
    gap: 24px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    z-index: 1000;
  }

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

  .nav-links a {
    font-size: 18px;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-grid .btn {
    width: 100%;
  }

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

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

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

  .discover-banner h2 {
    font-size: 32px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

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