/* ============================================
   MLG WEBSITE - CONSOLIDATED STYLESHEET
   Extracted from all HTML files
   ============================================ */

/* ============================================
   CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --primary: #1a365d;
  --primary-dark: #0f2442;
  --primary-light: #2c5282;
  --accent: #c9a227;
  --accent-light: #d4b545;
  --text: #1a202c;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --bg-dark: #edf2f7;
  --border: #e2e8f0;
  --success: #38a169;
  --success-light: #c6f6d5;
  --white: #ffffff;
  
  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Container */
  --container: 1200px;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition: 0.2s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-top {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-sm) 0;
  font-size: 1rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.header-top a {
  color: var(--white);
  transition: opacity var(--transition);
}

.header-top a:hover {
  opacity: 0.8;
}

.header-contact {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
}

.header-languages {
  display: flex;
  gap: var(--space-md);
}

.header-main {
  padding: var(--space-md) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 10rem var(--container-padding) var(--space-xl);
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-cta {
  margin-top: var(--space-xl);
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 8rem 0 var(--space-4xl);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center 15%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.35) 0%, rgba(15, 36, 66, 0.45) 100%);
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.hero-highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.2);
}

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

.hero-stat-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: var(--space-xs);
}

/* Hero stats alternate style (service pages) */
.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: var(--space-lg) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.trust-badges img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .trust-badges img {
    height: 70px;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--space-4xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-link:hover {
  color: var(--accent);
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--primary);
  color: var(--white);
}

.why-us .section-label {
  color: var(--accent);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.why-us-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.why-us-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.why-us-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.why-us-content p {
  opacity: 0.8;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--bg-alt);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.disclaimer {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

.review-name {
  font-weight: 600;
  color: var(--text);
}

.review-case {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   LANGUAGES
   ============================================ */
.languages {
  padding: var(--space-4xl) 0;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.language-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.language-card:hover {
  border-color: var(--primary);
  background: var(--white);
}

.language-flag {
  font-size: 2rem;
}

.language-name {
  font-weight: 600;
  color: var(--primary);
}

.language-native {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: center;
}

.cta-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* Mid-page CTA */
.mid-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0;
  text-align: center;
}

.mid-cta h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mid-cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  padding: var(--space-4xl) 0;
  background: var(--bg-alt);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.location-address {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.location-phone {
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.about-intro p {
  margin-bottom: 1.5rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  background: var(--bg-alt);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.team-name a {
  color: inherit;
  transition: color var(--transition);
}

.team-name a:hover {
  color: var(--accent);
}

.team-title {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-languages {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-submit {
  width: 100%;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-light);
}

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

.sms-disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ============================================
   SERVICE DETAIL PAGES - CONTENT
   ============================================ */
.content {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}

.content h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}

.content h4 {
  font-size: 1.15rem;
  color: var(--primary-light);
  margin: 1.5rem 0 0.5rem;
}

.content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
}

.content ul,
.content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.content a {
  color: var(--primary);
  text-decoration: underline;
}

/* Info/Warning/Success Boxes */
.info-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.info-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-box p {
  margin: 0;
  font-size: 0.9375rem;
}

.warning-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.warning-box h4 {
  color: #92400e;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.warning-box p {
  margin: 0;
  font-size: 0.9375rem;
  color: #78350f;
}

.success-box {
  background: var(--success-light);
  border-left: 4px solid var(--success);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.success-box h4 {
  color: #22543d;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.success-box p {
  margin: 0;
  font-size: 0.9375rem;
  color: #276749;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-alt);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--primary);
}

/* Process Steps */
.process-steps {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.process-steps li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Preference Card */
.preference-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--shadow);
}

.preference-card h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.preference-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.preference-card .wait-time {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.25rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
}

/* Table of Contents */
.toc {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.toc h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: var(--primary);
  font-size: 0.9375rem;
}

.toc a:hover {
  text-decoration: underline;
}

/* Checklist */
.checklist {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.checklist h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

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

.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.checkmark svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a:hover {
  opacity: 1;
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.1);
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 180px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 9999;
  border: 1px solid #e2e8f0;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu .lang-option {
  display: block;
  padding: 1rem 1.5rem;
  color: #1a202c !important;
  text-decoration: none;
  transition: background 0.2s;
  background: white;
  font-size: 1rem;
}

.lang-menu .lang-option:hover {
  background: #f5f5f5;
  color: #1a202c !important;
}

.lang-menu .lang-option.active {
  background: #f0f7ff;
  font-weight: 600;
  color: #1a202c !important;
}

.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .languages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .header-top {
    display: block;
  }

  .nav {
    display: block;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-content {
    max-width: 600px;
  }

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

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

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

/* ============================================
   RESPONSIVE - SMALL SCREENS
   ============================================ */
@media (max-width: 768px) {
  .toc ul {
    columns: 1;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Fix header-top wrapping on mobile */
@media (max-width: 480px) {
  .header-top {
    font-size: 0.8rem;
  }
  .header-top .container {
    flex-wrap: nowrap;
    gap: 0.25rem;
  }
  .header-contact {
    gap: 0.5rem !important;
  }
  .lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* Mobile language dropdown - bottom sheet style */
@media (max-width: 768px) {
  .lang-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    min-width: 100%;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 9999;
  }
  .lang-dropdown.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
  }
  .lang-menu .lang-option {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* Priority Services Styles - Added for homepage */
section.priority-services {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

section.priority-services .section-label {
  color: #f59e0b;
}

section.priority-services .section-title {
  color: #fff;
}

section.priority-services .section-subtitle {
  color: #cbd5e1;
}

section.priority-services .services-grid .service-card.priority-card {
  position: relative;
  border: 2px solid #f59e0b;
  background: linear-gradient(145deg, #1e293b, #0f172a);
}

section.priority-services .services-grid .service-card.priority-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.priority-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 10;
}

section.priority-services .services-grid .service-card.priority-card h3 {
  color: #fff;
}

section.priority-services .services-grid .service-card.priority-card p {
  color: #cbd5e1;
}

section.priority-services .services-grid .service-card.priority-card .service-icon {
  background: rgba(245, 158, 11, 0.2);
}

section.priority-services .services-grid .service-card.priority-card .service-icon svg {
  fill: #f59e0b;
}

section.priority-services .services-grid .service-card.priority-card .service-link {
  color: #93c5fd;
}

/* Hero - move content down to not cover photos */
.hero {
  align-items: flex-end !important;
  min-height: 100vh;
}
.hero-content {
  margin-top: auto;
  padding-top: 40vh;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding-top: 30vh;
  }
  .hero-slide {
    background-position: center top;
  }
}
