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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header */
#main-header {
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.et_menu_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  padding: 10px 2%;
}

.logo_container {
  display: flex;
  align-items: center;
}

.logo_container a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #a37200;
  font-family: Georgia, serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

#logo {
  height: 120px;
  width: auto;
}

#et-top-navigation {
  display: flex;
  align-items: center;
}

#top-menu-nav {
  display: flex;
}

#top-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

#top-menu > li {
  position: relative;
}

#top-menu > li > a {
  text-decoration: none;
  color: #bd8a13;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 40px 0;
  display: block;
  transition: color 0.3s;
}

#top-menu > li > a:hover {
  color: #5b9aa9;
}

/* Dropdown Menus */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.sub-menu li {
  position: relative;
}

.sub-menu a {
  display: block;
  padding: 12px 20px;
  color: #bd8a13;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.sub-menu a:hover {
  background: #f5f5f5;
  color: #5b9aa9;
  padding-left: 25px;
}

.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

/* Book Online Button */
.nav-button a {
  background: #e8b955;
  color: rgb(0, 0, 0) !important;
  padding: 18px 35px !important;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.nav-button a:hover {
  background: #d4a73f;
}

/* Mobile Menu */
#et_mobile_nav_menu {
  display: none;
}

.mobile_nav {
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.mobile_menu_bar {
  width: 25px;
  height: 3px;
  background: #bd8a13;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease;
}

.mobile_menu_bar:before,
.mobile_menu_bar:after {
  content: "";
  width: 25px;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile_menu_bar:before {
  top: -8px;
}

.mobile_menu_bar:after {
  bottom: -8px;
}

/* Mobile Menu Toggle Animation */
.mobile_nav.active .mobile_menu_bar {
  background: transparent;
}

.mobile_nav.active .mobile_menu_bar:before {
  top: 0;
  transform: rotate(45deg);
}

.mobile_nav.active .mobile_menu_bar:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu Dropdown */
.mobile_menu_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  z-index: 1000;
  display: none;
  border-radius: 8px;
  overflow: hidden;
}

.mobile_menu_dropdown.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile_menu_dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile_menu_dropdown li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile_menu_dropdown li:last-child {
  border-bottom: none;
}

.mobile_menu_dropdown a {
  display: block;
  padding: 15px 20px;
  color: #bd8a13;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile_menu_dropdown a:hover {
  background: #f5f5f5;
  color: #5b9aa9;
  padding-left: 25px;
}

.mobile_menu_dropdown .sub-menu {
  background: #f8f8f8;
  display: none;
}

.mobile_menu_dropdown .sub-menu.show {
  display: block;
}

.mobile_menu_dropdown .sub-menu a {
  padding: 12px 20px 12px 40px;
  font-size: 13px;
  color: #a37200;
}

.mobile_menu_dropdown .sub-menu a:hover {
  color: #5b9aa9;
  background: #f0f0f0;
}

.mobile_menu_dropdown .menu-item-has-children > a::after {
  content: "▼";
  float: right;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile_menu_dropdown .menu-item-has-children.active > a::after {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  margin-top: 130px;
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/general/dentist.jpg") center/cover;
}

.hero-content {
  max-width: 1400px;
  /* margin: 0 auto; */
  margin: 0 20%;
  /* padding: 0 5%; */
  color: white;
  /* max-width: 650px; */
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
  font-family: "Georgia", serif;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-book {
  background: #e8b955;
  color: #333;
  padding: 15px 35px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-book:hover {
  background: #d4a73f;
  transform: translateY(-2px);
}

.hero-phone {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-phone a {
  color: white;
  text-decoration: none;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.hero-phone a:hover {
  opacity: 0.8;
}

/* Responsive Header */
@media (max-width: 1200px) {
  .et_menu_container {
    height: 120px;
    padding: 8px 2%;
  }

  #logo {
    height: 110px;
  }

  .logo-text {
    font-size: 22px;
  }

  /* Scale down navigation for smaller screens */
  #top-menu > li > a {
    font-size: 15px;
    padding: 35px 8px;
  }

  .nav-button a {
    font-size: 15px;
    padding: 16px 28px !important;
  }

  .hero {
    margin-top: 120px;
  }
}

@media (max-width: 1220px) {
  /* Aggressive scaling to keep everything on one line */
  #top-menu {
    gap: 20px;
  }

  #top-menu > li > a {
    font-size: 13px;
    padding: 35px 6px;
  }

  .nav-button a {
    font-size: 13px;
    padding: 14px 24px !important;
  }

  .logo-text {
    font-size: 20px;
  }

  #logo {
    height: 100px;
  }
}

@media (max-width: 1050px) {
  /* Even more aggressive scaling for tight spaces */
  #top-menu {
    gap: 15px;
  }

  #top-menu > li > a {
    font-size: 12px;
    padding: 35px 4px;
  }

  .nav-button a {
    font-size: 12px;
    padding: 12px 20px !important;
  }

  .logo-text {
    font-size: 18px;
  }

  #logo {
    height: 95px;
  }
}

