@font-face {
  font-family: 'Chapaza';
  src: url('../fonts/Chapaza.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: swap;
}

:root {
  --primary-color: #d4af37;
  --primary-dark: #b8941f;
  --secondary-color: #1a1d29;
  --accent-color: #f4e4c1;
  --dark-bg: #0a0e1a;
  --light-bg: #fafbfc;
  --text-dark: #1a1d29;
  --text-light: #6c757d;
  --success-color: #27a11a;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  --gradient-dark: linear-gradient(135deg, #1a1d29 0%, #2d3142 100%);
  --gradient-shine: linear-gradient(135deg, #f4e4c1 0%, #d4af37 50%, #b8941f 100%);
  --gradient-elegant: linear-gradient(45deg, #d4af37 0%, #f9f7f3 50%, #d4af37 100%);
  --border-radius: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 3px 15px rgba(212, 175, 55, 0.1);
  --shadow-md: 0 10px 40px rgba(212, 175, 55, 0.15);
  --shadow-lg: 0 20px 60px rgba(212, 175, 55, 0.25);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: 'Gilroy', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--light-bg);
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.highlight {
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Navbar */
.navbar-v2 {
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
  padding: 1.25rem 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-v2 .brand img {
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.call-btn {
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.5s;
}

.call-btn:hover::before {
  left: 100%;
}

.call-btn:hover {
  color: var(--dark-bg);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--gradient-dark);
}

@media (max-width: 991px) {
  .hero-v2 {
    padding: 100px 0 60px;
    min-height: auto;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              linear-gradient(135deg, rgba(26, 29, 41, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-weight: 400;
}

@media (max-width: 991px) {
  .hero-title {
    color: #fff;
    margin-top: 50px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

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

  .hero-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.75rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

@media (max-width: 991px) {
  .hero-features {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    justify-content: center;
  }

  .feature-item i {
    font-size: 1.5rem;
  }
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease 0.6s both;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-shine);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 800;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-control {
  height: 60px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  transition: var(--transition);
  background: #f8f9fa;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background: white;
  outline: none;
}

.btn-primary-v2 {
  background: var(--gradient-shine);
  border: none;
  color: var(--dark-bg);
  padding: 1.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-v2:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #dee2e6;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: white;
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-whatsapp-v2 {
  background: var(--success-color);
  border: none;
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-whatsapp-v2:hover {
  background: #28c717;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 161, 26, 0.3);
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.trust-badge {
  padding: 2.5rem 1.5rem;
  transition: var(--transition);
  position: relative;
}

.trust-badge:hover {
  transform: translateY(-10px);
}

.trust-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-shine);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.trust-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.trust-icon i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.trust-badge h4 {
  font-size: 2.5rem;
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.trust-badge p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.05rem;
}

/* Offer Banner */
.offer-banner {
  background: var(--gradient-dark);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-badge {
  background: rgba(212, 175, 55, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 700;
  width: fit-content;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-banner h2 {
  font-size: 3rem;
  margin: 0;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.offer-banner p {
  margin: 0;
  font-size: 1.25rem;
  opacity: 0.95;
}

.btn-offer {
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-offer:hover::before {
  width: 400px;
  height: 400px;
}

.btn-offer:hover {
  color: var(--dark-bg);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

/* Sections */
.treatments-section,
.why-us-section,
.about-section,
.media-section {
  padding: 5rem 0;
}

.treatments-section {
  background: var(--light-bg);
}

.why-us-section {
  background: white;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Feature Boxes */
.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: left 0.5s;
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-shine);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  transform: rotate(-5deg);
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  transform: rotate(0deg) scale(1.1);
}

.feature-icon i {
  font-size: 3rem;
  color: var(--dark-bg);
}

.feature-box h4 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-weight: 800;
}

.feature-box p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 767px) {
  .why-us-section {
    padding: 3rem 0;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .feature-icon i {
    font-size: 2rem;
  }
  
  .feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-box p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Treatment Cards */
.treatment-card-v2 {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}

.treatment-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 2px;
  background: var(--gradient-shine);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.treatment-card-v2:hover::before {
  opacity: 1;
}

.treatment-card-v2:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-md);
}

.treatment-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.treatment-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.treatment-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.treatment-card-v2:hover .treatment-img-wrapper img {
  transform: scale(1.15) rotate(2deg);
}

.treatment-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 800;
}

.treatment-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.7;
}

.price-tag {
  display: inline-block;
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.learn-more-link {
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  font-size: 1.05rem;
}

.learn-more-link i {
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.treatment-card-v2:hover .learn-more-link {
  gap: 1.25rem;
}

/* CTA Card */
.cta-card {
  background: var(--gradient-dark);
  color: white;
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-card i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.6));
  position: relative;
  z-index: 1;
}

.cta-card h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.cta-card p {
  margin-bottom: 2rem;
  opacity: 0.95;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.btn-outline-primary-v2 {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-primary-v2:hover {
  background: var(--gradient-shine);
  color: var(--dark-bg);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Exit Intent Popup - Final Design */
.exit-popup-final .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 500px;
  margin: auto;
}

.exit-popup-final .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  opacity: 0.7;
}

.exit-popup-final .btn-close:hover {
  opacity: 1;
}

.exit-popup-final .modal-body {
  padding: 2.5rem 2rem;
  background: white;
}

.exit-content-single {
  text-align: center;
}

/* Gift Icon */
.exit-gift-icon {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.exit-gift-icon i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Offer Title */
.exit-offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Value Badge */
.exit-value-badge {
  display: inline-block;
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* Offer Description */
.exit-offer-desc {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Limited Time */
.exit-limited-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.exit-limited-time i {
  font-size: 1rem;
}

/* Main Heading */
.exit-main-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Subtitle Text */
.exit-subtitle-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Benefits List */
.exit-benefits-list {
  text-align: left;
  margin-bottom: 1.5rem;
}

.exit-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.exit-benefit-item i {
  color: var(--text-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Form */
.exit-final-form {
  margin-bottom: 1rem;
}

.exit-input-group {
  position: relative;
  margin-bottom: 1rem;
}

.exit-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
  z-index: 1;
}

.exit-input-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #f8f9fa;
  transition: var(--transition);
}

.exit-input-group input::placeholder {
  color: #999;
}

.exit-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Claim Button */
.exit-claim-btn {
  width: 100%;
  padding: 1rem;
  background: var(--dark-bg);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.exit-claim-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.exit-claim-btn i {
  font-size: 1.1rem;
}

/* Privacy Text */
.exit-privacy-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.exit-privacy-text i {
  color: var(--text-dark);
  margin-right: 0.25rem;
}

/* WhatsApp Button */
.exit-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--success-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.exit-whatsapp-btn:hover {
  background: #28c717;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 161, 26, 0.3);
}

.exit-whatsapp-btn i {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .price-calculator-section {
    padding: 1.5rem 0;
  }
  
  .price-calculator-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
  }
  
  .price-calculator-section p {
    font-size: 0.8rem;
    margin-bottom: 1rem !important;
  }
  
  .calculator-card {
    padding: 1rem;
  }
  
  .calculator-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
  }
  
  .treatment-option {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .treatment-option .form-check-label {
    font-size: 0.85rem;
  }
  
  .treatment-price {
    font-size: 0.9rem !important;
  }
  
  .quantity-selector {
    padding-left: 0.5rem;
    margin-top: 0.25rem !important;
  }
  
  .quantity-selector label {
    font-size: 0.75rem;
  }
  
  .price-summary {
    position: static;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .price-summary h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
  }
  
  .selected-treatments {
    margin-bottom: 0.5rem !important;
    font-size: 0.85rem;
  }
  
  .selected-item {
    padding: 0.35rem 0;
    font-size: 0.8rem;
  }
  
  .package-includes {
    display: none;
  }
  
  .total-section {
    padding: 1rem;
  }
  
  .total-section > div {
    margin-bottom: 0.35rem !important;
    font-size: 0.85rem;
  }
  
  .total-section h5 {
    font-size: 1rem !important;
  }
  
  .total-section h3 {
    font-size: 1.3rem !important;
  }
  
  .total-section .btn {
    padding: 0.65rem !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .btn-whatsapp-v2 {
    padding: 0.65rem !important;
    font-size: 0.85rem !important;
  }
  
  .exit-popup-final .modal-body {
    padding: 2rem 1.5rem;
  }
  
  .exit-main-heading {
    font-size: 1.3rem;
  }
  
  .exit-offer-title {
    font-size: 1.3rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
}

.cta-box {
  color: white;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

.btn-light-v2 {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-light-v2:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer-v2 {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-v2 h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-v2 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-list i {
  color: var(--primary-color);
}

.contact-list a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--primary-color);
}

.footer-v2 hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.floating-contact:hover {
  transform: scale(1.15);
  animation: none;
}

/* Modal Styles */
.modal-content {
  border-radius: var(--border-radius);
  border: none;
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  height: 100%;
}

.contact-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-option img {
  margin-bottom: 1rem;
}

.contact-option p {
  margin-bottom: 0.5rem;
}

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

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-v2 {
    min-height: auto;
    padding: 80px 0 40px;
  }

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

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

  .call-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .call-btn span {
    display: none;
  }

  .offer-banner h2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .treatment-img-wrapper {
    height: 200px;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .floating-contact img {
    width: 60px;
  }
}

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

  .form-card {
    padding: 1.5rem;
  }

  .trust-badge {
    padding: 1rem;
  }

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

  .trust-icon i {
    font-size: 1.5rem;
  }

  .trust-badge h4 {
    font-size: 1.5rem;
  }
}

/* Text Warning Color */
.text-warning {
  color: var(--primary-color) !important;
}

/* Clinic Section V2 */
.clinic-section-v2 {
  padding: 5rem 0;
  background: var(--light-bg);
}

.how-it-works {
  margin-top: 2rem;
}

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.work-step img {
  width: 30px;
  height: 30px;
}

.cert-list {
  list-style: none;
  padding: 0;
}

.cert-list li {
  margin-bottom: 0.75rem;
}

.cert-list a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.cert-list a:hover {
  color: var(--primary-color);
}

#clinicCarousel .carousel-indicators {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

#clinicCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  margin: 0 0.5rem;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.5;
  transition: var(--transition);
}

#clinicCarousel .carousel-indicators .active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* Compact Work Steps */
.work-step-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.work-step-compact:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.work-step-compact img {
  width: 24px;
  height: 24px;
}

/* What's Included Compact */
.whats-included-compact {
  padding: 3rem 0 0;
  border-top: 2px solid var(--primary-color);
  margin-top: 3rem;
}

.included-item-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.included-item-compact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.included-item-compact img {
  width: 40px;
  height: 40px;
}

.included-item-compact span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* What's Included Section (Legacy - keeping for compatibility) */
.whats-included-section {
  padding: 5rem 0;
  background: white;
}

.included-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.included-item img {
  width: 30px;
  height: 30px;
}

/* Experts Section V2 */
.experts-section-v2 {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.experts-section-v2 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Doctors Carousel */
#doctorsCarousel .carousel-control-prev,
#doctorsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--gradient-shine);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

#doctorsCarousel .carousel-control-prev {
  left: 10px;
}

#doctorsCarousel .carousel-control-next {
  right: 10px;
}

#doctorsCarousel .carousel-control-prev-icon,
#doctorsCarousel .carousel-control-next-icon {
  filter: invert(1);
}

#doctorsCarousel .carousel-control-prev:hover,
#doctorsCarousel .carousel-control-next:hover {
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-50%) scale(1.1);
}

#doctorsCarousel .carousel-indicators {
  margin-bottom: -40px;
}

#doctorsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.5;
  border: none;
  margin: 0 5px;
}

#doctorsCarousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.3);
}

/* Doctor Cards */
.doctor-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

@media (max-width: 991px) {
  #doctorsCarousel .carousel-control-prev,
  #doctorsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  #doctorsCarousel .carousel-control-prev {
    left: 5px;
  }

  #doctorsCarousel .carousel-control-next {
    right: 5px;
  }
}

@media (max-width: 767px) {
  /* Make each doctor card full width and only show one per slide on mobile */
  #doctorsCarousel .carousel-inner {
    overflow: visible;
  }
  
  #doctorsCarousel .carousel-item .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  #doctorsCarousel .carousel-item .row::-webkit-scrollbar {
    display: none;
  }
  
  #doctorsCarousel .carousel-item .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }
}

.doctor-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
  background: var(--gradient-dark);
}

.doctor-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.doctor-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.doctor-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doctor-info h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.doctor-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.expert-item {
  margin-bottom: 1rem;
}

.expert-header {
  background: var(--dark-bg);
  color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.expert-header:hover {
  background: var(--secondary-color);
}

.expert-header h5 {
  margin: 0;
  font-size: 1.25rem;
}

.expert-header small {
  color: rgba(255,255,255,0.75);
}

.expert-header .btn-toggle {
  color: #fff;
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  line-height: 1;
  font-size: 2rem;
  border-radius: 0.5rem;
}

.expert-details {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background: #e6e6e6;
  border: 1px solid #e9ecef;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
}

.expert-content {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.expert-image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  z-index: 1;
}

.expert-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Stats Section V2 */
.stats-section-v2 {
  padding: 2rem 0;
}

.stats-advanced .counter {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-color);
  font-family: 'Chapaza', sans-serif;
}

.stats-advanced .counter-label {
  font-family: 'Chapaza', sans-serif;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Moving Background Banner */
.moving-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 400px;
  background-image: url('../img/banner.jpg');
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: auto 100%;
  animation: bg-pan 50s linear infinite alternate;
  padding: 2rem;
}

.moving-bg h3 {
  color: white;
  font-size: 2.5rem;
  text-shadow: 4px 4px 7px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.moving-bg p {
  font-size: 1.2rem;
}

@keyframes bg-pan {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 100%;
  }
}

/* Before & After Gallery */
.before-after-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.before-after-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 3px solid transparent;
}

.before-after-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.before-after-card:hover img {
  transform: scale(1.05);
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.before-after-card:hover .ba-overlay {
  opacity: 1;
}

.ba-badge {
  background: var(--gradient-shine);
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Awards Section V2 */
.awards-section-v2 {
  padding: 4rem 0;
  background: var(--light-bg);
}

.awards-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
}

.award-spec {
  margin-bottom: -40px;
  z-index: 2;
}

/* Testimonials Section V2 */
.testimonials-section-v2 {
  padding: 5rem 0;
  background: var(--dark-bg);
  color: white;
}

/* Reviews Platform Header */
.reviews-platform-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem auto;
  flex-wrap: wrap;
  max-width: 1200px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.platform-badge:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.platform-logo {
  max-height: 25px;
  width: auto;
  flex-shrink: 0;
}

.platform-stars {
  color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.platform-rating {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .reviews-platform-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .platform-badge {
    width: auto;
    min-width: 280px;
    justify-content: center;
  }
}

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-logo img {
  max-width: 100px;
  height: auto;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

.testimonial-stars {
  color: var(--primary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-masonry {
    grid-template-columns: 1fr;
  }
}

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

@media (min-width: 1025px) {
  .testimonials-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Certificates Section - Compact */
.certificates-section-compact {
  padding: 5rem 0;
  background: white;
}

.cert-card-compact {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 3px solid var(--primary-color);
}

.cert-card-compact:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.cert-card-compact img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.cert-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  color: white;
}

.cert-overlay h5 {
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.cert-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cert-logos-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1rem;
}

.cert-logo-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.cert-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.cert-logo-item img {
  max-width: 140px;
  max-height: 110px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#certificatesCarousel .carousel-control-prev,
#certificatesCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--gradient-shine);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

#certificatesCarousel .carousel-control-prev {
  left: 10px;
}

#certificatesCarousel .carousel-control-next {
  right: 10px;
}

#certificatesCarousel .carousel-control-prev-icon,
#certificatesCarousel .carousel-control-next-icon {
  filter: invert(1);
}

#certificatesCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  opacity: 0.5;
}

#certificatesCarousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .cert-card-compact img {
    height: 350px;
  }
  
  .cert-logos-compact {
    margin-top: 2rem;
  }
  
  #certificatesCarousel .carousel-control-prev,
  #certificatesCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Certificate Lightbox */
.cert-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s;
}

.cert-lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s;
}

.cert-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--primary-color);
  font-size: 50px;
  font-weight: bold;
  transition: var(--transition);
  cursor: pointer;
}

.cert-close:hover,
.cert-close:focus {
  color: #fff;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.5); }
  to { transform: scale(1); }
}

@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .certificate-card img {
    height: 300px;
  }

  .cert-close {
    font-size: 35px;
    right: 20px;
    top: 10px;
  }
}

/* Media Section Icons */
#trusted .icons img {
  max-width: 150px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .work-steps {
    padding-left: 0;
  }

  .included-items {
    padding-left: 2rem;
  }

  .stats-advanced .counter {
    font-size: 2.5rem;
  }

  .stats-advanced .counter-label {
    font-size: 1.25rem;
  }

  .moving-bg {
    height: 300px;
  }

  .moving-bg h3 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .work-step {
    font-size: 1rem;
  }

  .included-item {
    font-size: 1rem;
  }

  .expert-header h5 {
    font-size: 1.1rem;
  }

  .stats-advanced .counter {
    font-size: 2rem;
  }

  .stats-advanced .counter-label {
    font-size: 1rem;
  }

  .moving-bg {
    height: 250px;
  }

  .moving-bg h3 {
    font-size: 1.5rem;
  }

  .award-spec {
    margin-bottom: -15px;
  }
}
