/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #2c3e50;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1abc9c;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-img {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  border-radius: 50%;
}

.logo-text {
  color: #1abc9c;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1abc9c;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1abc9c;
}

.btn-book {
  background: #1abc9c;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2c3e50;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #1abc9c;
}

.btn-book-mobile {
  background: #1abc9c;
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-book-mobile:hover {
  background: #16a085;
  transform: translateY(-1px);
}

.mobile-nav-menu.show {
  display: flex;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-left {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1abc9c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: #1abc9c;
  padding: 12px 30px;
  border: 2px solid #1abc9c;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #1abc9c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* UPDATED: Removed tilt to make photo straight */
.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(0deg); /* Changed from rotate(5deg) to rotate(0deg) */
  transition: all 0.3s ease;
}

.image-card:hover {
  transform: rotate(0deg) scale(1.05); /* Keep straight on hover, only scale */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* About Page Styles */
.about-hero-creative {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: relative;
  width: 100%;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #1abc9c;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatParticles 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; animation-delay: 6s; }
.particle:nth-child(5) { left: 80%; animation-delay: 8s; }
.particle:nth-child(6) { left: 90%; animation-delay: 10s; }

@keyframes floatParticles {
  0% { transform: translateY(100vh) scale(0); }
  10% { transform: translateY(80vh) scale(1); }
  90% { transform: translateY(-10vh) scale(1); }
  100% { transform: translateY(-20vh) scale(0); }
}

.about-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.about-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1abc9c;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1abc9c;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Content Section */
.about-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.about-card-creative {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.about-card-creative.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card-creative:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-decoration {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-heading-creative {
  color: #1abc9c;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.about-heading-creative::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #1abc9c;
}

.about-text-creative {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.qualifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qualification-badge {
  background: #1abc9c;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.qualification-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.clinical-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.focus-card {
  background: rgba(26, 188, 156, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(26, 188, 156, 0.3);
  transition: all 0.3s ease;
}

.focus-card:hover {
  background: rgba(26, 188, 156, 0.2);
  transform: translateY(-5px);
}

.focus-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.focus-title {
  color: #1abc9c;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Page Styles */
.services-section-creative {
  min-height: 100vh;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
}

.services-hero-content {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.services-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1abc9c;
  margin-bottom: 20px;
}

.services-page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-creative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card-creative {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-creative::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 188, 156, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card-creative:hover::before {
  left: 100%;
}

.service-card-creative:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(26, 188, 156, 0.5);
}

.service-icon-creative {
  font-size: 2.5rem;
  color: #1abc9c;
  margin-bottom: 20px;
  display: block;
}

.service-title-creative {
  color: #1abc9c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-description-creative {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features-creative {
  list-style: none;
}

.service-features-creative li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features-creative li::before {
  content: '✓';
  color: #1abc9c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA Section */
.services-cta-creative {
  background: rgba(26, 188, 156, 0.1);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  border: 2px solid rgba(26, 188, 156, 0.3);
}

.cta-title-creative {
  color: #1abc9c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description-creative {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-creative {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-creative {
  background: #1abc9c;
  color: white;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary-creative:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

/* Locations Page Styles */
.locations-hero-creative {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

.locations-hero-bg {
  position: relative;
  width: 100%;
}

.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #1abc9c;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatDots 12s linear infinite;
}

.dot:nth-child(1) { left: 15%; animation-delay: 0s; }
.dot:nth-child(2) { left: 35%; animation-delay: 2s; }
.dot:nth-child(3) { left: 55%; animation-delay: 4s; }
.dot:nth-child(4) { left: 75%; animation-delay: 6s; }
.dot:nth-child(5) { left: 85%; animation-delay: 8s; }

@keyframes floatDots {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.locations-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.locations-page-title {
  font-size: 4rem;
  font-weight: 700;
  color: #1abc9c;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.locations-page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-decorative-line {
  width: 80px;
  height: 4px;
  background: #1abc9c;
  margin: 0 auto 40px;
  border-radius: 2px;
}

.quick-contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 1.5rem;
  filter: brightness(1.2);
}

.contact-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

/* Contact Information Section */
.contact-info-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 60px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.contact-card-title {
  color: #1abc9c;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card-link {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(26, 188, 156, 0.2);
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-card-link:hover {
  background: rgba(26, 188, 156, 0.4);
  transform: scale(1.05);
  color: #1abc9c;
}

.contact-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Locations Content Section */
.locations-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.location-card-creative {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.location-card-creative.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-card-creative:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.location-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.location-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.location-badge.primary {
  background: rgba(26, 188, 156, 0.2);
  color: #1abc9c;
  border: 2px solid #1abc9c;
}

.location-badge.secondary {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 2px solid #3498db;
}

.location-name {
  color: #1abc9c;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-specialty {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-style: italic;
}

.location-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-group:nth-child(3) {
  border-top: 1px solid rgba(26, 188, 156, 0.3);
  padding-top: 20px;
  margin-top: 20px;
}

.detail-icon {
  flex-shrink: 0;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 188, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid rgba(26, 188, 156, 0.5);
}

.detail-info {
  flex-grow: 1;
}

.detail-title {
  color: #1abc9c;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.detail-days {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

.detail-location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-link {
  color: #1abc9c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 4px;
}

.contact-link:hover {
  background: rgba(26, 188, 156, 0.1);
  color: #16a085;
  text-decoration: underline;
}

.location-actions {
  margin-top: 20px;
}

.btn-location-primary {
  background: #1abc9c;
  color: white;
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-location-primary:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.btn-icon {
  font-size: 1.1rem;
}

.location-map {
  position: relative;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

.map-link {
  background: rgba(26, 188, 156, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: rgba(26, 188, 156, 1);
  transform: translateY(-2px);
}

/* CTA Section for Locations */
.locations-cta-creative {
  background: rgba(26, 188, 156, 0.1);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  border: 2px solid rgba(26, 188, 156, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #1abc9c;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons-locations {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-locations {
  background: #1abc9c;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-locations:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.btn-secondary-locations {
  background: transparent;
  color: #1abc9c;
  padding: 12px 30px;
  border: 2px solid #1abc9c;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-locations:hover {
  background: #1abc9c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.cta-visual-locations {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  z-index: 1;
}

.pulse-circle {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(26, 188, 156, 0.3);
  border-radius: 50%;
  position: absolute;
  animation: pulse 3s infinite;
}

.pulse-circle.delay-1 {
  animation-delay: 1s;
}

.pulse-circle.delay-2 {
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .location-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .services-grid-creative {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  /* Adjust button size for tablet */
  .btn-book {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  /* UPDATED: Make "Book Consultation" button smaller and more mobile-friendly */
  .btn-book {
    padding: 8px 16px; /* Much smaller padding */
    font-size: 0.85rem; /* Smaller font */
    border-radius: 20px; /* Smaller border radius */
    min-width: auto; /* Remove minimum width */
  }
  
  /* Adjust header for smaller button */
  .header {
    padding: 12px 0;
  }
  
  .logo {
    font-size: 1.3rem; /* Slightly smaller logo text */
  }
  
  .logo-img {
    width: 80px; /* Smaller logo image */
    height: 80px;
    margin-right: 10px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-page-title,
  .services-page-title,
  .locations-page-title {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .clinical-focus-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-contact-info {
    gap: 30px;
  }
  
  .contact-info-section {
    padding: 40px 0;
    margin-top: -30px;
  }
  
  .contact-cards {
    gap: 20px;
    padding: 0 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-card-icon {
    font-size: 2.5rem;
  }
  
  .contact-card-title {
    font-size: 1.2rem;
  }
}