* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}
p {
  line-height: 1.6;
}
h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
p {
  font-size: 16px;
  letter-spacing: 0.3px;
}

/* 🌌 BACKGROUND (DEEP + CINEMATIC) */
body {
  background: radial-gradient(circle at 80% 20%, #253745 0%, transparent 35%),
              radial-gradient(circle at 20% 80%, #11212D 0%, transparent 35%),
              linear-gradient(160deg, #06141B 0%, #06141B 40%, #11212D 70%, #253745 100%);
  min-height: 100vh;
  color: #CCD0CF;
}

/* 🧭 NAVBAR (CLEARLY SEPARATED + GRADIENT) */
.navbar {
    position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;

  /* Stronger visible gradient */
  background: linear-gradient(
    90deg,
    #11212D 0%,
    #253745 50%,
    #11212D 100%
  );

  border-bottom: 1px solid #4A5C6A;

  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 🏷️ LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo span {
  color: #CCD0CF;
  font-size: 20px;
  font-weight: bold;
}

/* 🔗 NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #9BA8AB;
  font-size: 16px;
  font-style: italic;
  position: relative;
  transition: 0.3s;
}

/* ✨ HOVER EFFECT */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #CCD0CF;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #CCD0CF;
}

.nav-links li a:hover::after {
  width: 100%;
}
/* MENU ICON (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #CCD0CF;
  cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  /* NAVBAR HEIGHT */
  .navbar {
    padding: 20px;
  }

  /* HAMBURGER */
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #CCD0CF;
  }

  /* NAV MENU (DEFAULT HIDDEN) */
 .nav-links {
  position: absolute;
  top: 70px;

  right: 15px;   /* 👈 moved to right */

  width: 45%;    /* or 50% if you want exact half */
  height: 50vh;

  background: rgba(17, 33, 45, 0.95);
  backdrop-filter: blur(12px);

  border-radius: 20px;

  display: none;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 25px;

  z-index: 999;
}



  /* WHEN ACTIVE */
  .nav-links.active {
    display: flex;
  }

  /* LINKS STYLE */
  .nav-links li {
    list-style: none;
  }

  .nav-links li a {
    font-size: 20px;
    color: #CCD0CF;
    text-decoration: none;
    text-align: center;
  }

}


/* 🔥 HERO SECTION (UPGRADED PREMIUM) */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: calc(100vh - 80px); /* 👈 full screen minus navbar */
  padding: 20px 60px 40px; /* 👈 reduced top space */

  gap: 40px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;
  margin: 10px 20px; /* 👈 small outer spacing */

  background: linear-gradient(
    135deg,
    #06141B 0%,
    #11212D 60%,
    #253745 100%
  );
}



/* TEXT */
.hero-text {
  flex: 1;
  max-width: 600px; /* 👈 increased width */
}

/* HEADING */
.hero-text h1 {
  font-size: 52px; /* 👈 bigger = more impact */
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* PARAGRAPH */
.hero-text p {
  font-size: 18px;
  color: #9BA8AB;
  margin-bottom: 40px; /* 👈 more space before buttons */
  line-height: 1.7;
  max-width: 500px;
}

/* BUTTONS SPACING */
.hero-buttons {
  display: flex;
  gap: 20px;
}


/* COMMON BUTTON STYLE */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: linear-gradient(135deg, #4A5C6A, #253745);
  color: #CCD0CF;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

/* SECONDARY */
.btn.secondary {
  border: 1px solid #4A5C6A;
  color: #CCD0CF;
}

.btn.secondary:hover {
  background: #253745;
  transform: translateY(-3px);
}


/* IMAGE */
.hero-image {
  flex: 1;
  height: 500px;

  background: url("images/hero.jpg");
  background-size: cover;
  background-position: center;

  border-radius: 16px;

  /* subtle glow border */
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}


/* 📱 MOBILE */
@media (max-width: 768px) {
 
  .hero {
    flex-direction: column;
    justify-content: center;

    min-height: calc(100vh - 70px);
    padding: 20px 20px; /* 👈 THIS fixes top empty space */

    margin: 10px;
    border-radius: 16px;

    background: linear-gradient(
        rgba(6, 20, 27, 0.75),
        rgba(6, 20, 27, 0.9)
      ),
      url("images/hero.jpg");

    background-size: cover;
    background-position: center;
  }
}


  .hero-buttons {
    margin-top: 10px; /* 👈 adds breathing space */
    gap: 12px;
  }
}


  .hero-image {
    display: none;
  }

  .hero-text h1 {
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    padding: 6px;
    
  }
  .hero-text p{
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  text-align: center;

  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  }
}
@media (max-width: 768px) {

  /* 🔥 REMOVE GAP BELOW HERO */
  .hero {
    margin-bottom: 0; /* 👈 removes space below hero */
    padding-bottom: 30px; /* 👈 keeps buttons safe */
  }

  /* 🔥 SERVICE SECTION FIX */
  .services {
    margin-top: -20px; /* 👈 pulls section up (removes gap) */
    padding: 40px 15px; /* 👈 balanced spacing inside */
    border-radius: 20px 20px 0 0; /* 👈 smooth top curve */
  }

}