@media (max-width: 1000px) {
  /* Maximum scaling before switching to mobile menu */
  #top-menu {
    gap: 10px;
  }

  #top-menu > li > a {
    font-size: 11px;
    padding: 35px 3px;
  }

  .nav-button a {
    font-size: 11px;
    padding: 10px 18px !important;
  }

  .logo-text {
    font-size: 16px;
  }

  #logo {
    height: 90px;
  }
}

@media (max-width: 1024px) {
  .et_menu_container {
    height: 110px;
    padding: 8px 2%;
  }

  #top-menu {
    display: none;
  }

  #et_mobile_nav_menu {
    display: block;
  }

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

  #logo {
    height: 100px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    margin-top: 110px;
  }

  /* Mobile menu styling */
  .mobile_nav {
    padding: 8px;
  }

  .mobile_menu_bar {
    width: 28px;
  }

  .mobile_menu_bar:before,
  .mobile_menu_bar:after {
    width: 28px;
  }
}

@media (max-width: 768px) {
  .et_menu_container {
    height: 100px;
    padding: 6px 2%;
  }

  #logo {
    height: 90px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-link {
    gap: 10px;
  }

  .hero {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  .et_menu_container {
    height: 90px;
    padding: 5px 2%;
  }

  #logo {
    height: 80px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-link {
    gap: 8px;
  }

  .hero {
    margin-top: 90px;
  }
}

@media (max-width: 360px) {
  .et_menu_container {
    height: 80px;
    padding: 4px 2%;
  }

  #logo {
    height: 70px;
  }

  .logo-text {
    font-size: 14px;
  }

  .logo-link {
    gap: 6px;
  }

  .hero {
    margin-top: 80px;
  }

  /* Mobile menu for very small screens */
  .mobile_nav {
    padding: 6px;
  }

  .mobile_menu_bar {
    width: 24px;
  }

  .mobile_menu_bar:before,
  .mobile_menu_bar:after {
    width: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-book {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 12px;
  }
}

/* Dentistry Done Right Section */
.dentistry-done-right {
  background: #b48415f0;
  padding: 80px 5%;
  position: relative;
}

/* .ddr-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 60px;
  position: relative;
} */

.ddr-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.15); /* Slightly more visible glass */
  border: 1px solid rgba(37, 37, 37, 0.25);
  border-radius: 20px;
  padding: 60px;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ddr-content {
  color: white;
}

.ddr-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: "Georgia", serif;
}

.ddr-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.ddr-features {
  list-style: none;
  margin-bottom: 35px;
}

.ddr-features li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  font-weight: 500;
}

.ddr-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e8b955;
  font-weight: bold;
  font-size: 1.5rem;
}

.ddr-quote {
  border-left: 3px solid #e8b955;
  padding-left: 20px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.ddr-image-wrapper {
  position: relative;
}

.ddr-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.warranty-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 10;
}

.badge-circle {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid #3d7488;
  overflow: hidden;
}

/* Circular text path */
.circle-text {
  position: absolute;

  width: 200px;
  height: 200px;
}

