/* ==========================================================================
   Park N Pass — Design System
   Premium Driving School Website
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary:        #8B1A1A;
  --primary-dark:   #6B1010;
  --primary-light:  #A82828;
  --accent:         #D4451A;
  --accent-light:   #E8633D;
  --gold:           #F0B90B;
  --gold-light:     #FFD54F;
  --success:        #22C55E;
  --success-dark:   #16A34A;

  /* Neutrals */
  --dark-900:       #0A0E17;
  --dark-800:       #0F1B2D;
  --dark-700:       #162338;
  --dark-600:       #1E2D45;
  --dark-500:       #2A3A54;
  --gray-400:       #6B7A90;
  --gray-300:       #94A3B8;
  --gray-200:       #CBD5E1;
  --gray-100:       #E2E8F0;
  --light-50:       #F8FAFC;
  --white:          #FFFFFF;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark:    linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
  --gradient-hero:    linear-gradient(135deg, rgba(139,26,26,0.9) 0%, rgba(15,27,45,0.95) 100%);
  --gradient-card:    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-gold:    linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-success: linear-gradient(135deg, var(--success) 0%, #34D399 100%);

  /* Typography */
  --font-heading: 'Lexend', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 20px;

  /* Borders & Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl:   0 16px 60px rgba(0,0,0,0.24);
  --shadow-glow: 0 0 30px rgba(139,26,26,0.3);
  --shadow-gold: 0 0 20px rgba(240,185,11,0.3);

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(139,26,26,0.2);
}

.preloader-logo::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  animation: spin 1s linear infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.preloader-text {
  display: flex;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.preloader-text span {
  color: var(--white);
  opacity: 0.3;
  animation: letterFade 1.5s ease-in-out infinite;
}

.preloader-text span:nth-child(1) { animation-delay: 0s; }
.preloader-text span:nth-child(2) { animation-delay: 0.1s; }
.preloader-text span:nth-child(3) { animation-delay: 0.15s; }
.preloader-text span:nth-child(4) { animation-delay: 0.2s; }
.preloader-text span:nth-child(5) { animation-delay: 0.3s; }
.preloader-text span:nth-child(6) { animation-delay: 0.35s; }
.preloader-text span:nth-child(7) { animation-delay: 0.45s; }
.preloader-text span:nth-child(8) { animation-delay: 0.5s; }
.preloader-text span:nth-child(9) { animation-delay: 0.55s; }
.preloader-text span:nth-child(10) { animation-delay: 0.6s; }
.preloader-text span:nth-child(11) { animation-delay: 0.7s; }

@keyframes letterFade {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); color: var(--accent); }
}



/* ---------- Header / Navigation ---------- */
.header-top-bar {
  background: var(--dark-900);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  font-size: 0.83rem;
}

.top-bar-left a:hover {
  color: var(--accent-light);
}

.top-bar-left i {
  color: var(--accent);
  font-size: 0.9rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-social span {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-right: 4px;
}

.top-bar-social a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.top-bar-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Main Header */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-base);
  box-shadow: none;
}

.main-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-800);
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

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

.desktop-nav a:hover {
  color: var(--primary);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone .phone-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(0); }
}

.header-phone .phone-info {
  display: flex;
  flex-direction: column;
}

.header-phone .phone-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-phone .phone-number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-900);
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark-800);
  border-radius: 3px;
  transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  flex-direction: column;
  padding: 100px 30px 30px;
  box-shadow: var(--shadow-xl);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--dark-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139,26,26,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139,26,26,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,69,26,0.3);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,69,26,0.4);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark-900);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---------- Section Styles ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

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

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

.section-dark p {
  color: var(--gray-300);
}

.section-gray {
  background: var(--light-50);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.08;
  background: var(--white);
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-shape:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 15%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  animation: slideDown 0.8s ease forwards;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
  color: var(--gold-light);
  position: relative;
}