/* 🔥 SERVICES SECTION (FIXED + PREMIUM) */
.services {
  padding: 50px 20px; /* 👈 reduced top spacing */

  /* 👇 LIGHTER THAN HERO */
  background: linear-gradient(
    135deg,
    rgba(37, 55, 69, 0.35),
    rgba(74, 92, 106, 0.2)
  );

  backdrop-filter: blur(8px);

  /* 👇 BORDER (lighter than hero) */
  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 18px;

  margin: 10px 20px 40px; /* 👈 reduced gap from hero */

  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 34px;
  margin-bottom: 10px;
}

/* SUBTITLE */
.section-subtitle {
  color: #9BA8AB;
  margin-bottom: 30px;
}

/* DESKTOP GRID */
.service-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.service-card {
  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 14px;

  overflow: hidden;
  transition: 0.3s ease;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 170px; /* 👈 slightly smaller */
  object-fit: cover;
  
}

/* TEXT */
.service-card h3 {
  margin: 12px 0 5px;
  font-size: 22px;
}

.service-card p {
  font-size: 15px;
  color: #9BA8AB;
  padding: 0 5px 15px;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* 📱 MOBILE FIXED */
@media (max-width: 768px) {

  .services {
    margin: 5px 10px 30px; /* 👈 MUCH LESS GAP */
    padding: 40px 15px;
  }

  .service-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 5px;

    scroll-snap-type: x mandatory;
  }

  .service-card {
    min-width: 200px; /* 👈 FIXED (was too wide) */
    max-width: 200px;
    flex: 0 0 auto;

    scroll-snap-align: start;
  }

  .service-card img {
    height: 140px; /* 👈 smaller for mobile */
  }

  /* hide scrollbar */
  .service-wrapper::-webkit-scrollbar {
    display: none;
  }
}


.facilities {
   margin-bottom: 10px;
   padding-bottom: 30px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

/* WRAPPER (hides overflow) */
.slider-wrapper {
  overflow: hidden;
}

/* SLIDER TRACK */
.facilities-slider {
  display: flex;
  gap: 15px;
}

/* CARD */
.facility-card {
  flex: 0 0 70%;
  background: #11212D;
  border-radius: 15px;
  padding-bottom: 15px;
  border: 1px solid #4A5C6A;
}

/* IMAGE */
.facility-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* TEXT */
.facility-card h3 {
  margin: 12px;
  text-align: center;
}

.facility-card p {
  margin: 0 12px;
  font-size: 14px;
  color: #9BA8AB;
}

/* DESKTOP */
@media (min-width: 769px) {
  .facility-card {
    flex: 0 0 30%;
  }
}
.services {
  margin-bottom: 10px; /* 👈 reduce space below */
}

.facilities {
  margin-top: 0; /* 👈 remove extra gap */
  padding-top: 20px; /* 👈 keep small breathing space */
}


.about-center {
  margin: 20px;
  padding: 50px 20px;

  display: flex;
  align-items: center;
  gap: 40px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );
}