.circle-text text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  fill: #3d7488;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Center smile SVG */
.smile-icon {
  z-index: 2;
  position: relative;
}

.smile-svg {
  width: 80px;
  height: 80px;
}

/* Optional soft hover animation */
.badge-circle:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Accessibility Button */
.accessibility-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #e8b955;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border: 2px solid #bd8a13;
  font-size: 1.5rem;
}

/* Responsive for Dentistry Done Right */
@media (max-width: 1024px) {
  .ddr-container {
    grid-template-columns: 1fr;
    padding: 40px;
  }

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

  .warranty-badge {
    bottom: -20px;
    right: -20px;
  }

  .badge-circle {
    width: 150px;
    height: 150px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .dentistry-done-right {
    padding: 60px 5%;
  }

  .ddr-container {
    padding: 30px;
  }

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

  .warranty-badge {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #f5f5f5;
  padding: 80px 5%;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 50px;
}

.quote-icon {
  font-size: 5rem;
  color: #bd8a13;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonials-title {
  font-size: 2.5rem;
  color: #e8b955;
  font-weight: 300;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}

.star-rating {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.reviews-link {
  color: #3d7488;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-block;
  transition: color 0.3s;
}

.reviews-link:hover {
  color: #2a5766;
}

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

.testimonial-box {
  padding: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-gray {
  background: #e8e8e8;
  color: #a37200;
}

.testimonial-yellow {
  background: #e8d199;
  color: #a37200;
}

.testimonial-teal {
  background: #8fb9c4;
  color: #a37200;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-divider {
  border: none;
  border-top: 2px solid rgba(30, 58, 74, 0.3);
  margin: 20px 0;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}

.dot-pattern {
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #a37200 2px, transparent 2px);
  background-size: 8px 8px;
  opacity: 0.3;
}

.dot-pattern-right {
  bottom: 0;
  right: 0;
  border-radius: 15px 0 0 0;
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 5%;
  }

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

  .testimonial-box {
    padding: 30px;
    min-height: auto;
  }

  .quote-icon {
    font-size: 4rem;
  }
}

/* Services Section */
.services-section {
  background: white;
  padding: 80px 5%;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-title {
  font-size: 2.5rem;
  color: #e8b955;
  font-weight: 300;
  font-family: Georgia, serif;
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-heading {
  font-size: 1.8rem;
  color: #e8b955;
  font-weight: 300;
  font-family: Georgia, serif;
  padding: 25px 30px 15px;
  margin: 0;
}

.service-description {
  font-size: 1.05rem;
  color: #3d7488;
  line-height: 1.6;
  padding: 0 30px 25px;
  margin: 0;
}

.service-button {
  display: inline-block;
  margin: 0 30px 30px;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #e8b955;
  border-radius: 3px;
  text-align: center;
  width: calc(100% - 60px);
  transition: all 0.3s;
}

.service-button:hover {
  background: #3d7488;
  color: white;
}

/* Responsive for Services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 5%;
  }

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

  .service-image {
    height: 250px;
  }
}

/* new sections  */
/* Whitening Section */
.whitening-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  background-image: url("../images/general/dentistry_room.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.whitening-container {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  background: #f8f8f8;
  padding: 80px 70px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.whitening-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a37200;
  margin-bottom: 20px;
  text-align: center;
}

.whitening-title {
  font-size: 3.8rem;
  font-weight: 400;
  font-family: Georgia, serif;
  color: #e8b955;
  line-height: 1.1;
  margin-bottom: 55px;
  text-align: center;
}

.whitening-list {
  list-style: none;
  margin-bottom: 55px;
}

.whitening-list li {
  padding: 18px 0;
  padding-left: 45px;
  position: relative;
  font-size: 1.1rem;
  color: #a37200;
  line-height: 1.5;
  font-weight: 400;
}

.whitening-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a37200;
  font-weight: bold;
  font-size: 1.6rem;
  top: 14px;
}

.button-wrapper {
  text-align: center;
}

.whitening-button {
  display: inline-block;
  padding: 18px 50px;
  background: #e8b955;
  color: rgb(0, 0, 0);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.whitening-button:hover {
  background: #d4a73f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 185, 85, 0.5);
}

/* Accessibility Button */
.accessibility-button {
  position: fixed;
  bottom: 35px;
  left: 35px;
  width: 60px;
  height: 60px;
  background: #e8b955;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  border: none;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.accessibility-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Insurance Section */
.insurance-section {
  background: #f5f5f5;
  padding: 80px 5%;
}

.insurance-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgb(146, 109, 29);
}

.insurance-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insurance-icon {
  width: 60px;
  height: 60px;
  background: #b48415f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.insurance-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.insurance-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8b955;
  margin-bottom: 15px;
}

.insurance-left-title {
  font-size: 3rem;
  font-weight: 400;
  font-family: Georgia, serif;
  color: #e8b955;
  line-height: 1.2;
  margin-bottom: 30px;
}

.insurance-left-text {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.94);
  line-height: 1.7;
}

.insurance-right {
  background: #b48415f0;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.insurance-right-title {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: Georgia, serif;
  color: white;
  line-height: 1.2;
  margin-bottom: 30px;
}

.insurance-right-text {
  font-size: 1.05rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 50px;
}

.insurance-graphic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
}

.graphic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.graphic-icon {
  width: 90px;
  height: 90px;
  border: 3px solid white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-icon img {
  width: 80px;
  height: 50px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.graphic-shield {
  width: 120px;
  height: 120px;
}

.graphic-shield svg {
  width: 110px;
  height: 80px;
}

/* Specialty Services Section - Image Card Styles */

.specialty-services-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.specialty-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.specialty-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Icon Styling */
.specialty-icon {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialty-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* Card Content */
.specialty-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 20px 20px 12px;
  line-height: 1.3;
}

.specialty-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 20px 20px;
  padding-bottom: 20px;
}

/* Section Headers */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .specialty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specialty-icon {
    height: 200px;
  }

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

  .specialty-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Alternative Card Style with Border */
.specialty-card-bordered {
  border: 2px solid #e0e0e0;
}

.specialty-card-bordered:hover {
  border-color: #007bff;
}

/* Image Loading Placeholder */
.specialty-icon img[src=""] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Responsive */
/* Visit Us Section */
.visit-section {
  background: white;
  padding: 100px 5%;
}

.visit-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.visit-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  position: relative;
}

.visit-image {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.visit-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.visit-image:hover img {
  transform: scale(1.05);
}

.visit-image:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.visit-image:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.visit-image:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.visit-image:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

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

.visit-content {
  padding: 20px 0;
}

.visit-title {
  font-size: 3.8rem;
  font-weight: 400;
  font-family: Georgia, serif;
  color: #e8b955;
  line-height: 1.1;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 20px;
}

.visit-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #e8b955;
  border-radius: 2px;
}

.visit-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 50px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: all 0.3s;
}

.info-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgb(146, 109, 29) 0%, #e8b955 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(15, 55, 70, 0.3);
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.info-text {
  flex: 1;
}

.info-text strong {
  display: block;
  font-size: 1.15rem;
  color: #bd8a13;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-text p {
  font-size: 1.05rem;
  color: #a37200;
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.info-text a {
  color: #3d7488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.info-text a::after {
  content: "→";
  transition: transform 0.3s;
}

.info-text a:hover {
  color: #e8b955;
}

.info-text a:hover::after {
  transform: translateX(5px);
}

/* Responsive for Visit Section */
/* Map Section */
.map-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(61,116,136,0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(61,116,136,0.03)"/><circle cx="40" cy="40" r="0.8" fill="rgba(61,116,136,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23mapPattern)"/></svg>');
  pointer-events: none;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.map-header {
  text-align: center;
  margin-bottom: 60px;
}

.map-section-title {
  font-size: 3rem;
  font-weight: 400;
  color: #e8b955;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  position: relative;
  display: inline-block;
}

.map-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e8b955 0%, #d4a73f 100%);
  border-radius: 2px;
}

.map-section-subtitle {
  font-size: 1.2rem;
  color: #3d7488;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.map-wrapper {
  width: 100%;
  height: 650px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  background: white;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-wrapper:hover .map-iframe {
  filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
  position: absolute;
  top: 257px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  max-width: 380px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.map-overlay:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.map-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 185, 85, 0.05) 0%,
    transparent 50%
  );
  border-radius: 20px;
  pointer-events: none;
}

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

.map-overlay-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e8b955 0%, #d4a73f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(232, 185, 85, 0.3);
}

.map-overlay-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.map-overlay-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  line-height: 1.3;
}

