:root {
  --primary-color: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --accent-color: #d4a574;
  --accent-light: #f5e6d3;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-beige: #faf8f3;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 16px;
  --spacing-unit: 8px;
}

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

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

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  color: #665140 ;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
 
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.btn-primary {
  background-color: #665140 ;
  border: none;
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);

  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: #665140 ;
  transform: translateY(-2px);
}

.rounded-custom {
  border-radius: var(--border-radius);
}

.top-bar {
  background-color: #665140;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-link {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;

}

.top-bar-link:hover {
  color: #665140 ;
}

.top-bar-right {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: #665140 ;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 14px;
}

.social-icon:hover {
  background-color: #665140 ;
  color: var(--white);
  transform: scale(1.1);
}

.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 32px;
  color: #665140 ;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: #665140 ;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #665140 ;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.cta-btn {
  padding: 10px 24px;
  font-size: 14px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.85) 0%, rgba(15, 118, 110, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.counter-section {
  background: linear-gradient(135deg, #665140  0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.counter-box {
  text-align: center;
  color: var(--white);
}

.counter-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.about-section {
  background-color: var(--white);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.about-badge i {
  font-size: 24px;
  color: #665140 ;
}

.about-badge span {
  font-weight: 600;
  color: var(--text-dark);
}

.about-content {
  padding-left: 32px;
}

.about-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-choose-section {
  background-color: var(--bg-beige);
}

.feature-card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: #665140 ;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #665140  100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: var(--transition);
}

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

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-text {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.treatments-section {
  background-color: var(--white);
}

.treatment-category {
  margin-bottom: 48px;
}

.category-title {
text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;

}

.treatment-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
  display: flex;
      text-align: center;
  flex-direction: column;
}

.treatment-card:hover {
  border-color: #665140 ;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.treatment-icon {

  display: flex;              /* KEY */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */

  background: linear-gradient(
    135deg,
    #f5e6d3 0%,
    #d4a574 100%
  );

  border-radius: 12px;
  margin: 0 auto 20px;        /* centers icon block in card */
}

.treatment-icon i {
  font-size: 28px;
  line-height: 1;
  display: block;

  /* OPTIONAL: optical alignment for FA icons */
  transform: translateY(1px);
}


.treatment-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.treatment-description {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.treatment-link {
  color: #665140 ;
  font-weight: 600;
  font-size: 15px;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.treatment-link:hover {
  color: var(--primary-dark);
  gap: 12px;
}

.before-after-section {
  background-color: var(--bg-light);
}

.before-after-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.before-after-card {
  flex: 0 0 calc(50% - 12px);
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.before-after-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-before {
  left: 16px;
  background-color: rgba(107, 114, 128, 0.9);
  color: var(--white);
}

.ba-after {
  left: 16px;
  background-color: rgba(13, 148, 136, 0.9);
  color: var(--white);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  color: #665140 ;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #665140 ;
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.testimonials-section {
  background-color: var(--white);
}

.testimonials-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 400px;
  background-color: var(--bg-beige);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #665140 ;
}

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

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-beige);
  color: #665140 ;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #665140 ;
}

.accordion-button::after {
  color: #665140 ;
}

.accordion-body {
  padding: 20px 24px;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

.contact-section {
  background-color: var(--white);
}

.map-container {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  background-color: var(--bg-beige);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-control,
.form-select {
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: #665140 ;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.footer {
  background-image: url(logo-foot.png);
  color: var(--white);
  padding: 0px 0 0;
}

.footer-about {
  margin-bottom: 24px;
}

.footer .logo-name,
.footer .logo-subtitle {
  color: var(--white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-size: 14px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top:10px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.call-btn{
  display: none !important;
}

.footer-bottom p {
     color: white;
    font-size: 14px;
    text-align: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--accent-color);
  transform: translateY(-4px);
}

.floating-btn {
  position: fixed;
  bottom: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

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

.floating-btn:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-btn {
  left: 32px;
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
}

.call-btn {
  right: 32px;
  background-color: #665140 ;
}

.call-btn:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .about-content {
    padding-left: 0;
    margin-top: 32px;
            text-align: center;
  }

  .counter-number {
    font-size: 40px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
.call-btn{
  display: block !important;
}
  .top-bar {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 32px;
  }

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

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

  .hero-buttons .btn {
           width: 100%;
        max-width: 200px;
        text-align: center;
        display: block;
  }

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

  .counter-number {
    font-size: 36px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .treatment-card {
    padding: 24px;
  }

  .before-after-card {
    flex: 0 0 100%;
  }

  .before-after-card img {
    height: 300px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .map-container {
    height: 300px;
  }

  .contact-form {
    padding: 24px;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
    font-size: 24px;
    bottom: 24px;
  }

  .whatsapp-btn {
    left: 16px;
  }

  .call-btn {
    right: 16px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-bottom {
    margin-top: 32px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .category-title {
    font-size: 26px;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-primary,
  .btn-outline-light {
    padding: 12px 24px;
    font-size: 14px;
  }
}
