@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Premium Medical Color Palette */
  --primary-color: #0b2d5c; /* Deep Trust Blue */
  --secondary-color: #1a5296; /* Lighter Blue */
  --accent-gold: #cfa861; /* Professional Gold */
  --accent-gold-light: #e6ca8a;
  --text-dark: #2c3e50;
  --text-light: #636e72;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e1e8ed;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif; /* Gives a highly professional/authoritative feel */
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--accent-gold);
}

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

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

/* Header */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 10px 0;
  font-size: 0.9rem;
}

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

.top-bar .contact-info span {
  margin-right: 20px;
}

.top-bar .contact-info i {
  color: var(--accent-gold);
  margin-right: 5px;
}

.top-bar .social-links a {
  color: var(--bg-white);
  margin-left: 15px;
  font-size: 1.1rem;
}

.top-bar .social-links a:hover {
  color: var(--accent-gold);
}

header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.logo i {
  font-size: 2.5rem;
  color: var(--accent-gold);
}

.logo-text h1 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--accent-gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
  padding: 5px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

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

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

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(11, 45, 92, 0.9), rgba(11, 45, 92, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2053&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--accent-gold);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
}

.section-title p {
  color: var(--text-light);
  margin-top: 15px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer-col h3 {
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.footer-col p, .footer-col ul li a {
  color: #c9d6df;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #c9d6df;
  font-size: 0.9rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gold-text { color: var(--accent-gold); }

/* Statistics Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item h3 {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: var(--bg-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
  border-radius: 8px;
  background-color: var(--bg-light);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

/* Process Section */
.process-section {
  background-color: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #edf2f7;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background-color: white;
}

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

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

/* CTA Mid Section */
.cta-mid-section {
  background: linear-gradient(rgba(11, 45, 92, 0.9), rgba(11, 45, 92, 0.9)), url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?q=80&w=2071&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-mid-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  overflow: hidden; /* Prevent horizontal scroll */
}

.testimonial-container {
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.testimonial-track {
  display: flex;
  width: calc(350px * 40); /* Double the number of cards for seamless loop */
  animation: scroll 60s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 350px;
  flex-shrink: 0;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 0 15px;
  position: relative;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--accent-gold);
}

.testimonial-card i.fa-quote-left {
  color: var(--accent-gold);
  font-size: 1.8rem;
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  min-height: 80px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-color);
}

.author-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 20 - 300px)); /* Move by half the track width */
  }
}