.map-overlay-address {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.map-overlay-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #e8b955 0%, #d4a73f 100%);
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 185, 85, 0.3);
  border: none;
  cursor: pointer;
}

.map-overlay-button::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.map-overlay-button:hover {
  background: linear-gradient(135deg, #d4a73f 0%, #c19a35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 185, 85, 0.4);
}

.map-overlay-button:hover::after {
  transform: translateX(5px);
}

.map-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.map-info-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(61, 116, 136, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8b955 0%, #d4a73f 100%);
}

.map-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-info-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(61, 116, 136, 0.3);
}

.map-info-card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.map-info-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.map-info-card-text {
  font-size: 1rem;
  color: #a37200;
  line-height: 1.6;
  margin: 0;
}

/* Responsive for Map Section */
@media (max-width: 1024px) {
  .map-section {
    padding: 80px 5% 60px;
  }

  .map-section-title {
    font-size: 2.5rem;
  }

  .map-wrapper {
    height: 550px;
  }

  .map-overlay {
    position: static;
    margin-bottom: 30px;
    max-width: 100%;
    top: auto;
    right: auto;
    transform: none;
  }

  .map-info-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 60px 5% 50px;
  }

  .map-header {
    margin-bottom: 40px;
  }

  .map-section-title {
    font-size: 2.2rem;
  }

  .map-section-subtitle {
    font-size: 1.1rem;
  }

  .map-wrapper {
    height: 500px;
    border-radius: 20px;
  }

  .map-overlay {
    position: static;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 15px;
    max-width: 100%;
    top: auto;
    right: auto;
    transform: none;
  }

  .map-overlay-title {
    font-size: 1.4rem;
  }

  .map-overlay-icon {
    width: 45px;
    height: 45px;
  }

  .map-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .map-info-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 50px 5% 40px;
  }

  .map-header {
    margin-bottom: 30px;
  }

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

  .map-section-subtitle {
    font-size: 1rem;
  }

  .map-wrapper {
    height: 350px;
    border-radius: 15px;
  }

  .map-overlay {
    position: static;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    max-width: 100%;
    top: auto;
    right: auto;
    transform: none;
  }

  .map-overlay-title {
    font-size: 1.3rem;
  }

  .map-overlay-address {
    font-size: 1rem;
  }

  .map-overlay-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .map-info-cards {
    margin-top: 30px;
  }

  .map-info-card {
    padding: 20px;
  }

  .map-info-card-icon {
    width: 50px;
    height: 50px;
  }

  .map-info-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .visit-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .visit-title {
    font-size: 3rem;
  }

  .visit-images {
    order: -1;
  }
}

