/* styles.css */

/* ------------------------- */
/* ----- ROOT VARIABLES ---- */
/* ------------------------- */
:root {
  --brand-orange: #ea7300;
  --brand-orange-dark: #c05d00;
  --brand-orange-light: #ffe8d6; /* Softer light for backgrounds */
  --brand-orange-rgb: 234, 115, 0;

  --brand-navy: #102e50;
  --brand-navy-light: #1c4980;
  --brand-navy-lighter: #2a67a8; /* For accents */

  --text-dark: #1a202c;  /* Chakra UI gray.800 */
  --text-medium: #4a5568; /* Chakra UI gray.600 */
  --text-light: #718096;  /* Chakra UI gray.500 */
  --text-white: #ffffff;

  --bg-body: #f7fafc;    /* Chakra UI gray.50 */
  --bg-card: #ffffff;
  --bg-card-alt: #edf2f7; /* Chakra UI gray.100 */
  --border-color: #e2e8f0; /* Chakra UI gray.200 */

  --success-green: #38a169; /* Chakra UI green.500 */
  --success-green-light: #c6f6d5; /* Chakra UI green.100 */
  --error-red: #e53e3e;     /* Chakra UI red.500 */
  --error-red-light: #fed7d7; /* Chakra UI red.100 */
  --info-blue: #3182ce;     /* Chakra UI blue.500 */
  --info-blue-light: #bee3f8; /* Chakra UI blue.100 */

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius: 0.5rem;   /* 8px */
  --border-radius-md: 0.75rem; /* 12px */
  --border-radius-lg: 1rem;    /* 16px */
  --border-radius-xl: 1.5rem;  /* 24px */
  --border-radius-full: 9999px;

  --transition-ease: all 0.3s ease-in-out;
  --navbar-height: 75px; /* Define navbar height as a variable */
  
  /* Modern gradients */
  --transition-fast: all 0.15s ease-out;
  --transition-base: all 0.25s ease-out;
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --gradient-brand: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(234, 115, 0, 0.05) 0%, rgba(16, 46, 80, 0.02) 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.2);
}



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

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px */
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.65;
  padding-top: var(--navbar-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  width: 100%;
  max-width: 1200px; /* Slightly wider for modern layouts */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--brand-navy);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75em; /* Consistent bottom margin for headings */
}

h1 { font-size: clamp(2.2rem, 5vw, 3rem); } /* Responsive font size */
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }


p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  max-width: 65ch; /* Optimal reading line length */
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition-ease);
}
a:hover {
  color: var(--brand-orange-dark);
  text-decoration: none; /* Underline often not needed with clear hover states */
}

.text-brand-orange { color: var(--brand-orange) !important; }
.text-brand-navy { color: var(--brand-navy) !important; }
.text-white { color: var(--text-white) !important; }


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem; /* Balanced padding */
  border-radius: var(--border-radius);
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition-ease);
  border: 1px solid transparent;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.btn i { line-height: 1; font-size: 0.9em; } /* Slightly smaller icons */
.btn:focus-visible {
  outline: 2px solid var(--brand-orange-light);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: var(--text-white);
  border-color: var(--brand-orange);
}
.btn-primary:hover {
  background-color: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-primary:disabled {
  background-color: #ccc; border-color: #ccc; color: #666;
  cursor: not-allowed; box-shadow: none; transform: none;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}
.btn-block { width: 100%; display: flex; }

/* Section Styling */
.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-main-title {
  margin-bottom: 0.75rem;
  font-weight: 700; /* Bolder main titles */
}
.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.bg-patterned {
  background-color: var(--brand-orange-light); /* Soft orange background */
  /* Optional: Add a subtle SVG pattern here if desired */
}

/* Form Controls */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-ease);
  background-color: var(--bg-card);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 0.2rem rgba(var(--brand-orange-rgb), 0.2);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

/* ------------------------- */
/* -------- NAVBAR --------- */
/* ------------------------- */
.site-header {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0; /* Container will handle padding */
  height: var(--navbar-height);
  display: flex;
  align-items: center;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-navy); /* Logo text uses brand navy */
}
.site-logo:hover { text-decoration: none; }
.logo-image { height: 2.75rem; }
.logo-text { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.5px; }

/* Desktop Navigation */
.main-navigation { 
  display: flex;
  align-items: center;
}

.nav-link-list {
  display: flex;
  gap: 1.75rem; /* More space between links */
  list-style: none;
  align-items: center;
  margin: 0;
}

.nav-link {
  color: var(--brand-navy);
  font-weight: 500;
  font-size: 1rem; /* Slightly larger nav links */
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-ease);
}

.nav-link:hover, .nav-link.active { 
  color: var(--brand-orange); 
}

.nav-link::after {
  content: ''; 
  position: absolute; 
  width: 0; 
  height: 2.5px; /* Thicker underline */
  bottom: 0px; 
  left: 0; 
  background: var(--brand-orange);
  transition: width 0.25s ease-out; 
  border-radius: 1px;
}

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

