:root {
  --primary: #0066CC;
  --primary-dark: #004C99;
  --primary-light: #3A8EE6;
  --secondary: #00BFA6;
  --secondary-dark: #00897B;
  --accent: #FF6B35;
  --accent-dark: #E55A2B;
  --success: #00C853;
  --warning: #FFB300;
  --error: #E53935;
  --dark: #0A1929;
  --dark-2: #132F4C;
  --dark-3: #1E3A5F;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.15);
  --shadow-3d: 0 10px 30px rgba(0,102,204,0.2), 0 5px 15px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px rgba(0,191,166,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00BFA6 100%);
  --gradient-dark: linear-gradient(135deg, #0A1929 0%, #132F4C 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FFB300 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--gray-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.logo i { color: var(--secondary); }
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header-actions .btn-sm {
  white-space: nowrap;
}
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.lang-btn:hover { background: var(--gray-200); }
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: none;
  min-width: 140px;
}
.lang-dropdown.show { display: block; animation: fadeInDown 0.2s; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.lang-dropdown a:hover { background: var(--gray-50); color: var(--primary); }
.lang-dropdown a:last-child { border-bottom: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-700);
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.mobile-toggle:hover { background: var(--gray-100); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-3d);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,102,204,0.3), 0 5px 15px rgba(0,0,0,0.1);
  color: white;
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-3d);
}
.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255,107,53,0.4);
  color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-100); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,25,41,0.85) 0%, rgba(19,47,76,0.7) 50%, rgba(0,102,204,0.5) 100%);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-content h1 {
  color: white;
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: white;
  width: 36px;
  border-radius: 6px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* === SECTIONS === */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-light { background: white; }
.section-dark { background: var(--gradient-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-gradient {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F7FA 100%);
}

/* === CARDS === */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.card-body p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(0,102,204,0.1) 0%, rgba(0,191,166,0.1) 100%);
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotateY(360deg);
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; }

/* === TOURISM === */
.tourism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.tourism-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-bounce);
  position: relative;
}
.tourism-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}
.tourism-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tourism-card-body { padding: 1.5rem; }
.tourism-card-body h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tourism-card-body h3 i { color: var(--secondary); }
.tourism-card-body p { color: var(--gray-500); }

