/* ==========================================================================
   VITA CARE HOSPITAL - Primary Design System & Stylesheet
   Primary Color: #0554A0 (Deep Navy Blue)
   Secondary Color: #00BFB5 (Teal / Medical Cyan)
   Domain: vitacarehospital.com
   ========================================================================== */

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

:root {
  --primary: #0554A0;
  --primary-dark: #033a70;
  --primary-light: #1b6ec2;
  --secondary: #00BFB5;
  --secondary-dark: #009991;
  --secondary-light: #e0f8f6;
  --accent-gold: #ffb703;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(5,84,160,0.08);
  --shadow-lg: 0 10px 25px rgba(5,84,160,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-primary { background-color: var(--primary) !important; color: #fff !important; }

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Header Container */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.top-info-item a {
  color: #ffffff;
  font-weight: 500;
}

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

.top-social a {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--secondary);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Main Navbar */
.navbar {
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links > a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

/* Nav Item Dropdown Styling */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.72rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

/* Desktop Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 285px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(5, 84, 160, 0.16);
  border: 1px solid var(--border-color);
  padding: 10px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1050;
  list-style: none;
}

/* Invisible hover bridge */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px !important;
  font-family: var(--font-heading);
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  width: 100%;
}

.dropdown-menu li a i {
  color: var(--secondary-dark);
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
  transition: color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--secondary-light) !important;
  color: var(--primary) !important;
  border-left-color: var(--primary) !important;
  padding-left: 24px !important;
}

.dropdown-menu li a:hover i {
  color: var(--primary);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(5,84,160,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,191,181,0.3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section & Slider */
.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  min-height: 540px;
}

.slider-wrapper {
  display: flex;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  width: 33.333%;
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,84,160,0.92) 0%, rgba(5,84,160,0.65) 50%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  max-width: 780px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 191, 181, 0.25);
  border: 1px solid var(--secondary);
  color: var(--secondary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(5px);
}

.hero-tagline-big {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-tagline-big span {
  color: var(--secondary);
  display: block;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 680px;
  line-height: 1.6;
}

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

.btn-primary {
  background: var(--secondary);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,191,181,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--secondary);
  color: var(--text-dark);
  border-color: var(--secondary);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--secondary);
}

/* Emergency Ribbon Bar */
.emergency-ribbon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--text-dark);
  padding: 24px 0;
  box-shadow: 0 4px 15px rgba(0,191,181,0.2);
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: center;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.6);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.8);
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ribbon-text h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.ribbon-text p {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 500;
}

/* Section Common Styling */
.section {
  padding: 70px 0;
}

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

.section-badge {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--secondary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

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

/* Cards Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

/* Department Cards */
.dept-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transition: var(--transition);
}

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

.dept-card:hover::before {
  background: var(--secondary);
}

.dept-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.dept-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.dept-subtitle-hindi {
  font-size: 0.9rem;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.dept-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.6;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.link-arrow:hover {
  color: var(--secondary-dark);
}

/* Facilities Cards */
.facility-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.facility-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.facility-body {
  padding: 24px;
}

.facility-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.facility-desc {
  font-size: 0.92rem;
  color: var(--text-body);
}

/* Doctors Card */
.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.doctor-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-light);
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.05);
}

.doctor-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(5,84,160,0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.doctor-info {
  padding: 20px;
}

.doctor-name {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.doctor-dept {
  font-size: 0.88rem;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.doctor-exp {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Content Rich Section / Article Layout */
.content-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.content-box h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 14px;
}

.content-box h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-box p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.content-box ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-box ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: var(--text-body);
}

/* FAQ Accordion */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: var(--bg-light);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 24px 24px 24px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Contact Page Form & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h5 {
  color: var(--secondary-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p, .info-text a {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,84,160,0.15);
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  font-size: 32px;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: #94a3b8;
  padding: 70px 0 20px 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand h3 span {
  color: var(--secondary);
}

.footer-tagline {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

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

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Breadcrumb */
.breadcrumb-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.breadcrumb-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.breadcrumb-links {
  font-size: 0.95rem;
  color: #e2e8f0;
}

.breadcrumb-links a {
  color: var(--secondary);
  font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 1080px) {
  .hero-tagline-big { font-size: 2.2rem; }
  .nav-links {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: #ffffff;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-links.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .grid-2, .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Dropdowns */
  .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--secondary);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin-top: 6px;
    margin-bottom: 8px;
    background: var(--bg-light);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
  }

  .nav-item-dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .nav-item-dropdown.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .hero-tagline-big { font-size: 1.7rem; }
  .slider-arrow { display: none; }
  .whatsapp-tooltip { display: none; }
}
