/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 128, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0080ff;
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.15);
  margin-bottom: 2rem;
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.35);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: white;
  color: #2c3e50 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #f8f9fa;
  border-color: #0080ff;
  color: #0080ff !important;
  transform: translateY(-3px);
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%);
  border: none;
  border-radius: 16px;
  color: #d35400;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.15);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.hero-alert:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.2);
}

.hero-alert i {
  font-size: 1.8rem;
  color: #e67e22;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-alert span {
  display: flex;
  align-items: center;
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  color: #0080ff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Therapists Section */
.therapists-section {
  padding: 50px 0;
  background: white;
}

.therapist-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

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

.therapist-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.therapist-card:hover .therapist-image {
  transform: scale(1.08);
}

.therapist-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.therapist-card:hover .therapist-overlay {
  opacity: 1;
}

/* Always show Instagram icon on mobile */
@media (max-width: 768px) {
  .therapist-overlay {
    opacity: 1;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  color: #0080ff;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  transform: scale(1.1);
}

.therapist-content {
  padding: 2rem;
}

.therapist-header {
  margin-bottom: 1.5rem;
}

.therapist-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.therapist-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  color: #0080ff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
}

.therapist-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #f8f9fa;
  color: #495057;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-tag:hover {
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  color: #0080ff;
  border-color: #0080ff;
  transform: translateY(-2px);
}

.service-tag i {
  font-size: 1rem;
}

/* ============================================
   PROFESSIONAL THERAPIST CARDS
   ============================================ */

.therapist-card-pro {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 128, 255, 0.1);
}

.therapist-card-pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 128, 255, 0.2);
  border-color: rgba(0, 128, 255, 0.3);
}

.therapist-image-wrapper-pro {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
}

.therapist-image-pro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.therapist-card-pro:hover .therapist-image-pro {
  transform: scale(1.1);
}

.therapist-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  transition: opacity 0.3s ease;
}

.therapist-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.therapist-name-overlay {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.therapist-title-overlay {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 500;
}

.social-link-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  color: #0080ff;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-pro:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4);
}

.therapist-content-pro {
  padding: 2rem;
}

.therapist-specialty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 128, 255, 0.12) 100%);
  border: 1px solid rgba(0, 128, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0080ff;
  margin-bottom: 1.5rem;
}

.therapist-specialty i {
  font-size: 1rem;
}

.therapist-services-pro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service-tag-pro {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  transition: all 0.3s ease;
  cursor: default;
}

.service-tag-pro:hover {
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.05) 0%, rgba(0, 128, 255, 0.08) 100%);
  border-color: rgba(0, 128, 255, 0.3);
  transform: translateX(5px);
}

.service-tag-pro i {
  font-size: 1.2rem;
  color: #0080ff;
  min-width: 20px;
  text-align: center;
}

.service-tag-pro span {
  flex: 1;
}

/* Techniques Section */
.techniques-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.technique-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.technique-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0080ff 0%, #0056b3 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.technique-card:hover::before {
  transform: scaleX(1);
}

.technique-card:hover {
  border-color: #0080ff;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 128, 255, 0.2);
}

.technique-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.technique-card:hover .technique-icon {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  transform: scale(1.1) rotate(5deg);
}

.technique-icon i {
  font-size: 2rem;
  color: #0080ff;
  transition: all 0.4s ease;
}

.technique-card:hover .technique-icon i {
  color: white;
}

.technique-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.technique-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 50px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 128, 255, 0.2);
  border-color: rgba(0, 128, 255, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.85) 0%, rgba(0, 86, 179, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 3.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1.3) rotate(5deg);
}

/* Vouchers Section */
.vouchers-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vouchers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .vouchers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .vouchers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.voucher-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.voucher-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 45px rgba(0, 128, 255, 0.2);
  border-color: rgba(0, 128, 255, 0.3);
}

.voucher-image-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  aspect-ratio: 16/10;
}

.voucher-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
}

.voucher-card:hover .voucher-image {
  transform: scale(1.08);
}