/* === HAPPY CUSTOMERS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-bounce);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--gray-200);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--warning);
  font-size: 1.1rem;
}
.testimonial-text {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testimonial-info h4 { font-size: 1rem; margin-bottom: 0.1rem; }
.testimonial-info span { color: var(--gray-500); font-size: 0.85rem; }
.testimonial-before-after {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.testimonial-before-after .ba-image {
  flex: 1;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.testimonial-before-after .ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.testimonial-before-after .ba-label {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background: rgba(10,25,41,0.75);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}
.testimonial-before-after .ba-divider {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.blog-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card p { color: var(--gray-500); font-size: 0.9rem; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--gray-600); margin-bottom: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--gray-50);
}
.about-feature i {
  font-size: 1.5rem;
  color: var(--primary);
}
.about-feature h4 { font-size: 0.9rem; }
.about-feature p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.footer-col p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--secondary); padding-left: 5px; }
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo i { color: var(--secondary); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-bounce);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  color: white;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* === FLOATING APPOINTMENT BUTTON === */
.floating-appointment {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--gradient-accent);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,107,53,0.4);
  transition: var(--transition-bounce);
  border: none;
  animation: pulse 2s infinite;
}
.floating-appointment:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(255,107,53,0.5);
}
.floating-appointment-label {
  position: absolute;
  right: 75px;
  background: var(--dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.floating-appointment:hover .floating-appointment-label { opacity: 1; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(255,107,53,0.4), 0 0 0 0 rgba(255,107,53,0.3); }
  50% { box-shadow: 0 10px 30px rgba(255,107,53,0.4), 0 0 0 15px rgba(255,107,53,0); }
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,25,41,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show { display: flex; animation: fadeIn 0.3s; }
.modal {
  background: white;
  border-radius: var(--radius-2xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 1.25rem; }
.modal-close {
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.modal-close:hover { background: var(--error); color: white; }
.modal-body { padding: 2rem; }
.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* === APPOINTMENT WIZARD === */
.wizard-step {
  display: none;
  animation: fadeInRight 0.4s;
}
.wizard-step.active { display: block; }
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gray-200);
  transform: translateY(-50%);
}
.wizard-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
  transition: var(--transition);
  width: 0%;
}
.wizard-progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-400);
  z-index: 1;
  transition: var(--transition);
}
.wizard-progress-step.active {
  border-color: var(--primary);
  color: var(--primary);
  background: white;
}
.wizard-progress-step.completed {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
}
.wizard-question {
  text-align: center;
  margin-bottom: 2rem;
}
.wizard-question h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.wizard-question p { color: var(--gray-500); }
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
  margin: 0 auto;
}
.wizard-option {
  padding: 1.25rem 2rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: var(--transition-bounce);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wizard-option:hover {
  border-color: var(--primary);
  background: rgba(0,102,204,0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.wizard-option.selected {
  border-color: var(--primary);
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-3d);
}
.wizard-option i { font-size: 1.3rem; }
.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.wizard-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.wizard-upload-area:hover {
  border-color: var(--primary);
  background: rgba(0,102,204,0.05);
}
.wizard-upload-area i {
  font-size: 3rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.wizard-upload-area p { color: var(--gray-500); }
.wizard-upload-preview {
  max-width: 200px;
  margin: 1rem auto;
  border-radius: var(--radius-md);
  display: none;
}
.wizard-upload-preview.show { display: block; }
.wizard-step-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.wizard-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}
.wizard-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  background: white;
}
.wizard-checkbox:hover {
  border-color: var(--primary);
  background: rgba(0,102,204,0.05);
}
.wizard-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.wizard-checkbox:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0,102,204,0.08);
}
.wizard-select {
  max-width: 320px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .wizard-progress-step { width: 28px; height: 28px; font-size: 0.75rem; }
  .wizard-checkboxes { grid-template-columns: 1fr; }
  .wizard-question h3 { font-size: 1.2rem; }
}

/* === FORM === */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === VIDEO CALL === */
.video-call-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 3000;
  flex-direction: column;
}
.video-call-container.show { display: flex; }
.video-call-header {
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.video-call-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.video-call-title .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warning);
  animation: pulse 1.5s infinite;
}
.video-call-title .status-dot.connected { background: var(--success); }
.video-call-body {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.video-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--dark-2);
}
.video-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-self {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 180px;
  height: 135px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid white;
  box-shadow: var(--shadow-2xl);
  z-index: 2;
  background: var(--dark-3);
}
.video-self video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.video-call-controls {
  padding: 1.5rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.video-control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-bounce);
  background: rgba(255,255,255,0.15);
  color: white;
}
.video-control-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.video-control-btn.active {
  background: white;
  color: var(--dark);
}
.video-control-btn.end-call {
  background: var(--error);
  width: 72px;
  height: 72px;
}
.video-control-btn.end-call:hover {
  background: #C62828;
  transform: translateY(-3px) scale(1.05);
}
.video-waiting {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  height: 100%;
}
.video-waiting .spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.video-waiting h3 { color: white; margin-bottom: 0.5rem; }
.video-waiting p { color: rgba(255,255,255,0.7); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* === ADMIN === */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-100);
}
.admin-sidebar {
  width: 260px;
  background: var(--gradient-dark);
  color: white;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}
.admin-sidebar-logo {
  padding: 0 1.5rem 2rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}