.hero-description {
  color: var(--gray-200);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: slideUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  animation: slideUp 0.8s ease 0.6s both;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  animation: slideUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.hero-stat-value .suffix {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 4px;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content .section-label {
  justify-content: flex-start;
}

.about-content .section-label::before {
  display: none;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light-50);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.about-feature:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

.about-feature:hover i {
  color: var(--gold-light);
}

.about-feature i {
  color: var(--success);
  font-size: 1.1rem;
  transition: var(--transition-base);
}

/* ---------- Successful Candidates — MAIN FOCUS ---------- */
.candidates-section {
  background: var(--dark-900);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.candidates-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139,26,26,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(34,197,94,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.candidates-section .section-header {
  position: relative;
  z-index: 2;
}

.candidates-section .section-label {
  color: var(--gold-light);
}

.candidates-section .section-label::before,
.candidates-section .section-label::after {
  background: var(--gold);
}

.candidates-section h2 {
  color: var(--white);
}

.candidates-section .section-header p {
  color: var(--gray-300);
}

.candidates-counter {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.counter-item {
  text-align: center;
  padding: 24px 36px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.counter-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 6px;
}

/* Candidates Carousel */
.candidates-carousel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
}

.candidates-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.candidate-card {
  flex: 0 0 350px;
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.candidate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-success);
}

.candidate-card:hover {
  transform: translateY(-10px) scale(1.12);
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 20px 50px rgba(34,197,94,0.15);
  z-index: 10;
}

.candidate-photo-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.candidate-photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid rgba(34,197,94,0.4);
  transition: var(--transition-base);
}

.candidate-card:hover .candidate-photo {
  border-color: var(--success);
  box-shadow: 0 0 25px rgba(34,197,94,0.3);
}

.pass-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 42px;
  height: 42px;
  background: var(--gradient-success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
  border: 3px solid var(--dark-900);
}

.candidate-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.candidate-date {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.candidate-test-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.test-badge.theory {
  background: rgba(96,165,250,0.15);
  color: #60A5FA;
  border: 1px solid rgba(96,165,250,0.3);
}

.test-badge.practical {
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  border: 1px solid rgba(34,197,94,0.3);
}

.candidate-quote {
  font-size: 0.9rem;
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding: 0 10px;
}

.candidate-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--gold);
  font-family: Georgia, serif;
  position: absolute;
  top: -10px;
  left: -5px;
  opacity: 0.5;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-base);
}

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

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-dot.active {
  width: 30px;
  background: var(--gradient-success);
  border-radius: 20px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(139,26,26,0.1) 0%, rgba(212,69,26,0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card h4 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Booking Section ---------- */
.booking-section {
  background: var(--dark-800);
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(139,26,26,0.2) 0%, transparent 60%);
  pointer-events: none;
}

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

.booking-info {
  position: relative;
  z-index: 2;
}

.booking-info .section-label {
  justify-content: flex-start;
  color: var(--gold-light);
}

.booking-info .section-label::before {
  display: none;
}

.booking-info .section-label::after {
  background: var(--gold);
}

.booking-info h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 20px;
}

.booking-info p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.step-content h5 {
  color: var(--white);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin: 0;
}

/* Booking Form */
.booking-form-wrapper {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.booking-form-wrapper h3 {
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray-200);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-base);
  outline: none;
}

.form-control::placeholder {
  color: var(--gray-400);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,69,26,0.15);
  background: rgba(255,255,255,0.12);
}

.form-control.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.error-message {
  font-size: 0.78rem;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-control.error + .error-message {
  display: block;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option {
  background: var(--dark-700);
  color: var(--white);
}

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

.booking-form-wrapper .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-base);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(240,185,11,0.15);
  background: rgba(255,255,255,0.1);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--dark-900);
  padding: 6px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-light);
}

.pricing-card.popular .pricing-icon {
  background: var(--gradient-gold);
  color: var(--dark-900);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.pricing-description {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 20px;
}

.pricing-amount .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  vertical-align: top;
}