.voucher-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.92) 0%, rgba(0, 86, 179, 0.96) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voucher-image-wrapper:hover .voucher-overlay {
  opacity: 1;
}

.voucher-overlay i {
  color: white;
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.voucher-image-wrapper:hover .voucher-overlay i {
  transform: scale(1.2);
}

.voucher-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #2c3e50 !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-top: 2px solid #e9ecef;
}

.voucher-download i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.voucher-download:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  border-top-color: transparent;
}

.voucher-download:hover i {
  transform: translateY(3px);
}

/* Reviews Section */
.reviews-section {
  padding: 50px 0;
  background: white;
}

.btn-add-review {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-add-review:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.modern-review-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.modern-review-card:hover {
  border-color: #0080ff;
  box-shadow: 0 8px 30px rgba(0, 128, 255, 0.15);
  transform: translateY(-5px);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar i {
  color: white;
  font-size: 1.5rem;
}

.review-meta {
  flex: 1;
}

.review-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.review-stars {
  color: #ffc107;
  font-size: 1rem;
}

.review-stars i {
  margin-right: 2px;
}

.review-therapist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  color: #0080ff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: capitalize;
}

.review-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.review-timestamp {
  font-size: 0.85rem;
  color: #6c757d;
  display: flex;
  align-items: center;
}

.review-delete-btn {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.review-delete-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: scale(1.1);
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.no-reviews i {
  font-size: 4rem;
  color: #0080ff;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.no-reviews h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.no-reviews p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

/* Business Section */
.business-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  position: relative;
  overflow: hidden;
}

.business-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.business-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.business-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.business-icon i {
  font-size: 3rem;
  color: white;
}

.business-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.business-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.business-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2.5rem;
}

.btn-business {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: white;
  color: #0080ff !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-business:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 50px 0;
  background: white;
}

.contact-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-column {
  background: white;
  border: 2px solid rgba(0, 128, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 128, 255, 0.08);
}

.contact-column:hover {
  border-color: rgba(0, 128, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.15);
  transform: translateY(-8px);
}

.contact-icon-compact {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.25);
}

.contact-column:hover .contact-icon-compact {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4);
}

.contact-icon-compact i {
  font-size: 1.5rem;
  color: white;
}

