/* ==========================================================================
   POLYCLINIQUE MEDICO SOCIALE - ULTRA PREMIUM DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --navy-dark: #0b2545;
  --navy-primary: #134074;
  --blue-accent: #1d4ed8;
  --teal-accent: #06d6a0;
  --teal-glow: rgba(6, 214, 160, 0.25);
  
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #071327;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --border-light: #e2e8f0;
  --border-glow: rgba(19, 64, 116, 0.15);

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 37, 69, 0.12);
  --shadow-glow: 0 0 30px rgba(6, 214, 160, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--teal-accent);
}

/* Header & Glass Navbar */
.top-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-info span, .top-bar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.top-bar-info i, .top-bar-right i {
  color: var(--teal-accent);
}

.top-bar-right a:hover {
  color: var(--teal-accent);
}

.header-glass {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05);
  transition: var(--transition);
}

.navbar-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.brand-logo .brand-badge {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
  color: var(--teal-accent);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.86rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-primary);
  background: rgba(19, 64, 116, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--navy-dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}

/* Button Sizing & Variants */
.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

/* Button Component System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 37, 69, 0.35);
  color: #ffffff;
}

.btn-teal {
  background: var(--teal-accent);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px var(--teal-glow);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 214, 160, 0.4);
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy-primary);
  color: var(--navy-primary);
}

.btn-outline:hover {
  background: var(--navy-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--navy-dark);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Modern Split Hero Section System */
.hero-modern-section {
  position: relative;
  background: linear-gradient(135deg, #071327 0%, #0b2545 45%, #134074 100%);
  color: #ffffff;
  padding: 4.5rem 0 7rem;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(6, 214, 160, 0.16);
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(29, 78, 216, 0.22);
  bottom: -150px;
  left: -100px;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(6, 214, 160, 0.12);
  border: 1px solid rgba(6, 214, 160, 0.35);
  color: var(--teal-accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-accent);
  box-shadow: 0 0 10px var(--teal-accent);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(6, 214, 160, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 214, 160, 0); }
}

.hero-heading {
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-teal {
  background: linear-gradient(135deg, #2dd4bf, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.88);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.hero-trust-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.trust-pill i {
  color: var(--teal-accent);
}

.hero-actions {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-phone {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Visual Showcase */
.hero-visual-col {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.3), rgba(29, 78, 216, 0.3));
  border-radius: 32px;
  filter: blur(25px);
  z-index: 1;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: visible;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(7, 19, 39, 0.6);
}

.hero-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* Floating Glass Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(7, 19, 39, 0.22);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

.badge-top-right {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-bottom-left {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.5s;
}

.badge-bottom-right {
  bottom: -20px;
  right: 10px;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  flex-shrink: 0;
}

.bg-teal { background: linear-gradient(135deg, #06d6a0, #059669); }
.bg-navy { background: linear-gradient(135deg, #134074, #0b2545); }
.bg-emerald { background: linear-gradient(135deg, #10b981, #047857); }

.floating-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-dark);
  font-weight: 800;
  line-height: 1.2;
}

.floating-badge small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Quick Consultation Launcher Bar */
.hero-quick-launcher-wrap {
  position: relative;
  z-index: 15;
  margin-top: 3.5rem;
  margin-bottom: -4rem;
}

.quick-launcher-bar {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem 2rem;
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.launcher-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.launcher-icon {
  font-size: 1.4rem;
  color: var(--navy-primary);
  background: rgba(19, 64, 116, 0.08);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.launcher-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.launcher-select, .launcher-input {
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  outline: none;
  width: 100%;
  cursor: pointer;
}

.launcher-divider {
  width: 1px;
  height: 42px;
  background: var(--border-light);
  flex-shrink: 0;
}

.launcher-btn {
  white-space: nowrap;
  padding: 0.85rem 1.75rem;
  font-size: 0.92rem;
}

/* Statistics Counter Banner */
.stats-banner {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  margin: -3rem auto 4rem;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--navy-primary);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Section Headings */
.section {
  padding: 5rem 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--teal-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glow);
}

.service-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--navy-primary);
  color: var(--teal-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 3px solid #ffffff;
}

.service-content {
  padding: 1.75rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-weight: 700;
  color: var(--navy-primary);
  font-size: 0.9rem;
}

/* Doctors Section */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.doctor-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-photo-wrap img {
  transform: scale(1.05);
}

.doctor-info {
  padding: 1.5rem;
}

.doctor-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.doctor-spec {
  color: var(--teal-accent);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

.doctor-qual {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* Gallery Masonry & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy-primary);
  color: #ffffff;
  border-color: var(--navy-primary);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 600px) { .gallery-masonry { column-count: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 69, 0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Testimonials */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.rating-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* FAQs Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--navy-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Contact Form & Input Styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #ffffff;
  color: var(--navy-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  animation: slideInRight 0.3s ease forwards;
}

.toast-success { border-left-color: var(--teal-accent); }
.toast-error { border-left-color: #ef4444; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--teal-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

/* Responsive Breakpoints */
@media (max-width: 1280px) {
  .top-bar-hours, .top-bar-addr { display: none; }
  .mobile-toggle { display: block; }
  .nav-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: #ffffff; 
    flex-direction: column; 
    padding: 1.5rem 2rem; 
    box-shadow: 0 16px 40px rgba(11, 37, 69, 0.15); 
    border-top: 1px solid var(--border-light);
    gap: 0.5rem;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; width: 100%; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-text-col { align-items: center; }
  .hero-heading { font-size: 2.6rem; }
  .hero-subtext { margin: 0 auto 1.5rem; }
  .hero-trust-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual-col { max-width: 540px; margin: 0 auto; width: 100%; }
  .badge-bottom-left { left: 5px; }
  .badge-top-right { right: 5px; }
  
  .quick-launcher-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.5rem;
  }
  .launcher-divider { display: none; }
  .launcher-btn { width: 100%; }

  .stats-banner { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .top-bar-content { padding: 0 1rem; }
  .navbar-container { padding: 0.65rem 1rem; }
  .brand-subtitle { display: none; }
  .brand-title { font-size: 0.95rem; }
  .hero-heading { font-size: 2rem; }
  .hero-main-img { height: 320px; }
  .floating-badge { padding: 0.6rem 0.85rem; }
  .floating-badge strong { font-size: 0.8rem; }
  .floating-badge small { font-size: 0.68rem; }
  .badge-top-right { top: -15px; right: 0; }
  .badge-bottom-left { bottom: 15px; left: 0; }
  .badge-bottom-right { display: none; }
  .stats-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
