/**
 * FixtACourse - VTC Reservation App CSS
 * Design cohérent avec fixtacourse.fr
 * 11 Pages de réservation - Style Uber
 */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors - FixtACourse */
  --vtc-gold: #d4af37;
  --vtc-gold-light: #e8c95a;
  --vtc-gold-dark: #b8962f;
  --vtc-navy: #1B365D;
  --vtc-navy-light: #2a4a7a;
  --vtc-navy-dark: #0f1f38;

  /* Neutrals */
  --vtc-white: #FFFFFF;
  --vtc-off-white: #FAFAFA;
  --vtc-gray-100: #F5F5F5;
  --vtc-gray-200: #E8E8E8;
  --vtc-gray-300: #D0D0D0;
  --vtc-gray-400: #A0A0A0;
  --vtc-gray-500: #707070;
  --vtc-gray-600: #505050;
  --vtc-gray-700: #404040;
  --vtc-gray-800: #202020;
  --vtc-black: #0F0F0F;

  /* Typography */
  --vtc-font-display: 'Montserrat', -apple-system, sans-serif;
  --vtc-font-body: 'Poppins', -apple-system, sans-serif;

  /* Spacing */
  --vtc-header-height: 80px;
  --vtc-container-max: 1200px;
  --vtc-container-narrow: 800px;

  /* Effects */
  --vtc-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --vtc-shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --vtc-shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --vtc-shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
  --vtc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vtc-blur: blur(12px);
}

/* ============================================
   WORDPRESS OVERRIDES - Critical resets
   ============================================ */
.wp-site-blocks:has(.vtc-page),
.entry-content:has(.vtc-page),
.wp-block-post-content:has(.vtc-page) {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

body:has(.vtc-page) {
  padding: 0 !important;
  margin: 0 !important;
  --wp--style--root--padding-top: 0px !important;
  --wp--style--root--padding-right: 0px !important;
  --wp--style--root--padding-bottom: 0px !important;
  --wp--style--root--padding-left: 0px !important;
}

body:has(.vtc-page) .wp-site-blocks {
  padding: 0 !important;
}

/* Hide WordPress admin bar artifacts and debug lines */
body:has(.vtc-page)::before,
body:has(.vtc-page)::after,
.vtc-page::before,
.vtc-page::after {
  display: none !important;
}

/* Remove any red borders/outlines from WordPress */
body:has(.vtc-page) *:not(.vtc-cta):not(.vtc-airport-badge) {
  border-color: transparent;
  outline: none;
}

/* Ensure full width on WordPress wrappers */
body:has(.vtc-page) .is-layout-constrained > *,
body:has(.vtc-page) .is-layout-flow > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================
   RESET & BASE
   ============================================ */
.vtc-page,
.vtc-page * {
  box-sizing: border-box;
}

.vtc-page {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  font-family: var(--vtc-font-body) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--vtc-black) !important;
  background: var(--vtc-white) !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* ============================================
   HEADER - FIXED NAVBAR
   ============================================ */
.vtc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vtc-header-height);
  background: #FFFFFF;
  backdrop-filter: var(--vtc-blur);
  -webkit-backdrop-filter: var(--vtc-blur);
  border-bottom: 2px solid var(--vtc-gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--vtc-transition);
}

.vtc-header-container {
  max-width: var(--vtc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Brand/Logo */
.vtc-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0;
}

.vtc-brand-name {
  font-family: var(--vtc-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vtc-navy) !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block !important;
  visibility: visible !important;
}

.vtc-brand-tagline {
  font-family: var(--vtc-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--vtc-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Navigation */
.vtc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vtc-nav a {
  font-family: var(--vtc-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vtc-gray-700);
  text-decoration: none;
  transition: var(--vtc-transition);
  position: relative;
}

.vtc-nav a:hover {
  color: var(--vtc-navy);
}

.vtc-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vtc-gold);
  transition: var(--vtc-transition);
}

.vtc-nav a:hover::after {
  width: 100%;
}

/* Header Actions */
.vtc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.vtc-lang {
  font-family: var(--vtc-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vtc-gray-600);
  background: transparent;
  border: 1px solid var(--vtc-gray-300);
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--vtc-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

.vtc-lang:hover {
  border-color: var(--vtc-navy);
}

/* CTA Button */
.vtc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vtc-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtc-white);
  background: linear-gradient(135deg, var(--vtc-navy) 0%, var(--vtc-navy-light) 100%);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--vtc-transition);
  box-shadow: var(--vtc-shadow-sm);
}