.btn-nav-cta { 
  padding: 0.65rem 1.4rem; 
  font-size: 0.95rem; 
  margin-left: 0.5rem; 
}

/* Mobile Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none; 
  border: none;
  outline: none; /* Remove focus outline */
  color: var(--brand-navy);
  font-size: 1.75rem; /* Larger hamburger icon */
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: transparent; /* Remove iOS tap highlight */
  -webkit-appearance: none; /* Remove default button styling */
  -moz-appearance: none; /* Remove default button styling */
  appearance: none; /* Remove default button styling */
}

.hamburger-menu:hover {
  color: var(--brand-orange);
}

.hamburger-menu:focus {
  outline: none; /* Ensure no focus outline */
}



/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.5); 
  backdrop-filter: blur(4px);
  z-index: 999; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.3s ease;
  display: none;
}

.mobile-nav-backdrop.active { 
  opacity: 1; 
  pointer-events: all; 
  display: block;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px;
  background: var(--bg-card);
  padding: calc(var(--navbar-height) + 2rem) 0 2rem;
  transition: right 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -6px 0 20px rgba(0,0,0,0.1);
  z-index: 1001;
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
  display: none; /* Hidden by default */
}

.mobile-nav-menu.active {
  right: 0;
  display: block;
}

.mobile-nav-menu .nav-link-list {
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-nav-menu .nav-link-list li {
  width: 100%;
}

.mobile-nav-menu .nav-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bg-card-alt);
  width: 100%;
}

.mobile-nav-menu .nav-link-list li:last-child .nav-link {
  border-bottom: none;
}

.mobile-nav-menu .nav-link::after {
  display: none;
}

.mobile-nav-menu .btn-nav-cta {
  margin: 1.5rem 2rem 0;
  width: calc(100% - 4rem);
  justify-content: center;
}

/* Body lock when mobile nav is active */
body.mobile-nav-active {
  overflow: hidden;
}

/* ------------------------- */
/* ------ HERO SECTION ----- */
/* ------------------------- */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  padding: 0;
  overflow: hidden;
}

.hero-video-background { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

.hero-video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 46, 80, 0.8) 0%,
    rgba(16, 46, 80, 0.6) 50%,
    rgba(234, 115, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-content-container { 
  position: relative; 
  z-index: 2; 
  text-align: center; 
}

.hero-text-content { 
  max-width: 750px; 
  margin: 0 auto; 
}

.hero-title {
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
  font-weight: 300;
}

.btn-hero-cta {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-orange);
  border: 2px solid transparent;
  animation: pulse 2s infinite;
}