/* IMAGE LEFT */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* TEXT RIGHT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #9BA8AB;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-center {
  margin: 20px;
  padding: 50px 20px;

  display: flex;
  align-items: center;
  gap: 40px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );
}

/* IMAGE LEFT */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* TEXT RIGHT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #9BA8AB;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {

  .about-center {
    flex-direction: column;
    padding: 40px 15px;
  }

 .about-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* 👈 center everything */
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* ICONS */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* SAME SIZE ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

/* COMMON STYLE */
.icon {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  background-color: rgba(17, 33, 45, 0.6);
  border: 1px solid #4A5C6A;

  background-size: 60%;   /* 👈 controls icon size */
  background-repeat: no-repeat;
  background-position: center;

  transition: 0.3s;
}

/* INDIVIDUAL ICONS */
.instagram {
  background-image: url("images/instagram.png");
}

.facebook {
  background-image: url("images/facebook.png");
}

.email {
  background-image: url("images/email.png");
}

/* HOVER */
.icon:hover {
  transform: scale(1.1);
  background-color: #253745;
}



/* HOVER */
.social-icons a img:hover {
  transform: scale(1.1);
  background: #253745;
}


.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}



  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 35px;
  height: 35px;

  border-radius: 50%;
  padding: 6px;

  background: rgba(17, 33, 45, 0.6);
  border: 1px solid #4A5C6A;

  transition: 0.3s;
}

/* HOVER EFFECT */
.social-icons a img:hover {
  transform: scale(1.1);
  background: #253745;
}
.social-icons {
  justify-content: center;
}

.footer {
  margin-top: 20px;
  padding: 30px 20px;

  border-top: 1px solid rgba(155, 168, 171, 0.2);

  background: linear-gradient(
    180deg,
    #06141B 0%,
    #11212D 100%
  );
}

/* CONTENT */
.footer-content {
  text-align: center;
}

/* ADDRESS */
.footer .address {
  font-size: 15px;
  color: #CCD0CF;
  margin-bottom: 10px;
}

/* COPYRIGHT */
.footer .copyright {
  font-size: 13px;
  color: #9BA8AB;
}

/* CONTAINER */
.floating-buttons {
  position: fixed;
  right: 15px;
  bottom: 80px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 9999;
}

/* BUTTON */
.float-btn {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: block;

 

  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* WHATSAPP */
.whatsapp {
  background-image: url("images/whatsapp.webp");
}

/* CALL */
.call {
  background-image: url("images/call.png");
}

/* HOVER */
.float-btn:hover {
  transform: scale(1.1);
}


/* EXTRA IMAGE (ONLY MOBILE) */
.hero-extra-image {
  display: none;
}

@media (max-width: 768px) {

  .hero-extra-image {
    display: block;
    width: 100%;
    height: auto;
     overflow: hidden;

    margin-top: 10px;

    border-radius: 12px;

    background: url("images/heroyoga.jpeg"); /* 👈 second image */
    background-size: cover;
    background-position: center;
    padding-bottom: 10px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  }

}
.hero-extra-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.hero-extra-image {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 🔥 OWNER SECTION (MATCHES YOUR THEME) */
.owner-section {
  margin: 20px;
  padding: 50px 20px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );
}

/* CONTAINER */
.owner-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.owner-image {
  flex: 1;
}

.owner-image img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 16px;

  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* CONTENT */
.owner-content {
  flex: 1;
}

.owner-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.owner-content .role {
  color: #9BA8AB;
  margin-bottom: 15px;
  font-style: italic;
}

.owner-content .description {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #CCD0CF;
}

/* INFO BOX (matches your card style) */
.info-box {
  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 12px;

  padding: 15px;
  margin-bottom: 15px;
}

.info-box h4 {
  margin-bottom: 8px;
}

.info-box ul {
  padding-left: 18px;
}

.info-box li {
  margin-bottom: 5px;
  color: #9BA8AB;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .owner-container {
    flex-direction: column;
    text-align: center;
  }

  .owner-image img {
    height: auto;
  }

  .info-box ul {
    padding-left: 0;
    list-style: none;
  }

}