.admin-sidebar-logo i { color: var(--secondary); }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover {
  background: rgba(255,255,255,0.05);
  color: white;
}
.admin-nav-item.active {
  background: rgba(0,102,204,0.2);
  color: white;
  border-left-color: var(--primary);
}
.admin-nav-item i { width: 20px; text-align: center; }
.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.admin-header h1 { font-size: 1.5rem; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.admin-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.admin-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.admin-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}
.admin-stat-info h3 { font-size: 2rem; margin-bottom: 0.2rem; }
.admin-stat-info p { color: var(--gray-500); font-size: 0.85rem; }
.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.admin-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h2 { font-size: 1.1rem; }
.admin-card-body { padding: 1.5rem; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.admin-table tr:hover { background: var(--gray-50); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-success { background: rgba(0,200,83,0.1); color: var(--success); }
.badge-warning { background: rgba(255,179,0,0.1); color: var(--warning); }
.badge-error { background: rgba(229,57,53,0.1); color: var(--error); }
.badge-info { background: rgba(0,102,204,0.1); color: var(--primary); }

.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.admin-form-control {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: var(--transition);
}
.admin-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  padding: 1rem;
}
.admin-login-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary);
}
.admin-login-logo i { color: var(--secondary); }

/* === CONSULTANT PANEL === */
.consultant-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-100);
}
.consultant-queue {
  flex: 1;
  padding: 2rem;
}
.consultant-queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.queue-list {
  display: grid;
  gap: 1rem;
}
.queue-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-left: 4px solid var(--warning);
}
.queue-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.queue-item.active { border-left-color: var(--success); }
.queue-item-info h4 { margin-bottom: 0.3rem; }
.queue-item-info p { color: var(--gray-500); font-size: 0.85rem; }
.queue-item-actions { display: flex; gap: 0.5rem; }

/* === ALERT === */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert-success { background: rgba(0,200,83,0.1); color: var(--success); border: 1px solid rgba(0,200,83,0.2); }
.alert-error { background: rgba(229,57,53,0.1); color: var(--error); border: 1px solid rgba(229,57,53,0.2); }
.alert-warning { background: rgba(255,179,0,0.1); color: var(--warning); border: 1px solid rgba(255,179,0,0.2); }
.alert-info { background: rgba(0,102,204,0.1); color: var(--primary); border: 1px solid rgba(0,102,204,0.2); }

/* === PAGE HEADER === */
.page-header {
  background: var(--gradient-dark);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 72px;
}
.page-header h1 { color: white; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--secondary); }

/* === BLOG DETAIL === */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}
.blog-detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.blog-detail-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.blog-detail-content h3 { margin: 2rem 0 1rem; }
.blog-detail-content p { margin-bottom: 1.25rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-xl);
    gap: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav.mobile-open a {
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .header { padding: 0 1rem; }
  .header-inner { height: 64px; }
  .logo img { max-height: 40px; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8rem; }
  .mobile-toggle { display: flex; }
  .logo-text { display: none; }
  .logo { font-size: 0; }
  .logo i { font-size: 1.5rem; }
  .hero-slider { min-height: 500px; }
  .slider-arrow { display: none; }
  .section { padding: 3rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .tourism-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 1rem; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .video-self { width: 120px; height: 90px; }
  .floating-appointment { width: 56px; height: 56px; bottom: 1rem; right: 1rem; }
  .floating-appointment-label { display: none; }
  .blog-detail-img { height: 240px; }
  .modal { max-width: 100%; border-radius: var(--radius-xl); }
  .wizard-options { max-width: 100%; }
}

@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr; }
  .video-call-controls { gap: 0.5rem; }
  .video-control-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .video-control-btn.end-call { width: 60px; height: 60px; }
  .btn-label { display: none; }
  .header-actions .btn-sm { padding: 0.5rem; }
  .header-actions .btn-sm i { margin: 0; }
  .logo-text { display: none; }
  .logo { font-size: 0; }
  .logo i { font-size: 1.5rem; }
}

/* Footer language selector */
.footer-lang { margin-top: 1rem; }
.footer-lang .lang-selector { position: relative; }
.footer-lang .lang-dropdown {
  bottom: 100%;
  top: auto;
  margin-bottom: 0.25rem;
}

/* RTL for Arabic */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .footer-social { flex-direction: row-reverse; }
