/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #64748b;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --accent-color: #0ea5e9;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  position: relative;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  height: 80px;
}

.nav-brand img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

/* Mobile Menu */
.nav-menu-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  background: white;
  flex-direction: column;
  padding: 2rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: left 0.3s ease;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.nav-menu-mobile.active {
  left: 0;
  display: flex;
}

.nav-menu-mobile a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-menu-mobile a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 2.5rem;
}

.nav-menu-mobile a.btn-primary {
  background: linear-gradient(135deg, #d18900, #d2a459);
  color: white;
  border: none;
  border-radius: 0;
  margin: 1rem 2rem 0;
  text-align: center;
  font-weight: 600;
  padding: 1rem 2rem;
}

.nav-menu-mobile a.btn-primary:hover {
  background: linear-gradient(135deg, #b87700, #b8944a);
  padding-left: 2rem;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 137, 0, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
  overflow: hidden;
}

.nav-appointment-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d18900, #d2a459);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.nav-appointment-btn small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

.nav-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
}

.nav-appointment-btn svg {
  transition: transform 0.3s ease;
}

.nav-appointment-btn:hover svg {
  transform: translateX(3px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url('images/banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #e0e7ff;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #f1f5f9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #d18e11 0%, #c39d5e 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-button:hover {
  background: linear-gradient(135deg, #c79e4e 0%, #d2a14e 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(37, 99, 235, 0.4);
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d29c3d;
  border-radius: 2px;
}

/* About Section */
.about {
  background: var(--bg-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.about-image {
  position: sticky;
  top: 100px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-intro {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.qualifications-title {
  font-size: 1.5rem;
  font-weight: 600;
  /* margin: 2rem 0 1rem; */
  color: var(--text-dark);
}

.qualifications-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.qualifications-list {
  list-style: none;
  margin-bottom: 2rem;
}

.qualifications-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.qualifications-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.about-journey {
  font-style: italic;
  color: var(--text-light);
}

/* Services Section */
.services {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  padding: 5rem 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.services-image {
  position: sticky;
  top: 100px;
}

.services-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services-image img:hover {
  transform: scale(1.02);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  column-gap: 1rem;
}

.service-item {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cc9f4e 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.service-icon-wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 50%;
  color: #cba154;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #d18900, #d2a459);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover .service-icon-wrapper {

  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-item:hover .service-icon-wrapper::before {
  opacity: 1;
}

.service-icon-wrapper svg {
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  stroke-width: 2;
}

.service-item:hover .service-icon-wrapper svg {
  color: white;
  transform: scale(1.1);
}

.service-text {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 36px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.service-item:hover .service-title {
  background: linear-gradient(135deg, #cc9d47 0%, #463c2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-white);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-rating {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #202227;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  text-align: left;
}

.footer-doctor-info {
  display: flex;
  flex-direction: column;
}

.footer-doctor-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.footer-doctor-title {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

.footer-section-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #dfe7f1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-top: 0.35rem;
  color: #ef4444;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact {
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-address-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-address-link:hover {
  /* color: #60a5fa; */
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.footer-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.footer-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
  }

  .footer-section:last-child {
      grid-column: 1 / -1;
  }

  .map-container {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
      height: auto;
      min-height: 70px;
  }

  .navbar .container {
      flex-wrap: wrap;
      padding: 0.75rem 20px;
  }

  .nav-brand {
      height: 60px;
  }

  .nav-brand img {
      max-height: 60px;
  }

  .nav-menu {
      display: none;
  }

  .nav-menu-mobile {
      display: flex;
  }

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

  .nav-menu a {
      display: block;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }

  .nav-menu a::after {
      display: none;
  }

  .nav-menu a:hover {
      background: var(--bg-light);
      color: var(--primary-color);
      padding-left: 2.5rem;
  }

  .nav-menu-mobile {
      display: flex;
  }

  .nav-menu-mobile.active {
      display: flex !important;
      left: 0;
  }

  .nav-toggle {
      display: flex !important;
      z-index: 1001;
      position: relative;
      padding: 8px;
      margin-left: auto;
  }

  .nav-toggle span {
      width: 25px;
      height: 3px;
      background: var(--text-dark);
      display: block;
  }

  .nav-appointment-btn {
      display: none;
  }

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

  .hero-subtitle {
      font-size: 1.5rem;
  }

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

  .section-title {
      font-size: 2rem;
  }

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

  .about-image {
      position: static;
      margin-bottom: 2rem;
  }

  .services-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .services-image {
      position: static;
  }

  .services-image img {
      max-height: 400px;
      object-fit: cover;
  }

  .services-list {
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }

  .service-item {
      padding: 1.75rem;
  }

  .service-content {
      gap: 1.25rem;
  }

  .service-icon-wrapper {
      width: 60px;
      height: 60px;
      min-width: 60px;
  }

  .service-icon-wrapper svg {
      width: 28px;
      height: 28px;
  }

  .service-title {
      font-size: 1.15rem;
  }

  .footer {
      padding: 3rem 0 1.5rem;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 2rem;
  }

  .footer-section {
      text-align: left;
  }

  .footer-doctor-name {
      font-size: 1.5rem;
  }

  .footer-doctor-title {
      font-size: 0.95rem;
  }

  .footer-section-title {
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
  }

  .footer-contact-item {
      justify-content: flex-start;
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }

  .footer-icon {
      margin-top: 0.35rem;
  }

  .footer-contact {
      font-size: 0.9rem;
  }

  .footer-contact a {
      font-size: 0.95rem;
  }

  .footer-address-link {
      font-size: 0.9rem;
      line-height: 1.7;
  }

  .map-container {
      margin-top: 1rem;
  }

  .testimonial-card {
      padding: 2rem;
  }

  .testimonial-text {
      font-size: 1rem;
  }

  .sticky-contact-icons {
      right: 15px;
      bottom: 15px;
  }

  .sticky-icon {
      width: 55px;
      height: 55px;
  }

  .sticky-icon svg {
      width: 26px;
      height: 26px;
  }
}

@media (max-width: 480px) {
  .hero {
      min-height: 500px;
      background-attachment: scroll;
  }

  .hero-title {
      font-size: 2rem;
  }

  .hero-subtitle {
      font-size: 1.25rem;
  }

  .cta-button {
      padding: 0.875rem 2rem;
      font-size: 1rem;
  }

  section {
      padding: 3rem 0;
  }

  .services-wrapper {
      gap: 2rem;
  }

  .services-image img {
      max-height: 300px;
  }

  .service-item {
      padding: 1.5rem;
  }

  .service-content {
      gap: 1rem;
  }

  .service-icon-wrapper {
      width: 55px;
      height: 55px;
      min-width: 55px;
  }

  .service-icon-wrapper svg {
      width: 26px;
      height: 26px;
  }

  .service-title {
      font-size: 1.1rem;
  }

  .footer {
      padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
      gap: 2rem;
      margin-bottom: 1.5rem;
  }

  .footer-doctor-name {
      font-size: 1.3rem;
  }

  .footer-doctor-title {
      font-size: 0.85rem;
  }

  .footer-section-title {
      font-size: 0.85rem;
      margin-bottom: 1rem;
  }

  .footer-contact-item {
      margin-bottom: 1.25rem;
      gap: 0.5rem;
  }

  .footer-contact {
      font-size: 0.85rem;
  }

  .footer-contact a {
      font-size: 0.9rem;
  }

  .footer-address-link {
      font-size: 0.85rem;
      line-height: 1.6;
  }

  .footer-bottom {
      padding-top: 1.5rem;
  }

  .footer-bottom p {
      font-size: 0.8rem;
  }

  .map-container {
      padding-bottom: 75%; /* Taller aspect ratio for mobile */
  }

  .floating-buttons {
      right: 15px;
      bottom: 15px;
  }

  .floating-btn {
      width: 55px;
      height: 55px;
  }

  .floating-btn svg {
      width: 24px;
      height: 24px;
  }

  .floating-btn-number {
      font-size: 0.75rem;
      padding: 6px 10px;
      right: 65px;
  }

  .sticky-contact-icons {
      right: 15px;
      bottom: 15px;
      gap: 12px;
  }

  .sticky-icon {
      width: 55px;
      height: 55px;
  }

  .sticky-icon svg {
      width: 24px;
      height: 24px;
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: visible;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-btn-number {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-btn-number::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.85);
}

.floating-btn:hover .floating-btn-number {
  opacity: 1;
  transform: translateX(-5px);
}

/* Sticky Contact Icons */
.sticky-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: visible;
}

.sticky-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.sticky-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.sticky-call {
  background: linear-gradient(135deg, #d1921f, #c7ac7d);
}

.sticky-icon svg {
  width: 28px;
  height: 28px;
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
  html {
      scroll-behavior: smooth;
  }
}