/* 🔥 WORKOUT SECTION */
.workout-section {
  padding: 50px 20px;

  margin: 20px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );

  text-align: center;
}

/* GRID */
.workout-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.workout-card {
  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 14px;

  overflow: hidden;
  transition: 0.3s ease;
}

/* IMAGE */
.workout-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* TITLE */
.workout-card h3 {
  margin: 12px 0;
  font-size: 20px;
}

/* LIST */
.workout-card ul {
  list-style: none;
  padding: 0 10px 15px;
}

.workout-card ul li {
  font-size: 14px;
  color: #9BA8AB;
  margin-bottom: 6px;
}

/* HOVER */
.workout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {

  .workout-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px;

    scroll-snap-type: x mandatory;
  }

  .workout-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;

    scroll-snap-align: start;
  }

  .workout-card img {
    height: 140px;
  }

  .workout-wrapper::-webkit-scrollbar {
    display: none;
  }
}
/* 🔥 WORKOUT CARD ENHANCED */
.workout-card {
  position: relative;
  padding-bottom: 15px;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 16px;

  transition: all 0.35s ease;
}

/* GLOW BORDER EFFECT */
.workout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, #4A5C6A, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* IMAGE HOVER ZOOM */
.workout-card img {
  transition: transform 0.4s ease;
}

.workout-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.workout-card h3 {
  font-size: 21px;
  margin: 12px 0 8px;
  letter-spacing: 0.5px;
}

/* 🔥 PARAGRAPH → BULLET STYLE */
.workout-card p {
  font-size: 14px;
  color: #9BA8AB;
  padding: 0 12px;
  line-height: 1.6;

  text-align: left;
}

/* MAKE TEXT LOOK LIKE POINTS */
.workout-card p::before {
  content: "✔ ";
  color: #CCD0CF;
  font-weight: bold;
}

/* ADD DIVIDER LINE */
.workout-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 6px auto 0;
  background: #4A5C6A;
  opacity: 0.6;
}

/* HOVER EFFECT */
.workout-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* 🔥 SLIGHT TEXT GLOW ON HOVER */
.workout-card:hover h3 {
  color: #CCD0CF;
}

/* 📱 MOBILE IMPROVEMENT */
@media (max-width: 768px) {
  .workout-card {
    border-radius: 18px;
  }

  .workout-card p {
    font-size: 13px;
  }
}
/* 🔥 RESULTS SECTION */
.results-section {
  padding: 50px 20px;
  margin: 20px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );

  text-align: center;
}

/* GRID */
.results-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.result-card {
  position: relative;

  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 16px;

  overflow: hidden;
  transition: 0.35s ease;
}

/* TRANSFORMATION TAG */
.result-card::after {
  content: "TRANSFORMATION";
  position: absolute;
  top: 10px;
  right: -35px;

  background: #4A5C6A;
  color: #CCD0CF;

  font-size: 10px;
  padding: 4px 30px;
  transform: rotate(45deg);
}

/* IMAGES */
.result-images {
  display: flex;
}

.result-images div {
  position: relative;
  width: 50%;
}

.result-images img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #06141b;
}

/* LABEL */
.result-images span {
  position: absolute;
  bottom: 8px;
  left: 8px;

  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: 5px;

  font-size: 11px;
}

/* CONTENT */
.result-content {
  padding: 14px;
}

.result-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.weight {
  color: #9BA8AB;
  font-size: 13px;
  margin-bottom: 6px;
}

.result-line {
  font-size: 13px;
  color: #CCD0CF;
  line-height: 1.5;
}