.contact-label-compact {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0080ff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value-compact {
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-note-compact {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Modal Improvements */
.modal {
  backdrop-filter: blur(8px);
}

.modal-content {
  border-radius: 16px;
}

/* Container Improvements for Mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 0 50px;
  }

  .hero-section::before {
    width: 400px;
    height: 400px;
    right: -30%;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .hero-alert {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-alert i {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .techniques-section {
    padding: 40px 0;
  }

  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .technique-card {
    padding: 1.5rem;
  }

  .technique-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }

  .technique-icon i {
    font-size: 1.75rem;
  }

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

  .technique-description {
    font-size: 0.9rem;
  }

  .gallery-section {
    padding: 40px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-overlay i {
    font-size: 2.5rem;
  }

  .vouchers-section {
    padding: 40px 0;
  }

  .vouchers-grid {
    gap: 1.5rem;
  }

  .voucher-download {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .reviews-section {
    padding: 40px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modern-review-card {
    padding: 1.5rem;
  }

  .review-card-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .review-avatar {
    width: 45px;
    height: 45px;
  }

  .review-avatar i {
    font-size: 1.3rem;
  }

  .review-author {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .business-section {
    padding: 40px 0;
  }

  .business-section::before {
    width: 400px;
    height: 400px;
  }

  .business-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .business-icon i {
    font-size: 2.5rem;
  }

  .business-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .business-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .business-highlight {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .btn-business {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-grid-three {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-column {
    padding: 1.5rem 1.25rem;
  }

  .contact-icon-compact {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }

  .contact-icon-compact i {
    font-size: 1.3rem;
  }

  .contact-label-compact {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .contact-value-compact {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .contact-note-compact {
    font-size: 0.8rem;
  }

  .therapist-services {
    gap: 0.5rem;
  }

  .service-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .service-tag i {
    font-size: 0.9rem;
  }

  .therapist-card {
    margin-bottom: 1.5rem;
  }

  .therapist-content {
    padding: 1.5rem;
  }

  .therapist-name {
    font-size: 1.5rem;
  }

  /* Professional cards mobile */
  .therapist-card-pro {
    margin-bottom: 1.5rem;
  }

  .therapist-image-wrapper-pro {
    aspect-ratio: 4/3;
  }

  .therapist-name-overlay {
    font-size: 1.5rem;
  }

  .therapist-content-pro {
    padding: 1.5rem;
  }

  .therapist-info-overlay {
    padding: 1.5rem;
  }

  .social-link-pro {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .service-tag-pro {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .service-tag-pro i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 15px 0 40px;
  }

  .hero-content {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-alert {
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
  }

  .hero-alert i {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }

  .section-subtitle {
    font-size: 0.75rem;
    padding: 0.35rem 0.875rem;
  }

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

  .section-description {
    font-size: 0.95rem;
  }

  .therapists-section,
  .techniques-section,
  .gallery-section,
  .vouchers-section,
  .reviews-section,
  .business-section,
  .contact-section {
    padding: 30px 0;
  }

  .therapist-card-pro {
    margin-bottom: 1.25rem;
  }

  .therapist-name-overlay {
    font-size: 1.35rem;
  }

  .therapist-content-pro {
    padding: 1.25rem;
  }

  .service-tag-pro {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  .service-tag-pro i {
    font-size: 1rem;
  }

  .technique-card {
    padding: 1.25rem;
  }

  .technique-icon {
    width: 60px;
    height: 60px;
  }

  .technique-icon i {
    font-size: 1.6rem;
  }

  .technique-title {
    font-size: 1rem;
  }

  .technique-description {
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-item {
    border-radius: 14px;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }

  .vouchers-grid {
    gap: 1.25rem;
  }

  .voucher-download {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .btn-add-review {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .modern-review-card {
    padding: 1.25rem;
  }

  .review-card-header {
    gap: 0.65rem;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
  }

  .review-avatar i {
    font-size: 1.2rem;
  }

  .review-author {
    font-size: 0.95rem;
  }

  .review-therapist-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.875rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-timestamp {
    font-size: 0.8rem;
  }

  .business-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .business-icon i {
    font-size: 2.25rem;
  }

  .business-title {
    font-size: 1.5rem;
  }

  .business-description {
    font-size: 0.95rem;
  }

  .business-highlight {
    font-size: 0.95rem;
  }

  .btn-business {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }

  .contact-grid-three {
    gap: 1rem;
  }

  .contact-column {
    padding: 1.25rem 1rem;
  }

  .contact-icon-compact {
    width: 50px;
    height: 50px;
  }

  .contact-icon-compact i {
    font-size: 1.2rem;
  }

  .contact-label-compact {
    font-size: 0.95rem;
  }

  .contact-value-compact {
    font-size: 0.85rem;
  }

  .contact-note-compact {
    font-size: 0.75rem;
  }
}

/* ============================================
   Technique Modal Styles
   ============================================ */

.technique-modal {
  border-radius: 20px !important;
  padding: 0 !important;
}

.technique-modal .swal2-html-container {
  margin: 0 !important;
  padding: 0 !important;
}

.modal-content-wrapper {
  margin: 0 !important;
}

.technique-modal strong {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem !important;
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}

.technique-modal p,
.technique-modal ul,
.technique-modal li {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.technique-modal em {
  color: #0080ff;
  font-style: italic;
  font-weight: 500;
}

.technique-modal img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin: 1.5rem auto;
  display: block;
  transition: transform 0.3s ease;
}

.technique-modal img:hover {
  transform: scale(1.05);
}

.btn-modal-confirm {
  border-radius: 25px !important;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-modal-confirm:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.4) !important;
}

.btn-modal-confirm:active {
  transform: translateY(0) !important;
}