@media (max-width: 768px) {
  .visit-section {
    padding: 70px 5%;
  }

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

  .visit-image {
    height: 220px;
  }

  .info-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .visit-section {
    padding: 60px 5%;
  }

  .visit-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .visit-image {
    height: 250px;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .insurance-container {
    grid-template-columns: 1fr;
  }

  .insurance-left,
  .insurance-right {
    padding: 60px 50px;
  }

  .insurance-left-title,
  .insurance-right-title {
    font-size: 2.5rem;
  }

  .insurance-graphic {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .insurance-section {
    padding: 60px 5%;
  }

  .insurance-left,
  .insurance-right {
    padding: 50px 40px;
  }

  .insurance-left-title,
  .insurance-right-title {
    font-size: 2rem;
  }

  .insurance-graphic {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .whitening-container {
    max-width: 600px;
    padding: 60px 50px;
  }

  .whitening-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .whitening-section {
    padding: 40px 5%;
  }

  .whitening-container {
    padding: 50px 40px;
    border-radius: 30px;
  }

  .whitening-title {
    font-size: 2.8rem;
  }

  .whitening-list li {
    font-size: 1rem;
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .whitening-container {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .whitening-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .whitening-label {
    font-size: 0.65rem;
  }

  .whitening-list {
    margin-bottom: 45px;
  }

  .whitening-list li {
    font-size: 0.95rem;
    padding: 15px 0 15px 35px;
  }

  .whitening-button {
    width: 100%;
    padding: 16px 30px;
  }

  .accessibility-button {
    width: 50px;
    height: 50px;
    bottom: 25px;
    left: 25px;
    font-size: 1.5rem;
  }
}

/* FOOTER STYLING */
/* Footer */
.main-footer {
  background: linear-gradient(252deg, #936704f0 0%, #6c5a2ff0 100%);
  color: white;
  padding: 100px 5% 0;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-column {
  position: relative;
}

.footer-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e8b955;
  margin-bottom: 25px;
  font-family: Georgia, serif;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e8b955 0%, #d4a73f 100%);
  border-radius: 2px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: #e8b955;
  color: #a37200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 185, 85, 0.4);
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #e8b955;
}

.footer-links a:hover {
  color: #e8b955;
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact li:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.footer-contact svg {
  color: #e8b955;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(232, 185, 85, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(180deg);
  }
}

.newsletter-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #e8b955;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}

.newsletter-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: #e8b955;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(232, 185, 85, 0.2);
}

.newsletter-button {
  padding: 18px 35px;
  background: linear-gradient(135deg, #e8b955 0%, #d4a73f 100%);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 185, 85, 0.3);
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 185, 85, 0.4);
  background: linear-gradient(135deg, #d4a73f 0%, #c19a35 100%);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e8b955 50%,
    transparent 100%
  );
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #e8b955;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    padding: 40px 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 80px 5% 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .footer-newsletter {
    padding: 35px 25px;
    margin-bottom: 50px;
  }

  .newsletter-heading {
    font-size: 1.7rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 60px 5% 0;
  }

  .footer-newsletter {
    padding: 30px 20px;
  }

  .newsletter-heading {
    font-size: 1.5rem;
  }

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

  .footer-contact li {
    padding: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* ABOUT STYLE */
/* About Hero Section */
.about-hero {
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  padding: 150px 5% 100px;
  color: white;
}

.about-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e8b955;
  margin-bottom: 30px;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  text-align: justify;
}

.about-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
  padding: 100px 5%;
  background: #f8f9fa;
}

.mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.mission-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8b955, #d4a73f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.mission-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8b955;
  margin-bottom: 20px;
}

.mission-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a37200;
}

/* Story Section */
.story-section {
  padding: 100px 5%;
  background: white;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 30px;
}

.story-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #a37200;
  margin-bottom: 25px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  border-radius: 15px;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8b955;
  margin-bottom: 10px;
  -webkit-text-stroke: black 0.8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 5%;
  background: #f8f9fa;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 20px;
}

.why-choose-subtitle {
  font-size: 1.3rem;
  color: #e8b955;
  margin-bottom: 20px;
}

.why-choose-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #bd8a13;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.why-choose-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8b955, #d4a73f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.why-choose-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.why-choose-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 20px;
}

