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

:root {
  /* Colors */
  --primary-gradient: linear-gradient(90deg, #3f85fd 0%, #558afd 100%);
  --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --hover-gradient: linear-gradient(90deg, #3276e8 0%, #4c7ce8 100%);
  
  --primary-color: #3f85fd;
  --secondary-color: #06b6d4;
  --dark-bg: #0f172a;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Fonts */
  --font-sans: 'Outfit', sans-serif;
  
  /* Layout constraints */
  --header-height: 72px;
  --container-width: 1200px;
  --container-narrow: 640px;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(63, 133, 253, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

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

html {
  font-family: var(--font-sans);
  color: var(--slate-900);
  background-color: var(--slate-50);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: var(--primary-gradient);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.logo-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav-btn {
  background-color: var(--white);
  color: var(--primary-color) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

/* Header Dropdown Styling */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-btn-dropdown {
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  pointer-events: none;
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
  overflow: hidden;
  animation: fadeInDown 0.2s ease;
}

.nav-dropdown-content a {
  color: var(--slate-800) !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover {
  background-color: rgba(63, 133, 253, 0.08);
  color: var(--primary-color) !important;
}

.nav-dropdown-wrapper:hover .nav-dropdown-content {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Google Translate header container */
.translate-wrapper {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

/* Hide Google Translate Logo in Selector Widget */
.goog-logo-link {
  display: none !important;
}

.trans-section {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Mobile Nav Toggles */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

/* Off-canvas Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  z-index: 200;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

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

.drawer-header .logo-title {
  color: var(--slate-900);
}

.drawer-header .logo-subtitle {
  color: var(--slate-500);
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate-800);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 8px 0;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--primary-color);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 199;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative blur blobs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.1;
}

.hero::before {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -50px;
  left: -50px;
}

.hero::after {
  width: 350px;
  height: 350px;
  background: var(--secondary-color);
  bottom: -50px;
  right: -50px;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-info {
  background-color: rgba(6, 182, 212, 0.1);
  color: var(--secondary-color);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.25rem;
  color: var(--slate-600);
  max-width: 720px;
  margin: 0 auto 32px;
}

.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.trustpilot-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.trustpilot-stars {
  color: #00b67a; /* Trustpilot Green */
  font-weight: 800;
  font-size: 1.1rem;
}

/* Service Selection Section */
.section-padding {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--slate-100);
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* SS2 PROFESSIONAL CARDS */
.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,24,40,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,24,40,0.12);
}

.card-image-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-img {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
}

.card-overlay-title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-700);
}

.feature-icon-check {
  color: var(--success);
  flex-shrink: 0;
}

.feature-icon-clock {
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-icon-verified {
  color: var(--primary-color);
  flex-shrink: 0;
}

.card-btn {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  width: 100%;
  transition: all var(--transition-normal);
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.card-btn:hover {
  background: var(--hover-gradient);
  transform: translateY(-1px);
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.2s;
}

.step-card:hover {
  transform: translateY(-2px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #E3F2FD;
  color: #1565C0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}

.faq-trigger:hover {
  color: var(--primary-color);
}

.faq-icon {
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  padding: 0 24px 20px;
  max-height: 350px; /* Arbitrary large limit */
}

.faq-content p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Footer styles */
footer {
  background-color: #0d121f;
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 0 30px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.7;
}

.footer-links h5, .footer-contact h5 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 0.825rem;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 16px auto 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* Glassmorphism Forms Framework */
.glass-panel {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 40px;
}

/* PROGRESSIVE FORM STYLING */
.form-section {
  display: none;
  opacity: 0;
  margin-bottom: 30px;
}

.form-section.active {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.section-num-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-num {
  display: none; /* Hide numbers to match reference site */
}

.section-title-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-800);
}

/* Pills above card */
.pills-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.pill-green {
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  color: var(--success);
}

.pill-blue {
  border: 1.5px solid rgba(63, 133, 253, 0.5);
  color: var(--primary-color);
}

.pill-purple {
  border: 1.5px solid rgba(123, 31, 162, 0.5);
  color: #7b1fa2;
}

/* Info box inside card */
.info-box {
  background-color: rgba(63, 133, 253, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  color: #1a5ac7;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.info-box-icon {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--primary-color);
}

.warning-box {
  background-color: rgba(245, 124, 0, 0.05);
  border-left: 4px solid #f57c00;
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  color: #e65100;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.warning-box-icon {
  font-size: 1.25rem;
  line-height: 1;
  color: #f57c00;
}

.doc-type-radios {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  color: var(--slate-700);
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.legal-notice-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  text-align: left;
}

.legal-notice-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.legal-notice-check label {
  cursor: pointer;
}

.submit-button-complex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  line-height: 1.3;
}

.submit-btn-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.submit-btn-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

/* Form card bottom disclaimer */
.form-disclaimer {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-top: 24px;
  border-top: 1px solid var(--slate-100);
  padding-top: 16px;
  line-height: 1.5;
  text-align: left;
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
  margin-bottom: 8px;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--slate-900);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(63, 133, 253, 0.1);
}

input.error, select.error, textarea.error {
  border-color: var(--error);
  background-color: rgba(239, 68, 68, 0.02);
}

.error-message {
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

/* Checkbox and Radio styling */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.option-card:hover {
  border-color: rgba(63, 133, 253, 0.4);
}

.option-card.selected {
  border-color: var(--primary-color);
  background-color: rgba(63, 133, 253, 0.03);
}

.option-card input[type="radio"], .option-card input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 18px;
  height: 18px;
}

.option-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
}

/* Summary screen */
.summary-container {
  background-color: var(--slate-50);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--slate-600);
}

.summary-val {
  font-weight: 700;
  color: var(--slate-900);
  text-align: right;
}

.summary-price-box {
  background-color: rgba(63, 133, 253, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.summary-price-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 4px;
}

.summary-price-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

.legal-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.legal-notice input {
  margin-top: 3px;
  accent-color: var(--primary-color);
}

/* Action Buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(63, 133, 253, 0.15);
}

.btn-primary:hover {
  background: var(--hover-gradient);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(63, 133, 253, 0.25);
}

.btn-secondary {
  background-color: var(--slate-100);
  color: var(--slate-700);
}

.btn-secondary:hover {
  background-color: var(--slate-200);
}

.btn-full {
  width: 100%;
}

/* Success Screen */
.success-screen {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.ref-code-box {
  background-color: var(--slate-900);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px 0;
  padding-left: 40px;
  padding-right: 40px;
}

.ref-code-val {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.success-steps {
  text-align: left;
  max-width: 480px;
  margin: 24px auto 32px;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.success-steps h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.success-steps ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

/* Tracker Styles */
.tracker-status-box {
  margin-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 32px;
}

.status-badge-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.status-text-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.status-badge {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.status-searching {
  background-color: rgba(63, 133, 253, 0.1);
  color: var(--primary-color);
}

.status-reserved {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.status-completed {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.status-cancelled {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

/* Progress bar */
.progress-bar-wrapper {
  height: 8px;
  width: 100%;
  background-color: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--slate-600);
  font-weight: 500;
  margin-bottom: 24px;
}

.tracker-details-list {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.tracker-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.tracker-detail-row:last-child {
  border-bottom: none;
}

.tracker-detail-label {
  font-weight: 600;
  color: var(--slate-600);
}

.tracker-detail-val {
  font-weight: 700;
  color: var(--slate-900);
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--slate-900);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

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

.contact-info-icon {
  color: var(--secondary-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Admin Dashboard layout */
.admin-login-box {
  max-width: 400px;
  margin: 100px auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 16px;
}

.admin-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 12px;
}

.admin-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
}

.admin-tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.admin-panel-content {
  display: none;
}

.admin-panel-content.active {
  display: block;
}

.admin-table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th, .admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.admin-table th {
  background-color: var(--slate-100);
  font-weight: 700;
  color: var(--slate-700);
}

.admin-table tr:hover td {
  background-color: rgba(63, 133, 253, 0.02);
}

.admin-table select {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

/* Config editor */
.config-group {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  background-color: rgba(255,255,255,0.4);
}

.config-group h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 8px;
}

.config-item-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

/* responsive media queries */
@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .glass-panel {
    padding: 24px;
  }
  
  .ref-code-val {
    font-size: 1.6rem;
  }
}

/* Google Translate select styling override */
.goog-te-combo {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
  margin: 0 !important;
}

.goog-te-combo:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.goog-te-combo option {
  color: var(--slate-900) !important;
  background-color: var(--white) !important;
}

.goog-te-gadget {
  font-family: var(--font-sans) !important;
  color: transparent !important;
  font-size: 0 !important;
}

/* Hide Google branding links in the widget */
.goog-te-gadget span {
  display: none !important;
}

/* Custom Multiselect dropdown panel and items */
.custom-multiselect {
  position: relative;
  width: 100%;
}

.multiselect-trigger {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  color: var(--slate-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  user-select: none;
}

.multiselect-trigger:focus, .custom-multiselect.open .multiselect-trigger {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(63, 133, 253, 0.1);
  outline: none;
}

.multiselect-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 4px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  padding: 8px 0;
}

.multiselect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  font-size: 0.95rem;
  color: var(--slate-800);
  user-select: none;
  text-align: left;
}

.multiselect-item:hover {
  background-color: rgba(63, 133, 253, 0.05);
}

.multiselect-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
}

/* International Tel Input Overrides */
.iti {
  display: block !important;
  width: 100%;
}

.iti__country-list {
  z-index: 9999 !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 50px;
  padding: 0 24px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 25px; /* Pill shape */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  background-color: #20ba5a;
}

.whatsapp-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Subtle pulse micro-animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