.pricing-amount .value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--success);
  font-size: 0.8rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-card .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.pricing-card .btn-outline:hover {
  background: var(--white);
  color: var(--dark-900);
  border-color: var(--white);
}

/* ---------- Info Sections (Theory / Practical / After Pass) ---------- */
.info-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-tab {
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid var(--gray-200);
  color: var(--gray-400);
  background: transparent;
}

.info-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.info-tab.active {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: var(--white);
}

.info-panel {
  display: none;
}

.info-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition-base);
}

.section-dark .accordion-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.accordion-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-900);
  transition: var(--transition-base);
}

.section-dark .accordion-header {
  color: var(--white);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-header i {
  transition: transform var(--transition-base);
  font-size: 0.85rem;
  color: var(--gray-400);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.section-dark .accordion-body-inner {
  color: var(--gray-300);
}

.accordion-body-inner ul {
  margin-top: 10px;
}

.accordion-body-inner ul li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.accordion-body-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Info Card */
.info-card {
  background: var(--light-50);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-100);
}

.section-dark .info-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.info-card h4 i {
  color: var(--accent);
  font-size: 1.3rem;
}

.section-dark .info-card h4 {
  color: var(--white);
}

.info-card p,
.info-card li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.section-dark .info-card p,
.section-dark .info-card li {
  color: var(--gray-300);
}

.info-card .tip-box {
  background: rgba(240,185,11,0.1);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--dark-800);
}

.section-dark .info-card .tip-box {
  color: var(--gray-200);
  background: rgba(240,185,11,0.08);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--light-50);
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-900);
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light-50);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h5 {
  margin-bottom: 4px;
  color: var(--dark-900);
}

.contact-info-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--gray-400);
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

.contact-form-wrapper .form-control {
  background: var(--light-50);
  border-color: var(--gray-100);
  color: var(--dark-900);
}

.contact-form-wrapper .form-control::placeholder {
  color: var(--gray-300);
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}

.contact-form-wrapper .form-group label {
  color: var(--dark-800);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-900);
  color: var(--gray-300);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 55px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition-base);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.footer-links a::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition-base);
}

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

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-base);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-base);
}

.newsletter-form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 20px 0;
  margin-top: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-bottom span {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Booking Success Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light-50);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-400);
  transition: var(--transition-base);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

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

.modal h3 {
  margin-bottom: 12px;
}

.modal p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal .booking-summary {
  background: var(--light-50);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.modal .booking-summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--gray-400);
}

.modal .booking-summary p:last-child {
  margin-bottom: 0;
}

.modal .booking-summary strong {
  color: var(--dark-900);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-glow);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(139,26,26,0.5);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .info-content {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .candidates-counter {
    gap: 16px;
  }

  .counter-item {
    padding: 16px 24px;
  }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2;
  position: relative;
  border: 3px solid white;
}

.whatsapp-tooltip {
  background-color: #ffb84d;
  color: #000;
  padding: 8px 15px 8px 25px;
  margin-left: -15px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: var(--font-body);
}

.whatsapp-tooltip strong {
  font-size: 16px;
  font-weight: 700;
}

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

  .header-top-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

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

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

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .about-experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 16px;
  }

  .booking-form-wrapper {
    padding: 24px;
  }

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

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

  .modal {
    padding: 30px 20px;
  }

  .candidates-counter {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .counter-item {
    width: 100%;
    max-width: 280px;
  }

  .candidate-card {
    flex: 0 0 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .candidate-card {
    flex: 0 0 260px;
    padding: 20px;
  }

  .candidate-photo {
    width: 110px;
    height: 110px;
  }

  .candidate-photo-wrapper {
    width: 110px;
    height: 110px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .carousel-controls {
    gap: 12px;
  }

  .info-tabs {
    gap: 6px;
  }

  .info-tab {
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}