.why-choose-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a37200;
}

/* Team Section */
.team-section {
  padding: 100px 5%;
  background: white;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bd8a13;
  margin-bottom: 20px;
}

.team-subtitle {
  font-size: 1.3rem;
  color: rgb(139, 99, 11);
  margin-bottom: 20px;
  /*-webkit-text-stroke: black 0.5px;*/
}

.team-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #bd8a13;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 500px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 30px;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 10px;
}

/* .team-title {
  font-size: 1.1rem;
  color: #e8b955;
  font-weight: 600;
  margin-bottom: 5px;
} */
.member-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #bd8a13;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-position {
  font-size: 1.1rem;
  color: #e8b955;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-specialization {
  font-size: 1rem;
  color: #a37200;
  margin-bottom: 15px;
}

/* Awards Section */
.awards-section {
  padding: 100px 5%;
  background: #f8f9fa;
}

.awards-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.awards-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 20px;
}

.awards-subtitle {
  font-size: 1.3rem;
  color: #e8b955;
  margin-bottom: 60px;
}

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

.award-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.award-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 15px;
}

.award-description {
  font-size: 1rem;
  color: #a37200;
}

/* CTA Section */
.about-cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #a37200 0%, #2c5a6b 100%);
  color: white;
  text-align: center;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e8b955;
  color: #a37200;
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #a37200;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 120px 5% 80px;
  }

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

  .mission-grid,
  .why-choose-grid,
  .team-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

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