.btn-hero-cta:hover {
  background: var(--text-white);
  color: var(--brand-orange-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ------------------------- */
/* -- GENERATE TICKET SEC -- */
/* ------------------------- */
.generate-ticket-section { background-color: var(--bg-body); } /* Or bg-card if you prefer white */
.generator-card {
  max-width: 750px;
  margin: 0 auto;
  padding: 2.5rem; /* More padding */
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
.sms-form .form-group { margin-bottom: 1.5rem; }

.textarea-wrapper { position: relative; }
.sms-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  min-height: 160px; /* Taller textarea */
  resize: vertical;
  transition: var(--transition-ease);
  box-shadow: var(--shadow-sm) inset;
}
.sms-textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 0.2rem rgba(var(--brand-orange-rgb), 0.2), var(--shadow-sm) inset;
  outline: none;
}
.textarea-toolbar {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  justify-content: flex-end;
}
.btn-icon-tool {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background-color: var(--bg-card-alt);
  color: var(--text-medium);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
}
.btn-icon-tool i { margin-right: 0.4rem; font-size: 0.9em; }
.btn-icon-tool .tool-text { font-weight: 500; }
.btn-icon-tool:hover { background-color: #dde2e7; border-color: #c8ced3; }
.btn-icon-tool.btn-danger { background-color: var(--error-red-light); color: var(--error-red); border-color: var(--error-red); }
.btn-icon-tool.btn-danger:hover { background-color: #f5c6cb; } /* Chakra red.200 */

.btn-submit-sms {
    font-size: 1.1rem;
    padding: 0.9rem;
    font-weight: 600;
    margin: 1rem auto 0;
    display: block;
    width: fit-content; /* or specify a fixed width like 200px */
}

.user-message-area {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  display: flex; /* For icon alignment */
  align-items: center;
  gap: 0.75rem;
}
.user-message-area i { font-size: 1.2em; }
.user-message-area.success { background-color: var(--success-green-light); color: #2f855a; border-color: #9ae6b4;} /* Chakra green.700, green.200 */
.user-message-area.error   { background-color: var(--error-red-light);   color: #c53030;   border-color: #feb2b2;} /* Chakra red.700, red.200 */
.user-message-area.info    { background-color: var(--info-blue-light);    color: #2c5282;    border-color: #90cdf4;} /* Chakra blue.700, blue.200 */

.ticket-preview-output { margin-top: 2.5rem; }

/* Ticket Preview (Initial) */
.ticket-preview-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  background-color: var(--bg-card);
  box-shadow: var(--shadow);
}
.ticket-preview-header-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--brand-orange);
}
.ticket-preview-header-bar h3 {
  color: var(--brand-navy);
  font-size: 1.5rem; margin: 0;
  font-weight: 600;
}
.ticket-preview-header-bar i { font-size: 1.4rem; color: var(--brand-orange); }

.ticket-data-grid { display: grid; gap: 0.9rem; }
.data-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.data-item:not(:last-child) { border-bottom: 1px solid var(--bg-card-alt); }
.data-label { font-weight: 500; color: var(--text-light); margin-right: 1rem; }
.data-value { font-weight: 600; color: var(--text-dark); text-align: right; }

.preview-actions-bar { display: flex; justify-content: center; margin-top: 2rem; }
.preview-actions-bar .btn { font-size: 1.05rem; padding: 0.85rem 1.8rem;}

/* Final Ticket (After Payment) - More defined ticket look */
.ticket-display-wrapper {
  background: var(--bg-card);
  max-width: 550px; /* Optimal for ticket */
  margin: 2rem auto 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden; /* Clip pseudo elements */
  position: relative;
}
/* Perforated edge effect */
.ticket-display-wrapper::before, .ticket-display-wrapper::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  background-repeat: repeat-y;
}
.ticket-display-wrapper::before {
  left: -10px;
  background-image: radial-gradient(circle at 0 10px, transparent 0, transparent 5px, var(--bg-body) 5px);
  background-size: 20px 20px;
}
.ticket-display-wrapper::after {
  right: -10px;
  background-image: radial-gradient(circle at 20px 10px, transparent 0, transparent 5px, var(--bg-body) 5px);
  background-size: 20px 20px;
}

.ticket-content-main { padding: 2rem; font-family: 'Consolas', 'Menlo', 'Courier New', monospace; }
.ticket-brand-header { text-align: center; margin-bottom: 1.5rem; }
.ticket-logo-final { height: 35px; margin-bottom: 0.5rem; }
.ticket-brand-header p { font-size: 0.85rem; color: var(--text-light); margin: 0; text-transform: uppercase; letter-spacing: 0.5px;}

.ticket-passenger-name {
  font-size: 1.4rem; font-weight: bold; text-align: center;
  margin-bottom: 0.5rem; color: var(--brand-orange); padding-bottom: 0.5rem; border-bottom: 2px solid var(--brand-orange-light);
}
.ticket-route-prominent {
  font-size: 1.2rem; font-weight: bold; text-align: center;
  margin-bottom: 1.5rem; color: var(--brand-navy);
}
.ticket-details-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem; margin-bottom: 1.5rem; padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}
.ticket-detail-block strong {
  display: block; color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.1rem;
  text-transform: uppercase; font-weight: 500;
}
.ticket-detail-block span { font-size: 1rem; font-weight: bold; color: var(--text-dark); }

.ticket-qr-area {
  display: flex; flex-direction: column; align-items: center;
  margin: 1.5rem 0; padding: 1.25rem; background-color: var(--bg-card-alt);
  border-radius: var(--border-radius-md); border: 1px dashed var(--border-color);
}
.qr-code-image {
  width: 140px; height: 140px; border: 4px solid var(--bg-card);
  box-shadow: var(--shadow-sm); padding: 3px; background-color: var(--bg-card); /* Ensure QR bg is white */
}
.ticket-qr-area p { font-size: 0.8rem; margin-top: 0.75rem; color: var(--text-medium); text-align:center; }

.ticket-fine-print {
  text-align: center; font-size: 0.8rem; color: var(--text-light);
  padding-top: 1rem; border-top: 1px dashed var(--border-color);
}
.ticket-actions-final { display: flex; justify-content: center; margin-top: 1.5rem; padding: 0 2rem 2rem;}

/* ------------------------- */
/* ---- HOW IT WORKS SEC --- */
/* ------------------------- */
.how-it-works-section {
  background: var(--bg-card);
  position: relative;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-2xl);
  text-align: center;
  transition: var(--transition-slow);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234, 115, 0, 0.1), transparent);
  transition: left 0.5s;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-orange-light);
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--gradient-brand);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-md);
}

.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-description {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ------------------------- */
/* ------ CONTACT SEC ------ */
/* ------------------------- */
/* Clean CSS Styles */
.contact-section {
    background: var(--text-white);
    background-color: var(--bg-body);
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-info {
    /*background: var(--brand-navy);*/
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-light));
    padding: 2.5rem;
    color: var(--text-white);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--brand-orange);
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}