/* Advanced Content Sections */
.expertise-detail-section {
  background-color: var(--bg-white);
  padding: 100px 0;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.expertise-item:nth-child(even) {
  flex-direction: row-reverse;
}

.expertise-text {
  flex: 1.2;
}

.expertise-text h3 {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.expertise-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.expertise-img {
  flex: 1;
}

.expertise-img img {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

/* Research & Education Section */
.research-section {
  background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../images/research-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.research-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--primary-color);
  transition: var(--transition);
}

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

/* Community & Location Section */
.community-section {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0;
}

.community-section h2, .community-section h3 {
  color: white;
}

.community-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.community-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.location-map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e1e8ed;
  border-radius: 15px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 700;
  border: 4px solid var(--accent-gold);
}

/* Info Banner for SEO */
.seo-info-banner {
  background-color: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.seo-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.seo-item p {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Authority Gallery Section */
.authority-gallery {
  background-color: var(--bg-white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Responsive Overrides */

/* === TABLET (992px and below) === */
@media (max-width: 992px) {
  .hide-on-mobile {
    display: none !important;
  }

  .expertise-item, .expertise-item:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }

  header .container {
    padding: 15px 20px;
    gap: 15px;
  }

  .mobile-menu-btn {
    display: block;
    order: 3;
  }

  nav {
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 999;
    gap: 25px !important;
  }

  .nav-links.active {
    right: 0;
  }

  header .btn {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-img img {
    max-height: 400px;
    object-position: top center;
  }

  /* Service & Feature grids stack better on tablet */
  .services-grid, .feature-grid, .research-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  /* Gallery items stack */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Contact form grid for tablet */
  .contact-wrap {
    grid-template-columns: 1fr !important;
  }

  /* Expertise detail images */
  .expertise-img img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
  }

  /* QA Grid for tablet */
  .qa-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .qa-img::after {
    display: none;
  }

  /* Community section */
  .community-content {
    padding: 0 20px;
  }

  /* Page banner */
  .page-banner h1 {
    font-size: 2.5rem;
  }

  .page-banner {
    padding: 60px 0;
  }

  /* Roles grid on about page */
  .roles-grid {
    grid-template-columns: 1fr;
  }
}

/* === MOBILE (768px and below) === */
@media (max-width: 768px) {
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .top-bar .contact-info {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 1rem;
    padding: 0 10px;
  }

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

  .stat-item h3 {
    font-size: 2rem;
  }

  .cta-mid-section {
    padding: 60px 0;
  }

  .cta-mid-section h2 {
    font-size: 1.8rem;
  }

  .cta-mid-section p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col .logo {
    justify-content: center;
  }

  .footer-col ul li {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Logo sizing */
  .logo-text h1 {
    font-size: 1.4rem;
  }

  .logo i {
    font-size: 2rem;
  }

  /* Testimonial cards */
  .testimonial-card {
    width: 300px;
    padding: 25px;
    margin: 0 10px;
  }

  .testimonial-track {
    width: calc(300px * 40);
  }

  /* Service cards on home page */
  .service-cards {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .s-card {
    padding: 25px 15px;
  }

  .s-card i {
    font-size: 2.2rem;
  }

  .s-card h3 {
    font-size: 1.1rem;
  }

  /* Services grid on services page */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Feature cards */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Process grid */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Research grid */
  .research-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question {
    padding: 15px;
    font-size: 0.95rem;
  }

  .faq-container {
    margin: 30px auto 0;
  }

  /* Buttons - touch friendly */
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px;
  }

  /* Page banner */
  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-banner {
    padding: 50px 0;
  }

  /* Expertise section */
  .expertise-detail-section {
    padding: 60px 0;
  }

  .expertise-text h3 {
    font-size: 1.5rem;
  }

  .expertise-text p {
    font-size: 1rem;
  }

  /* Community section */
  .community-section {
    padding: 60px 0;
  }

  .community-content p {
    font-size: 1rem;
  }

  /* Authority gallery */
  .authority-gallery {
    padding: 60px 0;
  }

  /* Research section */
  .research-section {
    padding: 60px 0;
  }

  .research-card {
    padding: 25px;
  }

  /* Contact form */
  .contact-form {
    padding: 25px !important;
  }

  .info-block {
    padding: 20px;
  }

  /* Social grid */
  .social-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Overflow prevention */
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 15px;
  }
}

/* === SMALL MOBILE (480px and below) === */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

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

  .section-title h2 {
    font-size: 1.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .logo-text h1 {
    font-size: 1.2rem;
  }

  .logo-text p {
    font-size: 0.7rem;
  }

  .logo i {
    font-size: 1.8rem;
  }

  .logo {
    gap: 10px;
  }

  /* Testimonial cards */
  .testimonial-card {
    width: 260px;
    padding: 20px;
  }

  .testimonial-track {
    width: calc(260px * 40);
  }

  /* Page banner */
  .page-banner h1 {
    font-size: 1.6rem;
  }

  .page-banner {
    padding: 40px 0;
  }

  /* Social grid single column */
  .social-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact info blocks */
  .info-block {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Footer */
  .footer-col h3 {
    font-size: 1.2rem;
  }

  /* CTA section */
  .cta-mid-section h2 {
    font-size: 1.5rem;
  }

  /* Process steps */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* FAQ Accordion Styling */
.faq-section { background-color: var(--bg-white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--accent-gold); }
.faq-question { padding: 20px; background: var(--bg-light); display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--primary-color); transition: var(--transition); }
.faq-question i { transition: transform 0.3s ease; color: var(--accent-gold); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; background: white; transition: all 0.3s ease-out; }
.faq-answer p { padding: 20px 0; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question { background: white; color: var(--accent-gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Floating Action Button (FAB) */
.fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.fab-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: var(--transition); position: relative; }
.fab-btn:hover { transform: scale(1.1) translateY(-5px); }
.fab-whatsapp { background-color: #25D366; }
.fab-call { background-color: var(--primary-color); }
.fab-label { position: absolute; right: 80px; background: white; color: var(--primary-color); padding: 5px 15px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; white-space: nowrap; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: 0.3s; }
.fab-btn:hover .fab-label { opacity: 1; right: 75px; }

@media (max-width: 768px) {
    .fab-container { bottom: 20px; right: 20px; }
    .fab-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}

/* Breadcrumbs Styling */
.breadcrumbs { padding: 15px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }
.breadcrumbs .container { display: flex; gap: 10px; color: var(--text-light); }
.breadcrumbs a { color: var(--primary-color); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs span { color: var(--accent-gold); }
/* Floating Action Buttons (FABs) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.1);
    color: white;
}

.fab-call { background-color: var(--primary-color); }
.fab-whatsapp { background-color: #25d366; }

.fab-label {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fab-btn:hover .fab-label {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Skeleton Loading Animation */
.skeleton {
    background: #e1e8ed;
    background: linear-gradient(90deg, #e1e8ed 25%, #f8f9fa 50%, #e1e8ed 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .fab-container { bottom: 20px; right: 20px; }
    .fab-btn { width: 50px; height: 50px; font-size: 1.2rem; }
    .fab-label { display: none; } /* Hide labels on mobile to save space */
}
