/* ==========================================================================
   CrownCare Medical Center - Component Styles
   ========================================================================== */

/* Top Emergency & Info Bar */
.top-bar {
  background-color: var(--navy-dark);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2E8F0;
  text-decoration: none;
}

.top-bar-item:hover {
  color: var(--secondary-gold);
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(220, 38, 38, 0.2);
  color: #FCA5A5;
  border: 1px solid rgba(220, 38, 38, 0.4);
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(10, 77, 64, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(10, 77, 64, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 220px;
}

.brand-logo img {
  height: 50px;
  width: 216px;
  min-width: 216px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--secondary-gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--navy);
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 42, 71, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1001;
}

.mobile-drawer-overlay.active {
  display: block;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-header img {
  height: 42px;
  width: 182px;
  min-width: 182px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.5rem;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F1F5F9;
}

.drawer-link.active, .drawer-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Hero Section & Multi-Slide Carousel */
.hero-section, .hero-slider-section {
  position: relative;
  background: linear-gradient(135deg, #07382E 0%, var(--primary) 60%, #0A4D40 100%);
  color: var(--text-white);
  padding: 4.5rem 0 6.5rem 0;
  overflow: hidden;
  min-height: 680px;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls & Navigation */
.hero-slider-controls {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  z-index: 20;
}

.hero-slider-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
  width: 38px;
  background: var(--secondary-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
}

.hero-slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-arrow-btn:hover {
  background: var(--secondary-gold);
  color: var(--navy-dark);
  border-color: var(--secondary-gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.hero-arrow-btn svg {
  width: 20px;
  height: 20px;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  background-image: radial-gradient(#FFFFFF 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(10, 77, 64, 0) 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--secondary-gold);
}

.hero-description {
  font-size: 1.2rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #FFFFFF;
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 290px;
  border-left: 5px solid var(--secondary-gold);
  z-index: 3;
}

.hero-floating-card .icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-floating-card h5 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.hero-floating-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Feature / Quick Action Cards */
.quick-features-row {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary-gold) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.35rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #FFFFFF;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Medical Service Cards */
.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-emerald);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 77, 64, 0.9);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-checklist {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.service-checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Why Choose Us & About Story Split */
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image-col {
  position: relative;
}

.split-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 480px;
}

.split-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-badge-card {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--navy);
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 4px solid var(--secondary-gold);
  max-width: 240px;
}

.split-badge-card .stat-number {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.split-badge-card .stat-label {
  font-size: 0.875rem;
  color: #E2E8F0;
  font-weight: 500;
}

/* Checklist Points */
.check-points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0;
}

.check-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-point-content h5 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.check-point-content p {
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* Medical Staff Cards */
.doctor-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-emerald);
}

.doctor-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: #F1F5F9;
}

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

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

.doctor-body {
  padding: 1.5rem 1.25rem 1.75rem 1.25rem;
}

.doctor-name {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.doctor-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.doctor-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Patient Testimonials */
.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.quote-icon {
  color: var(--secondary-gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h6 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Appointment Form Component */
.form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-label .required {
  color: var(--status-emergency);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background-color: #F8FAFC;
  color: var(--text-main);
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 77, 64, 0.12);
}

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

.form-help {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #E2E8F0;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  font-size: 1.15rem;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Contact Info Cards */
.contact-info-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-lg);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.contact-info-body p, .contact-info-body a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info-body a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Map Embed Container */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-light);
  height: 420px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Accordion FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  background-color: #FAFCFB;
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background-color: var(--navy-dark);
  color: #94A3B8;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--secondary-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 52px;
  width: 225px;
  min-width: 225px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem 0;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--secondary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.925rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--secondary-gold);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.925rem;
  color: #CBD5E1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

.footer-bottom p {
  color: #94A3B8;
  margin: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #1EBE5D;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  min-width: 320px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  animation: slideInRight 0.3s ease;
  border-left: 5px solid var(--primary);
}

.toast.success {
  border-left-color: var(--status-success);
}

.toast.error {
  border-left-color: var(--status-emergency);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .nav-menu, .nav-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-drawer {
    display: block;
  }
  .hero-image-card img {
    height: 400px;
  }
  .hero-floating-card {
    left: 10px;
    bottom: -15px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .form-card {
    padding: 1.75rem 1.25rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-badge-card {
    right: 1rem;
    bottom: 1rem;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}