/* Services Hero Section */
.services-hero {
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  padding: 150px 5% 100px;
  color: white;
  text-align: center;
}

.services-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-hero-subtitle {
  font-size: 1.5rem;
  color: #e8b955;
  margin-bottom: 30px;
  font-weight: 600;
}

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Main Services Section */
.main-services-section {
  padding: 100px 5%;
  background: #f8f9fa;
}

.main-services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a37200;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #e8b955;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.main-services-grid {
  display: grid;
  gap: 60px;
}

.main-service-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform 0.3s ease;
}

.main-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.main-service-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

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

.service-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.service-badge {
  background: #e8b955;
  color: #a37200;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.main-service-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 20px;
}

.main-service-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #a37200;
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #bd8a13;
  font-size: 1rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e8b955;
  font-weight: 700;
  font-size: 1.2rem;
}

.service-cta-button {
  display: inline-block;
  background: #e8b955;
  color: rgb(0, 0, 0);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

.service-cta-button:hover {
  background: #d4a73f;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(232, 185, 85, 0.3);
}

/* Specialty Services Section */
.specialty-services-section {
  padding: 100px 5%;
  background: white;
}

.specialty-services-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.specialty-card {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.specialty-card:hover {
  transform: translateY(-10px);
  border-color: #e8b955;
  background: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.specialty-icon {
  width: 210px;
  height: 153px;
  background: linear-gradient(135deg, #e8b955, #d4a73f);
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px solid #000000;
}

.specialty-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.specialty-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 15px;
}

.specialty-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a37200;
}

/* Restorative Section */
.restorative-section {
  padding: 100px 5%;
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  color: white;
}

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

.restorative-content .section-title,
.restorative-content .section-subtitle {
  color: white;
}

.restorative-content .section-subtitle {
  color: #e8b955;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  opacity: 0.9;
}

.restorative-services {
  display: grid;
  gap: 30px;
}

.restorative-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: start;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.restorative-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.restorative-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e8b955;
  line-height: 1;
}

.restorative-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.restorative-item-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Orthodontics Section */
.orthodontics-section {
  padding: 100px 5%;
  background: #f8f9fa;
}

.orthodontics-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.orthodontics-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.orthodontics-content .section-title,
.orthodontics-content .section-subtitle {
  text-align: left;
}

.orthodontics-options {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.orthodontic-option {
  padding: 25px;
  background: white;
  border-radius: 15px;
  border-left: 4px solid #e8b955;
  transition: all 0.3s ease;
}

.orthodontic-option:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 10px;
}

.option-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a37200;
}

/* Wellness Section */
.wellness-section {
  padding: 100px 5%;
  background: white;
}

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

.wellness-description {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #a37200;
  max-width: 900px;
  margin: 0 auto 60px;
}

.wellness-benefits {
  display: grid;
  gap: 30px;
}

.wellness-benefit {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  align-items: start;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.wellness-benefit:hover {
  background: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8b955, #d4a73f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a37200;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a37200;
}

/* CTA Section */
.services-cta-section {
  padding: 100px 5%;
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%);
  color: white;
  text-align: center;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.services-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e8b955;
  color: #a37200;
}