.contact-item i {
  font-size: 1.2rem;
  color: var(--brand-orange);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item span {
    font-size: 0.95rem;
}

.contact-actions {
    background: var(--text-white);
    padding: 2.5rem;
}

.contact-actions h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.contact-actions p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--text-white);
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-1px);
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

.email-option {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.email-option span {
    margin-right: 0.25rem;
}

.email-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }
    
    .contact-info,
    .contact-actions {
        padding: 2rem;
    }
}

/* ------------------------- */
/* -------- TESTIMONIALS --------- */
/* ------------------------- */

.testimonials-section {
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23ea7300" fill-opacity="0.03" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z" /></svg>');
  background-size: 120px;
  opacity: 0.15;
  z-index: 0;
}

.testimonials-container {
  position: relative;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  z-index: 1;
  overflow: hidden; /* Important for proper clipping */
}

.testimonial-track {
  display: flex;
  will-change: transform;
  transition: transform 0.3s ease-out;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* Allow vertical scrolling while handling horizontal swipes */
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.testimonial-track:active {
  cursor: grabbing;
}

.testimonial-item {
  flex-shrink: 0;
  width: 100%; /* Will be overridden by JavaScript */
  padding: 0; /* Remove default padding, let JavaScript handle spacing */
  transition: opacity var(--transition-slow);
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-slow);
  height: 100%;
  margin: 0 0.5rem; /* Small margin for visual separation */
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 5rem;
  color: var(--brand-orange);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-orange);
  opacity: 0.9;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--brand-orange);
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: var(--brand-orange);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  background: var(--bg-card);
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-ease);
  box-shadow: var(--shadow-button);
  font-size: 1.2rem;
}

.testimonial-nav-btn:hover:not(:disabled) {
  background: var(--brand-orange);
  color: var(--text-white);
  transform: scale(0.7);
  box-shadow: var(--shadow-button-hover);
}

.testimonial-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  background: var(--bg-card-alt);
  border-color: var(--border-color);
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
}

.testimonial-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-ease);
  border: none;
  position: relative;
}

.testimonial-dot:hover {
  background: var(--brand-orange);
  opacity: 0.7;
}

.testimonial-dot.active {
  background: var(--brand-orange);
  transform: scale(1.3);
}

.testimonial-dot.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--brand-orange);
  border-radius: 50%;
  opacity: 0.3;
}

/* Animation for testimonial items */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-item.active .testimonial-card {
  animation: fadeInSlide 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
    margin: 0 0.25rem; /* Reduce margin on mobile */
  }
  
  .testimonial-card::before {
    font-size: 4rem;
    top: 1rem;
    left: 1.5rem;
  }
  
  .testimonial-controls {
    gap: 1rem;
  }
  
  .testimonial-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .testimonials-container {
    padding: 0 calc(var(--container-padding) / 2);
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    margin: 0 0.75rem;
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    margin: 0 1rem;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--brand-orange);
    border-opacity: 0.3;
  }
  
  .testimonial-card:hover::before {
    opacity: 0.25;
    transform: scale(1.1);
  }
}

/* Enhanced focus states for accessibility */
.testimonial-nav-btn:focus,
.testimonial-dot:focus {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Loading state animation */
.testimonials-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.testimonials-loading::after {
  content: '';
  width: 45px;
  height: 45px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--brand-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth scrolling behavior for better UX */
@media (prefers-reduced-motion: no-preference) {
  .testimonial-track {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    transition: none;
  }
  
  .testimonial-item.active .testimonial-card {
    animation: none;
  }
}

/* ------------------------- */
/* -------- FOOTER --------- */
/* ------------------------- */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.75); /* Lighter text on dark bg */
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}
.footer-main-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-about .footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.logo-image-footer { height: 2.75rem; /*filter: brightness(0) invert(1) sepia(1) hue-rotate(30deg) saturate(5); /* Orange tint to white logo */ }
.logo-text-footer { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.5px; }
.logo-text-footer .text-brand-orange { color: var(--brand-orange) !important; }
.logo-text-footer .text-white { color: var(--text-white) !important; }
.footer-tagline
{font-size: 0.9rem; line-height: 1.6;
max-width: 350px;
color: rgba(255, 255, 255, 0.75);
}

.footer-column-title {
  font-size: 1.125rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-column-title::after { /* Accent underline */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--brand-orange);
  border-radius: 1px;
}
.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 0.6rem; }
.footer-link-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: var(--transition-ease);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-link-list a:hover { color: var(--brand-orange); transform: translateX(3px); }
.footer-link-list a i { width: 16px; text-align: center; font-size: 0.9em;}

.footer-bottom-bar {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright-text { 
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6); 
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: none;
}

.developer-credit {
  font-style: italic;
}

.developer-credit a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition-ease);
}

.developer-credit a:hover {
  color: var(--brand-orange-light);
  opacity: 0.8;
  text-decoration: none;
}

.developer-credit a:active {
  text-decoration: none;
}