/* HOVER */
.result-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .results-wrapper {
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    gap: 0; /* 👈 important */
    padding: 0;
  }

  .result-card {
    min-width: 100%; /* 👈 FULL WIDTH */
    flex: 0 0 100%;

    scroll-snap-align: center;
  }

  .result-images img {
    height: 220px;
  }

  /* Optional: spacing inside card */
  .result-content {
    padding: 18px;
  }

  /* Hide scrollbar */
  .results-wrapper::-webkit-scrollbar {
    display: none;
  }
}

.result-card {
  border-radius: 18px;
}

.result-content {
  text-align: left; /* 👈 important for readability */
  padding: 16px;
}
/* 🔥 THERAPY SECTION */
.therapy-section {
  padding: 50px 20px;
  margin: 20px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );

  text-align: center;
}

/* GRID */
.therapy-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.therapy-card {
  position: relative;

  padding: 30px 20px 20px;

  border-radius: 16px;
  border: 1px solid rgba(155, 168, 171, 0.15);

  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  transition: 0.35s ease;
}

/* STEP CIRCLE */
.step-circle {
  width: 45px;
  height: 45px;

  margin: 0 auto 15px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #4A5C6A, #253745);
  color: #CCD0CF;

  font-size: 14px;
  font-weight: bold;

  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* TITLE */
.therapy-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.therapy-card p {
  font-size: 14px;
  color: #9BA8AB;
  line-height: 1.6;
}

/* HOVER EFFECT */
.therapy-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* 🔥 OPTIONAL CONNECTING LINE (DESKTOP) */
@media (min-width: 769px) {
  .therapy-wrapper {
    position: relative;
  }

  .therapy-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 1px;
    background: rgba(155, 168, 171, 0.2);
    z-index: 0;
  }

  .therapy-card {
    position: relative;
    z-index: 1;
  }
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .therapy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .therapy-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 18px;

    border-radius: 16px;
  }

  /* STEP CIRCLE LEFT SIDE */
  .step-circle {
    margin: 0;
    min-width: 45px;
    height: 45px;
    font-size: 13px;
  }

  /* TEXT ALIGN LEFT */
  .therapy-card h3 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .therapy-card p {
    text-align: left;
    font-size: 13px;
  }

}
@media (max-width: 768px) {

  .therapy-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;
  }

  /* TEXT CONTAINER FIX */
  .therapy-card h3,
  .therapy-card p {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* PREVENT OVERFLOW */
  .therapy-card {
    overflow: hidden;
  }

}
/* 🔥 CONTACT SECTION */
.contact-section {
  padding: 50px 20px;
  margin: 20px;

  border: 1px solid rgba(155, 168, 171, 0.2);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(17, 33, 45, 0.5),
    rgba(37, 55, 69, 0.3)
  );

  text-align: center;
}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

/* INFO BOX */
.contact-info .info-box {
  background: linear-gradient(
    145deg,
    rgba(17, 33, 45, 0.7),
    rgba(37, 55, 69, 0.4)
  );

  border: 1px solid rgba(155, 168, 171, 0.15);
  border-radius: 14px;

  padding: 15px;
  margin-bottom: 15px;

  text-align: left;
}

.info-box h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.info-box p {
  font-size: 14px;
  color: #9BA8AB;
}

.info-box a {
  color: #CCD0CF;
  text-decoration: none;
}

/* FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT */
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #4A5C6A;

  background: rgba(17, 33, 45, 0.6);
  color: #CCD0CF;

  font-size: 14px;
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;

  background: linear-gradient(135deg, #4A5C6A, #253745);
  color: #CCD0CF;

  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

}

/* 🔥 SWIPE HINT ONLY (NO LAYOUT CHANGE) */
@media (max-width: 768px) {

  .results-section {
    position: relative; /* required for arrow positioning */
  }

  .results-section::after {
    content: "›";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 28px;
    color: #9BA8AB;

    opacity: 0.6;
    pointer-events: none;

    animation: swipeHint 1.5s infinite;
  }

  @keyframes swipeHint {
    0%   { transform: translateY(-50%) translateX(0); }
    50%  { transform: translateY(-50%) translateX(6px); }
    100% { transform: translateY(-50%) translateX(0); }
  }

}