.btn-primary:hover {
  background: #d4a73f;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(232, 185, 85, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #a37200;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-service-card {
    grid-template-columns: 1fr;
  }

  .main-service-image {
    min-height: 300px;
  }

  .orthodontics-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 5% 80px;
  }

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

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

  .main-service-content {
    padding: 30px;
  }

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

  .restorative-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 2rem;
  }

  .main-service-title {
    font-size: 1.5rem;
  }

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

/* Before and After Section STYLES */
/* Hero Section */
.before-and-after-hero-section {
  margin-top: 60px;
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(252deg, #bd8a13f0 0%, #6c5a2ff0 100%),
    url("../images/general/dentist.jpg") center/cover;
  color: white;
  text-align: center;
}

.before-and-after-hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}

.before-and-after-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Filter Section */
.before-and-after-filter-section {
  padding: 50px 5%;
  background: white;
  border-bottom: 1px solid #e0e0e0;
}

.before-and-after-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.before-and-after-filter-title {
  font-size: 1.1rem;
  color: #a37200;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-and-after-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.before-and-after-filter-btn {
  padding: 12px 30px;
  border: 2px solid #3d7488;
  background: white;
  color: #3d7488;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
      text-decoration: none;
}

.before-and-after-filter-btn:hover,
.before-and-after-filter-btn.active {
  background: #3d7488;
  color: white;
}

/* Gallery Section */
.before-and-after-gallery-section {
  padding: 80px 5%;
  background: #f8fafb;
}

.before-and-after-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.before-and-after-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

.before-and-after-gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

.before-and-after-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.before-and-after-comparison-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.before-and-after-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-and-after-before-image,
.before-and-after-after-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d0e8f2, #e8f2f4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d7488;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
}

.before-and-after-before-image:after,
.before-and-after-after-image:after {
  content: attr(data-label);
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-and-after-divider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.before-and-after-gallery-info {
  padding: 30px;
}

.before-and-after-gallery-category {
  color: #e8b955;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.before-and-after-gallery-title {
  font-size: 1.5rem;
  color: #a37200;
  font-weight: 600;
  margin-bottom: 15px;
}

.before-and-after-gallery-description {
  color: #a37200;
  line-height: 1.7;
  margin-bottom: 20px;
}

.before-and-after-treatment-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.before-and-after-tag {
  background: #f0f8fa;
  color: #3d7488;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Testimonial Section */
.before-and-after-testimonial-section {
  padding: 80px 5%;
  background: white;
}

.before-and-after-testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.before-and-after-section-header {
  margin-bottom: 50px;
}

.before-and-after-section-label {
  font-size: 0.9rem;
  color: #3d7488;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.before-and-after-section-title {
  font-size: 2.5rem;
  color: #a37200;
  font-weight: 300;
  font-family: Georgia, serif;
}

.before-and-after-testimonial-box {
  background: #f8fafb;
  padding: 50px;
  border-radius: 20px;
  border-left: 4px solid #e8b955;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.before-and-after-testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.before-and-after-testimonial-author {
  font-weight: 700;
  color: #a37200;
  font-size: 1.1rem;
}

.before-and-after-testimonial-role {
  color: #3d7488;
  font-size: 0.95rem;
}

/* CTA Section */
.before-and-after-cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #3d7488 0%, #2a5766 100%);
  text-align: center;
  color: white;
}

.before-and-after-cta-content h2 {
  font-size: 3rem;
  font-weight: 300;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}

.before-and-after-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.before-and-after-btn-primary {
  background: #e8b955;
  color: #bd8a13;
  padding: 18px 45px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.before-and-after-btn-primary:hover {
  background: #d4a73f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 185, 85, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .before-and-after-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .before-and-after-hero-content h1 {
    font-size: 2.5rem;
  }

  .before-and-after-gallery-grid {
    grid-template-columns: 1fr;
  }

  .before-and-after-comparison-container {
    height: 300px;
  }

  .before-and-after-section-title,
  .before-and-after-cta-content h2 {
    font-size: 2rem;
  }

  .before-and-after-top-menu {
    display: none;
  }

  .before-and-after-testimonial-box {
    padding: 30px;
  }
}