.developer-credit a:focus {
  text-decoration: none;
  outline: none;
}

/* ------------------------- */
/* ------ MODAL STYLES ----- */
/* ------------------------- */


.modal-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(16, 46, 80, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none; 
  align-items: center; 
  justify-content: center;
  z-index: 2000; 
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
  animation: modalOverlayFadeOut 0.3s ease-out forwards;
}

.modal-overlay.open { 
  display: flex; 
  opacity: 1;
  animation: modalOverlayFadeIn 0.3s ease-out forwards;
}

.modal-dialog {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 
    var(--shadow-lg),
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: modalSlideOut 0.3s ease-out forwards;
  
  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  -webkit-scrollbar: none;
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Alternative method - using webkit scrollbar styling */
.modal-dialog::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.modal-dialog::-webkit-scrollbar-thumb {
  background: transparent;
}

.modal-overlay.open .modal-dialog { 
  transform: translateY(0) scale(1); 
  opacity: 1;
  animation: modalSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Modal Animations */
@keyframes modalOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalOverlayFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes modalSlideOut {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
}

.modal-close-button {
  position: absolute; 
  top: 1.25rem; 
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light); 
  font-size: 1.2rem; 
  cursor: pointer;
  width: 44px; 
  height: 44px; 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-button:hover,
.modal-close-button:focus { 
  background: var(--brand-orange);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(var(--brand-orange-rgb), 0.3);
  border-color: var(--brand-orange);
}

.modal-close-button:active {
  transform: scale(0.98);
}

.modal-header { 
  text-align: center; 
  margin-bottom: 2rem;
  position: relative;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
  border-radius: 2px;
}

.modal-title {
  font-size: 1.875rem; 
  font-weight: 700;
  color: var(--brand-navy);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.75rem;
  margin: 0;
  line-height: 1.2;
}

.icon-brand-orange { 
  color: var(--brand-orange);
  font-size: 1.1em;
}



/* Enhanced Form Styling */
.modal-form .form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.modal-form .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--brand-navy);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.modal-form .form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--bg-card);
  color: var(--text-dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.modal-form .form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 
    0 0 0 0.25rem rgba(var(--brand-orange-rgb), 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.modal-form .form-control:hover:not(:focus) {
  border-color: var(--brand-orange-light);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.modal-form .form-control::placeholder {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.modal-form .form-control:focus::placeholder {
  opacity: 0.5;
}

.modal-form .form-control[readonly] {
  background: linear-gradient(135deg, var(--bg-card-alt), rgba(var(--bg-card-alt), 0.8));
  cursor: not-allowed;
  border-style: dashed;
  color: var(--text-medium);
}

.modal-info-text {
  font-size: 1rem; 
  color: var(--text-medium);
  margin-bottom: 2rem; 
  text-align: center;
  line-height: 1.6;
  padding: 1rem;
  background: rgba(var(--brand-orange-rgb), 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--brand-orange-light);
}

.payment-amount-summary {
  background: linear-gradient(135deg, var(--brand-orange-light), rgba(var(--brand-orange-light), 0.8));
  color: var(--brand-orange-dark);
  padding: 1.25rem 1.5rem; 
  border-radius: var(--border-radius-lg);
  margin-bottom: 2rem; 
  font-size: 1.1rem; 
  font-weight: 600; 
  text-align: center;
  border: 2px solid rgba(var(--brand-orange-rgb), 0.2);
  box-shadow: 0 4px 15px rgba(var(--brand-orange-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.payment-amount-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.payment-amount-summary .amount-value { 
  font-weight: 800; 
  font-size: 1.3rem; 
  color: var(--brand-navy);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-pay-modal { 
  width: 100%; 
  padding: 1.1rem 2rem; 
  font-size: 1.1rem; 
  font-weight: 700;
  margin-top: 1rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-light));
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(var(--brand-orange-rgb), 0.3);
  position: relative;
  overflow: hidden;
}

.btn-pay-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-pay-modal:hover::before {
  left: 100%;
}

.btn-pay-modal:hover,
.btn-pay-modal:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--brand-orange), 0.4);
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-light));
  color: white;
}

.btn-pay-modal:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(var(--brand-navy), 0.3);
  color: white;
}

.btn-pay-modal:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  color: white;
}

.modal-user-message {
  padding: 1rem 1.25rem; 
  border-radius: var(--border-radius-lg); 
  margin-top: 1.5rem;
  font-size: 0.95rem; 
  text-align: center; 
  border-width: 2px; 
  border-style: solid;
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-user-message i { 
  font-size: 1.2em; 
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.modal-user-message.success { 
  background: linear-gradient(135deg, var(--success-green-light), rgba(var(--success-green-light), 0.8));
  color: #2f855a; 
  border-color: #68d391;
  box-shadow: 0 4px 15px rgba(72, 211, 145, 0.2);
}

.modal-user-message.error { 
  background: linear-gradient(135deg, var(--error-red-light), rgba(var(--error-red-light), 0.8));
  color: #c53030; 
  border-color: #fc8181;
  box-shadow: 0 4px 15px rgba(252, 129, 129, 0.2);
}

.modal-user-message.info { 
  background: linear-gradient(135deg, var(--info-blue-light), rgba(var(--info-blue-light), 0.8));
  color: #2c5282; 
  border-color: #63b3ed;
  box-shadow: 0 4px 15px rgba(99, 179, 237, 0.2);
}

.payment-provider-info { 
  text-align: center; 
  margin-top: 0rem; 
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--border-color), 0.5);
}