.vtc-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--vtc-shadow-md);
  background: linear-gradient(135deg, var(--vtc-navy-light) 0%, var(--vtc-gold) 100%);
}

.vtc-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Mobile Menu Toggle */
.vtc-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vtc-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vtc-navy);
  margin: 5px 0;
  transition: var(--vtc-transition);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.vtc-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: calc(var(--vtc-header-height) + 20px) 24px 48px;
  min-height: auto;
}

.vtc-hero-text {
  text-align: center;
  max-width: 600px;
  margin-bottom: 32px;
}

.vtc-title {
  font-family: var(--vtc-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--vtc-navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.vtc-subtitle {
  font-family: var(--vtc-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--vtc-gray-500);
  margin: 0;
}

/* Form Container */
.vtc-form-wrapper {
  width: 100%;
  max-width: var(--vtc-container-narrow);
}

.vtc-form-container {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  padding: 32px;
  transition: var(--vtc-transition);
  max-width: 900px;
  margin: 0 auto;
}

.vtc-form-container:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.vtc-footer {
  background: var(--vtc-navy-dark);
  color: var(--vtc-white);
  padding: 64px 24px 32px;
}

/* Footer - Force text visibility */
.vtc-footer .vtc-brand-name {
  color: #FFFFFF !important;
  font-size: 1.75rem;
}

.vtc-footer p,
.vtc-footer span,
.vtc-footer a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.vtc-footer a:hover {
  color: #FFFFFF !important;
}

.vtc-footer-container {
  max-width: var(--vtc-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Footer Brand */
.vtc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vtc-footer-brand .vtc-brand-name {
  color: var(--vtc-white);
  font-size: 1.75rem;
}

.vtc-footer-tagline {
  font-family: var(--vtc-font-body);
  font-size: 0.9rem;
  color: var(--vtc-gold);
  font-weight: 500;
  font-style: italic;
}

.vtc-footer-desc {
  font-size: 0.9rem;
  color: var(--vtc-gray-400);
  line-height: 1.7;
  margin: 0;
}

/* Social Links */
.vtc-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.vtc-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--vtc-white);
  text-decoration: none;
  transition: var(--vtc-transition);
}

.vtc-social a:hover {
  background: var(--vtc-gold);
  color: var(--vtc-navy-dark);
}

.vtc-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Links */
.vtc-footer-links h4 {
  font-family: var(--vtc-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtc-white);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vtc-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vtc-footer-links a {
  font-size: 0.9rem;
  color: var(--vtc-gray-400);
  text-decoration: none;
  transition: var(--vtc-transition);
}

.vtc-footer-links a:hover {
  color: var(--vtc-gold);
}

/* Footer Contact */
.vtc-footer-contact h4 {
  font-family: var(--vtc-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtc-white);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vtc-footer-contact p {
  font-size: 0.9rem;
  color: var(--vtc-gray-400);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vtc-footer-contact a {
  color: var(--vtc-gray-400);
  text-decoration: none;
  transition: var(--vtc-transition);
}

.vtc-footer-contact a:hover {
  color: var(--vtc-gold);
}

.vtc-footer-contact .vtc-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.vtc-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  color: var(--vtc-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
}

.vtc-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--vtc-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Footer Bottom */
.vtc-footer-bottom {
  max-width: var(--vtc-container-max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.vtc-copyright {
  font-size: 0.85rem;
  color: var(--vtc-gray-500);
}

.vtc-legal {
  display: flex;
  gap: 24px;
}

.vtc-legal a {
  font-size: 0.85rem;
  color: var(--vtc-gray-500);
  text-decoration: none;
  transition: var(--vtc-transition);
}

.vtc-legal a:hover {
  color: var(--vtc-gold);
}

/* ============================================
   PAGE VARIANTS - COLORS & THEMES
   ============================================ */

/* Page 1 - Standard Elegant (Default Light) */
.vtc-page-1 {
  background: var(--vtc-off-white);
}

/* Page 1 - Navbar avec relief */
.vtc-page-1 .vtc-header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--vtc-gray-200);
}

/* Page 1 - Formulaire encart arrondi */
.vtc-page-1 .vtc-form-container {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.vtc-page-1 .vtc-form-container:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

/* Page 2 - USA Cash (Dark with Green) */
.vtc-page-2 {
  --page-accent: #85BB65;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.vtc-page-2 .vtc-header {
  background: rgba(10,10,10,0.95);
  border-bottom-color: var(--page-accent);
}

.vtc-page-2 .vtc-brand-name { color: var(--page-accent); }
.vtc-page-2 .vtc-brand-tagline { color: var(--vtc-gray-400); }
.vtc-page-2 .vtc-nav a { color: var(--vtc-gray-400); }
.vtc-page-2 .vtc-nav a:hover { color: var(--vtc-white); }
.vtc-page-2 .vtc-cta { background: var(--page-accent); color: #0a0a0a; }

.vtc-page-2 .vtc-title { color: var(--page-accent); }
.vtc-page-2 .vtc-subtitle { color: var(--vtc-gray-400); }

.vtc-page-2 .vtc-form-container {
  background: #1f1f1f;
  border: 2px solid var(--page-accent);
  box-shadow: 0 0 40px rgba(133,187,101,0.15);
}

.vtc-page-2 .vtc-badge {
  display: inline-block;
  background: var(--page-accent);
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Page 3 - Forfait Semaine (Business Navy) */
.vtc-page-3 {
  --page-accent: #89CFF0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A4B 100%);
}

.vtc-page-3 .vtc-header {
  background: rgba(13,27,42,0.95);
  border-bottom-color: rgba(137,207,240,0.3);
}

.vtc-page-3 .vtc-brand-name { color: var(--vtc-white); }
.vtc-page-3 .vtc-brand-tagline { color: var(--page-accent); }
.vtc-page-3 .vtc-nav a { color: var(--vtc-gray-300); }
.vtc-page-3 .vtc-nav a:hover { color: var(--vtc-white); }
.vtc-page-3 .vtc-cta { background: var(--page-accent); color: #0D1B2A; }

.vtc-page-3 .vtc-title { color: var(--vtc-navy) !important; }
.vtc-page-3 .vtc-subtitle { color: var(--vtc-gray-400); }

.vtc-page-3 .vtc-form-container {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(137,207,240,0.2);
}

.vtc-page-3 .vtc-schedule-badge {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.vtc-page-3 .vtc-schedule-badge span {
  background: var(--page-accent);
  color: #0D1B2A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Page 4 - Premium UK (Black & Gold Luxury) */
.vtc-page-4 {
  --page-accent: #CFB53B;
  background: #0A0A0A;
}

.vtc-page-4 .vtc-header {
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--page-accent);
}

.vtc-page-4 .vtc-brand-name {
  color: var(--page-accent);
  letter-spacing: 0.1em;
}
.vtc-page-4 .vtc-brand-tagline { color: var(--vtc-gray-500); }
.vtc-page-4 .vtc-nav a { color: var(--vtc-gray-400); letter-spacing: 0.05em; }
.vtc-page-4 .vtc-nav a:hover { color: var(--page-accent); }
.vtc-page-4 .vtc-nav a::after { background: var(--page-accent); }
.vtc-page-4 .vtc-cta {
  background: transparent;
  border: 1px solid var(--page-accent);
  color: var(--page-accent);
}
.vtc-page-4 .vtc-cta:hover {
  background: var(--page-accent);
  color: #0A0A0A;
}

.vtc-page-4 .vtc-title {
  color: var(--page-accent);
  letter-spacing: 0.05em;
}
.vtc-page-4 .vtc-subtitle { color: var(--vtc-gray-500); }

.vtc-page-4 .vtc-form-container {
  background: var(--vtc-white);
  border: 2px solid var(--page-accent);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(207, 181, 59, 0.3);
  padding: 8px;
}

.vtc-page-4 .vtc-form-container:hover {
  box-shadow: 0 8px 30px rgba(207, 181, 59, 0.5);
  border-color: var(--page-accent);
}

.vtc-page-4 .chbs-main {
  border: 1px solid rgba(207, 181, 59, 0.3);
  border-radius: 6px;
  background: var(--vtc-white);
}

/* Page 5 - France Aéroport (Tricolor Clean) */
.vtc-page-5 {
  --page-blue: #0055A4;
  --page-red: #EF4135;
  background: var(--vtc-white);
}

.vtc-page-5 .vtc-header {
  background: rgba(255,255,255,0.98);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--page-blue) 33%, var(--vtc-white) 33%, var(--vtc-white) 66%, var(--page-red) 66%) 1;
}

.vtc-page-5 .vtc-brand-name { color: var(--page-blue); }
.vtc-page-5 .vtc-title { color: var(--page-blue); }

.vtc-page-5 .vtc-airports {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.vtc-page-5 .vtc-airport-badge {
  background: var(--page-blue);
  color: var(--vtc-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vtc-page-5 .vtc-form-container {
  box-shadow: 0 8px 40px rgba(0,85,164,0.12);
}

/* ============================================
   Page 6 - Berlin Zone (Brutalist Yellow)
   ONLY page-level styles - NO CHBS form overrides
   ============================================ */
.vtc-page-6 {
  --page-accent: #FFCC00;
  background: #2D2D2D !important;
}

/* WordPress override for vtc-page-6 background */
body:has(.vtc-page-6),
body:has(.vtc-page-6) .wp-site-blocks,
body:has(.vtc-page-6) .entry-content,
body:has(.vtc-page-6) .wp-block-post-content {
  background: #2D2D2D !important;
}

.vtc-page-6.vtc-page {
  background: #2D2D2D !important;
  color: #FFFFFF !important;
}

/* Berlin Header - avec relief */
.vtc-page-6 .vtc-header {
  background: #1A1A1A;
  border-bottom: 4px solid var(--page-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.vtc-page-6 .vtc-brand-name {
  color: var(--page-accent);
  font-family: var(--vtc-font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.vtc-page-6 .vtc-brand-tagline {
  display: none;
}

.vtc-page-6 .vtc-nav a {
  color: var(--vtc-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.vtc-page-6 .vtc-nav a:hover {
  color: var(--page-accent);
}

.vtc-page-6 .vtc-cta {
  background: var(--page-accent);
  color: #2D2D2D;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Berlin Hero Section - CENTREE */
.vtc-page-6 .vtc-hero {
  text-align: center;
}

.vtc-page-6 .vtc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Berlin Hero Title with yellow background */
.vtc-page-6 .vtc-title {
  color: #1A1A1A !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--page-accent);
  padding: 16px 32px;
  display: inline-block;
  font-weight: 900;
  margin: 0 auto 16px;
}

/* Berlin Subtitle with yellow background */
.vtc-page-6 .vtc-subtitle {
  color: #1A1A1A !important;
  background: var(--page-accent);
  padding: 8px 20px;
  display: inline-block;
  font-weight: 600;
  margin: 0 auto 24px;
}

/* Berlin Zone Info Bar - Yellow with DARK text - CENTREE */
.vtc-page-6 .vtc-zone-info {
  background: var(--page-accent) !important;
  color: #1A1A1A !important;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  display: inline-block;
  margin: 0 auto 32px;
  text-align: center;
}

/* Berlin Form Container - Encart blanc arrondi */
.vtc-page-6 .vtc-form-container {
  background: #FFFFFF;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.vtc-page-6 .vtc-form-container:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}

/* Page 7 - Weekend Events (Neon Festive) */
.vtc-page-7 {
  --page-pink: #FF6B9D;
  --page-cyan: #00D4FF;
  background: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 100%) !important;
}

/* WordPress override for vtc-page-7 background */
body:has(.vtc-page-7),
body:has(.vtc-page-7) .wp-site-blocks,
body:has(.vtc-page-7) .entry-content,
body:has(.vtc-page-7) .wp-block-post-content {
  background: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 100%) !important;
}

.vtc-page-7.vtc-page {
  background: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 100%) !important;
}

.vtc-page-7 .vtc-header {
  background: rgba(26,10,46,0.95);
  border-bottom-color: transparent;
}

.vtc-page-7 .vtc-brand-name {
  background: linear-gradient(90deg, var(--page-pink), var(--page-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vtc-page-7 .vtc-brand-tagline { color: var(--vtc-gray-500); }
.vtc-page-7 .vtc-nav a { color: var(--vtc-gray-400); }
.vtc-page-7 .vtc-nav a:hover { color: var(--vtc-white); }
.vtc-page-7 .vtc-nav a::after { background: linear-gradient(90deg, var(--page-pink), var(--page-cyan)); }
.vtc-page-7 .vtc-cta { background: linear-gradient(135deg, var(--page-pink), var(--page-cyan)); }

.vtc-page-7 .vtc-title { color: var(--vtc-white); }
.vtc-page-7 .vtc-subtitle { color: var(--vtc-gray-400); }

.vtc-page-7 .vtc-weekend-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.vtc-page-7 .vtc-weekend-badges span {
  background: linear-gradient(135deg, var(--page-pink), var(--page-cyan));
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vtc-white);
}

.vtc-page-7 .vtc-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  align-items: start;
}

.vtc-page-7 .vtc-form-container {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: 20px;
}

.vtc-page-7 .vtc-sidebar {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: calc(var(--vtc-header-height) + 24px);
  color: #FFFFFF !important;
}

.vtc-page-7 .vtc-sidebar h3 {
  font-family: var(--vtc-font-display);
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--page-cyan) !important;
}

.vtc-page-7 .vtc-sidebar p,
.vtc-page-7 .vtc-sidebar span,
.vtc-page-7 .vtc-sidebar div {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Page 8-11 - Widget Styles */

/* Page 8 - Widget Hero Horizontal */
.vtc-page-8 {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231B365D" width="100" height="100"/></svg>');
  background-size: cover;
  background-position: center;
}

.vtc-page-8 .vtc-header {
  background: transparent;
  border-bottom: none;
}

.vtc-page-8 .vtc-brand-name { color: var(--vtc-white); }
.vtc-page-8 .vtc-brand-tagline { color: var(--vtc-gold); }
.vtc-page-8 .vtc-nav a { color: var(--vtc-gray-300); }
.vtc-page-8 .vtc-nav a:hover { color: var(--vtc-white); }

.vtc-page-8 .vtc-main {
  padding-top: calc(var(--vtc-header-height) + 80px);
}

.vtc-page-8 .vtc-title {
  color: var(--vtc-navy) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.vtc-page-8 .vtc-subtitle { color: var(--vtc-gray-500); font-size: 1.1rem; }

.vtc-page-8 .vtc-form-wrapper { max-width: 900px; }

.vtc-page-8 .vtc-form-container {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  padding: 16px 32px;
}

/* Page 9 - Widget Vertical Split */
.vtc-page-9 {
  --page-accent: #50C878;
  background: var(--vtc-off-white);
}

.vtc-page-9 .vtc-header {
  background: rgba(255,255,255,0.98);
}

.vtc-page-9 .vtc-main {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  padding: var(--vtc-header-height) 0 0;
  min-height: 100vh;
  align-items: stretch;
}

.vtc-page-9 .vtc-form-section {
  background: var(--vtc-white);
  padding: 48px 32px;
  border-right: 1px solid var(--vtc-gray-200);
  display: flex;
  flex-direction: column;
}

.vtc-page-9 .vtc-form-section .vtc-hero-text {
  text-align: left;
  margin-bottom: 24px;
}

.vtc-page-9 .vtc-form-container {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.vtc-page-9 .vtc-visual {
  background: linear-gradient(135deg, var(--page-accent) 0%, #3DA660 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.vtc-page-9 .vtc-visual-content {
  text-align: center;
  color: var(--vtc-white);
}

.vtc-page-9 .vtc-visual-content h2 {
  font-family: var(--vtc-font-display);
  font-size: 2.5rem;
  margin: 0 0 16px;
}

/* Page 10 - Widget Mini Header */
.vtc-page-10 {
  --page-accent: #FFD700;
  background: #000000;
}

.vtc-page-10 .vtc-header {
  background: #000000;
  border-bottom: 1px solid rgba(255,215,0,0.3);
  height: auto;
  padding: 12px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.vtc-page-10 .vtc-header-container {
  flex-wrap: wrap;
}

.vtc-page-10 .vtc-brand-name { color: var(--page-accent); }
.vtc-page-10 .vtc-brand-tagline { color: var(--vtc-gray-500); }

.vtc-page-10 .vtc-header-widget {
  flex: 1;
  min-width: 300px;
}

.vtc-page-10 .vtc-header-widget .vtc-form-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.vtc-page-10 .vtc-main {
  padding-top: 160px;
}

.vtc-page-10 .vtc-title {
  color: var(--page-accent);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}
.vtc-page-10 .vtc-subtitle { color: var(--vtc-gray-500); font-size: 1.2rem; }

/* Page 11 - Widget Mini Mobile */
.vtc-page-11 {
  max-width: 480px;
  margin: 0 auto;
  background: var(--vtc-white);
  box-shadow: var(--vtc-shadow-lg);
}

.vtc-page-11 .vtc-header {
  position: relative;
  background: var(--vtc-white);
  height: 60px;
  border-bottom: 1px solid var(--vtc-gray-200);
}

.vtc-page-11 .vtc-header-container {
  padding: 0 16px;
}

.vtc-page-11 .vtc-nav { display: none; }

.vtc-page-11 .vtc-main {
  padding: 24px 16px;
  min-height: calc(100vh - 60px - 200px);
}

.vtc-page-11 .vtc-hero-text {
  text-align: left;
}

.vtc-page-11 .vtc-title { font-size: 1.5rem; }
.vtc-page-11 .vtc-subtitle { font-size: 0.9rem; }

.vtc-page-11 .vtc-form-container {
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.vtc-page-11 .vtc-footer {
  padding: 48px 24px 32px;
}

.vtc-page-11 .vtc-footer-container {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* vtc-page-11 footer mobile */
@media (max-width: 768px) {
  .vtc-page-11 .vtc-footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   CHBS FORM PLUGIN OVERRIDES
   ============================================ */
.vtc-form-container .chbs-main {
  max-width: 100% !important;
  margin: 0 !important;
}

/* Dark theme text colors for pages that need it */
.vtc-page-2 .chbs-main,
.vtc-page-3 .chbs-main,
.vtc-page-4 .chbs-main,
.vtc-page-7 .chbs-main,
.vtc-page-8 .chbs-main,
.vtc-page-10 .chbs-main {
  color: var(--vtc-white);
}

.vtc-page-2 .chbs-main input,
.vtc-page-3 .chbs-main input,
.vtc-page-4 .chbs-main input,
.vtc-page-7 .chbs-main input,
.vtc-page-8 .chbs-main input,
.vtc-page-10 .chbs-main input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--vtc-white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .vtc-page-7 .vtc-main {
    grid-template-columns: 1fr;
  }

  .vtc-page-7 .vtc-sidebar {
    position: relative;
    top: 0;
  }

  .vtc-page-9 .vtc-main {
    grid-template-columns: 1fr;
  }

  .vtc-page-9 .vtc-visual {
    min-height: 300px;
  }

  .vtc-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --vtc-header-height: 70px;
  }

  .vtc-header-container {
    padding: 0 16px;
  }

  .vtc-nav {
    display: none;
  }

  .vtc-menu-toggle {
    display: block;
  }

  .vtc-main {
    padding: calc(var(--vtc-header-height) + 32px) 16px 32px;
  }

  .vtc-form-container {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .vtc-footer {
    padding: 48px 16px 24px;
  }

  .vtc-footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .vtc-social {
    justify-content: center;
  }

  .vtc-footer-links ul {
    align-items: center;
  }

  .vtc-footer-contact p {
    justify-content: center;
  }

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

  .vtc-page-8 .vtc-form-container {
    border-radius: 16px;
    padding: 20px;
  }

  .vtc-page-10 .vtc-header-widget {
    display: none;
  }
}

@media (max-width: 480px) {
  .vtc-title {
    font-size: 1.5rem;
  }

  .vtc-form-container {
    padding: 20px 16px;
  }

  .vtc-cta {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vtc-main {
  animation: fadeInUp 0.6s ease-out;
}

.vtc-form-container {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.vtc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.vtc-text-center { text-align: center; }
.vtc-text-left { text-align: left; }
.vtc-mb-0 { margin-bottom: 0; }
.vtc-mb-1 { margin-bottom: 8px; }
.vtc-mb-2 { margin-bottom: 16px; }
.vtc-mb-3 { margin-bottom: 24px; }
.vtc-mb-4 { margin-bottom: 32px; }