.provider-text { 
  font-size: 0.85rem; 
  color: var(--text-light); 
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.mobile-money-logos-img { 
  max-height: 32px; 
  opacity: 0.8; 
  margin-top: 0rem; 
  transition: all 0.3s ease;
  filter: grayscale(0.2);
}

.mobile-money-logos-img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0);
}

/* Loading State */
.modal-dialog.loading {
  pointer-events: none;
}

.modal-dialog.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

/* Responsive Modal Adjustments */
@media (max-width: 576px) {
  .modal-overlay {
    padding: 0.5rem;
  }
  
  .modal-dialog {
    padding: 2rem 1.5rem;
    max-height: 95vh;
    margin: 0.5rem;
  }
  
  .modal-title {
    font-size: 1.5rem;
    gap: 0.5rem;
  }
  
  .modal-form .form-control {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .btn-pay-modal {
    font-size: 1rem;
    padding: 1rem;
    letter-spacing: 0.25px;
  }
  
  .payment-amount-summary {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .payment-amount-summary .amount-value {
    font-size: 1.2rem;
  }
  
  .modal-close-button {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .modal-dialog {
    padding: 1.5rem 1rem;
  }
  
  .modal-title {
    font-size: 1.375rem;
  }
  
  .modal-form .form-group {
    margin-bottom: 1.5rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .modal-dialog {
    border: 3px solid var(--brand-navy);
  }
  
  .modal-form .form-control {
    border-width: 3px;
  }
  
  .modal-form .form-control:focus {
    border-width: 4px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal-dialog,
  .modal-close-button,
  .modal-form .form-control,
  .btn-pay-modal,
  .modal-user-message {
    transition: none;
    animation: none;
  }
  
  .icon-brand-orange {
    animation: none;
  }
  
  .modal-overlay.open .modal-dialog {
    transform: none;
  }
}

/* ------------------------- */
/* ---- RESPONSIVE DESIGN --- */
/* ------------------------- */

/* Fluid Typography with clamp() */
h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

/* Optimal reading line length */
p {
  max-width: 65ch;
}

/* Responsive Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Responsive Grid Systems */
.features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.footer-main-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

/* ------------------------- */
/* ---- MOBILE NAVIGATION --- */
/* ------------------------- */

/* Hide hamburger menu on desktop */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--brand-navy);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: all;
  display: block;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px;
  background: var(--bg-card);
  padding: calc(var(--navbar-height) + 2rem) 0 2rem;
  transition: right 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -6px 0 20px rgba(0,0,0,0.1);
  z-index: 1001;
  overflow-y: auto;
  border-left: 3px solid var(--brand-orange);
  display: none;
}

.mobile-nav-menu.active {
  right: 0;
  display: block;
}

.mobile-nav-menu .nav-link-list {
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-nav-menu .nav-link-list li {
  width: 100%;
}

.mobile-nav-menu .nav-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bg-card-alt);
  width: 100%;
}

.mobile-nav-menu .nav-link::after {
  display: none;
}

.mobile-nav-menu .btn-nav-cta {
  margin: 1.5rem 2rem 0;
  width: calc(100% - 4rem);
  justify-content: center;
}

/* Body lock when mobile nav is active */
body.mobile-nav-active {
  overflow: hidden;
}

/* ------------------------- */
/* ---- RESPONSIVE MODALS --- */
/* ------------------------- */

.modal-overlay {
  padding: 1rem; /* Padding for small screens */
}

.modal-dialog {
  max-width: 900px;
  width: 100%; /* Responsive width */
}

/* Mobile Modal Adjustments */
@media (max-width: 576px) {
  .modal-dialog {
    padding: 1.75rem 1.25rem;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-form .form-control {
    padding: 0.65rem 0.9rem;
  }
  
  .btn-pay-modal {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* ------------------------- */
/* ---- RESPONSIVE UTILITIES --- */
/* ------------------------- */

/* Responsive Display Classes */
@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-none { display: none !important; }
}

/* Hover Effects Only on Devices That Support Hover */
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-orange-light);
  }
  
  .feature-item:hover .feature-icon-wrapper {
    background-color: var(--brand-orange);
    color: var(--text-white);
    transform: scale(1.1) rotate(10deg);
  }
}

/* ------------------------- */
/* ---- MOBILE BREAKPOINTS --- */
/* ------------------------- */

/* Show hamburger menu on tablets and mobile */
@media (max-width: 768px) {
  .hamburger-menu {
   display: block;
  }
  
  .main-navigation .nav-link-list {
    display: none;
  }
  
  .btn-nav-cta {
    display: none;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Mobile phone adjustments */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .generator-card {
    padding: 1.5rem;
  }
  
  .ticket-display-wrapper {
    margin: 1rem auto 0;
  }
  
  .ticket-content-main {
    padding: 1.5rem;
  }
  
  .mobile-nav-menu {
    width: 280px;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .mobile-nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-nav-menu.active {
    right: 0;
  }
}

/* ------------------------- */
/* ---- RESPONSIVE IMAGES --- */
/* ------------------------- */

.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-image {
  height: 2.75rem;
}

.qr-code-image {
  width: 140px;
  height: 140px;
  max-width: 100%;
}

/* ------------------------- */
/* ---- PRINT RESPONSIVE --- */
/* ------------------------- */

@media print {
  body * {
    visibility: hidden;
  }
  
  .ticket-display-wrapper,
  .ticket-display-wrapper * {
    visibility: visible;
  }
  
  .ticket-display-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    margin: 0;
    page-break-after: always;
  }
  
  .ticket-actions-final,
  .no-print {
    display: none !important;
  }
  
  body {
    padding-top: 0;
    background: white !important;
  }
}

/* ------------------------- */
/* ---- LANDSCAPE MOBILE --- */
/* ------------------------- */

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 400px;
    padding: 2rem 0;
  }
  
  .modal-dialog {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ------------------------- */
/* ---- HIGH DPI DISPLAYS --- */
/* ------------------------- */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* High DPI specific styles */
  .logo-image,
  .logo-image-footer {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ------------------------- */
/* ---- TICKET PRINTING ---- */
/* ------------------------- */
@media print {
  body * {
    visibility: hidden;
  }
  .ticket-display-wrapper,
  .ticket-display-wrapper * {
    visibility: visible;
  }
  .ticket-display-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
  }
  .ticket-actions-final {
    display: none !important;
  }
}

/* ------------------------- */
/* ---- LOADING STATES ----- */
/* ------------------------- */
.loading-spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.25rem solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: var(--text-white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading .loading-spinner {
  margin-right: 0.5rem;
}

/* ------------------------- */
/* ---- ACCESSIBILITY ------ */
/* ------------------------- */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-orange);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.skip-to-content:focus {
  left: 0;
  transform: translateY(0);
}

/* Focus styles for keyboard navigation */
[tabindex="0"]:focus,
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* ------------------------- */
/* ---- FORM VALIDATION ---- */
/* ------------------------- */
.form-control.is-invalid {
  border-color: var(--error-red);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--error-red), 0.25);
}

.invalid-feedback {
  display: none;
  color: var(--error-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* ------------------------- */
/* ---- CUSTOM SCROLLBAR --- */
/* ------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-card-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange-dark);
}

/* ------------------------- */
/* ---- TOOLTIP STYLES ----- */
/* ------------------------- */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-navy);
  color: var(--text-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* ------------------------- */
/* ---- ANIMATION DELAYS --- */
/* ------------------------- */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }

/* ------------------------- */
/* ---- RESPONSIVE IMAGES --- */
/* ------------------------- */
.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------- */
/* ---- LAYOUT UTILITIES --- */
/* ------------------------- */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }

@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-none { display: none !important; }
}


/* ------------------------- */
/* ---- PAGE TRANSITIONS --- */
/* ------------------------- */
.page-enter-active,
.page-leave-active {
  transition: opacity 0.3s;
}
.page-enter,
.page-leave-to {
  opacity: 0;
}

/* ------------------------- */
/* ---- FOOTER FIXES ------- */
/* ------------------------- */
.site-footer a:focus {
  color: var(--brand-orange);
  outline: none;
  text-decoration: underline;
}

/* ------------------------- */
/* ---- FINAL POLISHES ----- */
/* ------------------------- */
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

/* Print-specific styles */
@media print {
  .no-print {
    display: none !important;
  }
  body {
    padding-top: 0;
    background: white !important;
  }
  .ticket-display-wrapper {
    margin: 0;
    box-shadow: none;
    border: none;
    page-break-after: always;
  }
}

/* ------------------------- */
/* ---- 404 PAGE ----- */
/* ------------------------- */
.error-section {
  background-color: var(--bg-body);
  text-align: center;
  min-height: calc(100vh - var(--navbar-height) - 100px);
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 700px;
  margin: 0 auto;
}

.error-graphic {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-number {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-navy);
  opacity: 0.1;
  margin-bottom: -6rem;
}

.error-illustration {
  margin: 0 auto;
  width: 200px;
  height: 200px;
}

.train-icon {
  width: 100%;
  height: 100%;
}

.error-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand-navy);
}

.error-description {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
}

.btn-outline:hover {
  background: var(--brand-orange);
  color: white;
}

@media (max-width: 768px) {
  .error-number {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
}

/* ========================= */
/* ===== PRINT STYLES ====== */
/* ========================= */

/* This class will be used to hide elements we don't want on paper */
.no-print {
  display: none !important;
}

@media print {
  /* Hide everything on the page by default */
  body * {
    visibility: hidden;
  }
  
  /* Make ONLY the ticket wrapper and its contents visible */
  #printableTicketArea,
  #printableTicketArea * {
    visibility: visible;
  }
  
  /* Position the ticket at the top-left of the paper */
  #printableTicketArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    page-break-after: always;
  }
  
  /* General cleanup for printing */
  body {
    padding-top: 0 !important;
    background: #fff !important;
  }
}
  
  /* ========================= */
/* ===== iPad Preview ====== */
/* ========================= */
/* Ticket Preview Section */
.ticket-preview-section {
  background: linear-gradient(135deg, rgba(234, 115, 0, 0.03) 0%, rgba(16, 46, 80, 0.02) 100%);
}

.ticket-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.ticket-preview-image {
  position: relative;
  /* Subtle shadow with depth */
  filter: 
    drop-shadow(0 10px 8px rgba(16, 46, 80, 0.08))
    drop-shadow(0 4px 12px rgba(16, 46, 80, 0.12));
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ticket-example-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  /* Subtle 3D effect */
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
  /* Prevent Interaction styles... */
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.ticket-preview-image:hover .ticket-example-img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(1deg);
  filter: 
    drop-shadow(0 15px 12px rgba(16, 46, 80, 0.15))
    drop-shadow(0 6px 18px rgba(16, 46, 80, 0.18));
}

.ticket-preview-features {
  padding: 1rem;
}

.ticket-preview-features h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-navy);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.feature-list i {
  font-size: 1.1em;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticket-preview-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ticket-example-img {
    max-width: 280px;
    margin-bottom: 2rem;
  }
  
  .feature-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================= */
/* === LEGAL PAGE STYLES === */
/* ========================= */

.legal-page-content {
  max-width: 850px; /* Optimal width for readability */
  margin: 0 auto;
  background-color: var(--bg-card);
  padding: 3rem 4rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.legal-page-content .page-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.legal-page-content .last-updated {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-page-content h2 {
  font-size: 1.75rem;
  color: var(--brand-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-page-content h3 {
  font-size: 1.25rem;
  color: var(--brand-navy-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page-content p,
.legal-page-content li {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-page-content ul {
  list-style-type: disc;
  padding-left: 1.5rem; /* Indent list items */
}

.legal-page-content a {
  font-weight: 500;
  color: var(--brand-orange);
  text-decoration: none;
  border-bottom: 1px dashed var(--brand-orange-light);
  transition: var(--transition-fast);
}

.legal-page-content a:hover {
  color: var(--brand-orange-dark);
  background-color: var(--brand-orange-light);
  border-bottom-style: solid;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
  .legal-page-content {
    padding: 2rem 1.5rem;
  }

  .legal-page-content .page-title {
    font-size: 2rem;
  }

  .legal-page-content h2 {
    font-size: 1.5rem;
  }

  .legal-page-content h3 {
    font-size: 1.1rem;
  }
}

/* ========================= */
/* == DYNAMIC COMPONENTS CSS == */
/* (Styles moved from inline) */
/* ========================= */

/* --- index.html: Download Code Form --- */
.download-code-section {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.download-code-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.download-code-input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.9);
    color: var(--brand-navy);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 2px;
}
.download-code-input::placeholder {
    color: var(--text-light);
}
.download-code-btn {
    padding: 0.8rem 1.25rem;
    flex-shrink: 0;
}
#downloadCodeMessage {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--error-red-light); /* Default to error color */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 500;
}

/* --- success.html & download.html: Final Ticket Display --- */

/* Final Ticket Display */
.ticket-logo-final {
    height: 40px;
    margin-bottom: 5px;
}
.ticket-brand-name {
    text-transform: none;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--brand-navy);
    margin: 0;
}
.ticket-brand-subtitle {
    text-transform: none;
    font-style: italic;
    color: var(--text-medium);
    font-size: 0.9em;
    margin: 0;
}
.ticket-prominent-details {
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
    margin: 15px 0;
    text-align: center;
}
.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* --- success.html --- */
.success-checkmark {
    animation: checkmark-bounce 0.8s ease-in-out;
    color: var(--success-green, #28a745);
    font-size: 120px;
    margin-bottom: 20px;
}
@keyframes checkmark-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.btn-download-manual {
    margin-top: 1.5rem;
}
.email-notification {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border-left: 5px solid var(--brand-orange);
}
.email-notification h3 {
    margin: 0;
    color: var(--brand-navy);
}
.email-notification p {
    margin: 5px 0 0 0;
    color: #666;
}