/* Base Styles */
  body, html {
      margin: 0;
      padding: 0;
      font-size: 16px;
      scroll-behavior: smooth;
      font-family: 'Montserrat', sans-serif; /* Default font */
  }

  /* Wellness Section */
  .wellness-section {
      margin-top: -70px !important;
      position: relative;
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
  }

  .wellness-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                  url('../images/wellness/jernej-graj-rlNibgIqi4o-unsplash.webp') center/cover no-repeat;
      z-index: 0;
  }

  .wellness-content {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
      box-sizing: border-box;
  }

  .wellness-tagline {
      color: rgba(255,255,255,0.9);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 4px;
      margin-bottom: 15px;
      font-weight: 600;
      text-transform: uppercase;
      max-width: 500px;
  }

  .wellness-title {
      font-family: 'Marcellus', serif !important;
      font-size: 4.8rem !important;
      color: white !important;
      line-height: 1.1;
      margin-bottom: 25px;
      letter-spacing: 0.5px;
      font-weight: 300;
      max-width: 800px;
      text-align: center;
  }

  .wellness-description {
      font-family: 'Montserrat', sans-serif;
      max-width: 800px;
      color: rgba(255,255,255,0.9);
      line-height: 1.8;
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.2px;
  }

  /* About Section - Desktop Layout */
  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 50px;
      min-height: 600px;
  }

  .content-column {
      flex: 1;
  }

  .image-column {
      flex: 1;
      position: relative;
      height: 500px;
  }

  /* Offerings Grid */
  .offerings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      align-items: flex-start;
  }

  .offering-card {
      position: relative;
  }

  .offering-card:nth-child(2),
  .offering-card:nth-child(4) {
      margin-top: 40px;
  }

  /* Contact Methods */
  .contact-methods {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-top: 30px;
  }

  .contact-divider {
      width: 1px;
      height: 50px;
      background: #D9D9D5;
  }

  /* Core mobile fixes */
  @media (max-width: 768px) {
      html, body {
          overflow-x: hidden;
          width: 100%;
      }
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
      .wellness-title {
          font-size: 4rem !important;
      }
      
      .offerings-grid {
          gap: 25px;
      }
  }

  @media (max-width: 992px) {
      .wellness-title {
          font-size: 3.5rem !important;
      }
      
      .about-container {
          gap: 30px;
          padding: 0 30px;
      }

      .offerings-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }

      .offering-card img {
          height: 450px !important;
      }

      .image-column {
          height: 450px;
      }
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
      /* Hero Section Mobile */
      .wellness-content {
          padding: 40px 20px;
          min-height: 100vh;
      }
      
      .wellness-tagline {
          font-size: 0.8rem;
          letter-spacing: 3px;
          max-width: 90%;
          margin-bottom: 15px;
      }
      
      .wellness-title {
          font-size: 2.5rem !important;
          max-width: 90%;
          margin-bottom: 15px;
          line-height: 1.2;
      }
      
      .wellness-description {
          font-size: 1rem;
          max-width: 90%;
          line-height: 1.6;
          font-weight: 500;
      }

      .wellness-description br {
          display: none;
      }

      /* About Section Mobile - Stack Vertically with Images Below Text */
      .about-container {
          flex-direction: column;
          gap: 40px;
          min-height: auto;
          padding: 0 20px;
      }

      .content-column {
          order: 1;
          text-align: center;
      }

      .content-column p:first-child {
          font-size: 0.8rem !important;
          letter-spacing: 1.5px !important;
          margin: 15px 0 8px !important;
      }

      .content-column h2 {
          font-size: 2rem !important;
          margin-bottom: 25px !important;
      }

      .content-column p:last-child {
          font-size: 0.95rem !important;
          line-height: 1.7 !important;
          text-align: left;
          margin-bottom: 15px !important;
      }

      .image-column {
          order: 2; /* Images come after content on mobile */
          height: 350px;
          width: 100%;
      }

      /* Adjust image positioning for mobile */
      .image-column img:first-child {
          left: 5% !important;
          width: 50% !important;
          height: 80% !important;
      }

      .image-column img:last-child {
          right: -5% !important;
          width: 50% !important;
          height: 80% !important;
          top: 10% !important;
      }

      /* Offerings Section Mobile */
      #offerings {
          padding: 50px 0 !important;
      }

      #offerings p:first-child {
          font-size: 0.8rem !important;
          letter-spacing: 1.5px !important;
          margin: 15px 0 8px !important;
      }

      #offerings h2 {
          font-size: 2rem !important;
          margin-bottom: 40px !important;
          line-height: 1.3 !important;
          padding: 0 10px;
      }

      /* Offerings Grid Mobile */
      .offerings-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          padding: 0 10px;
      }

      .offering-card {
          margin-top: 0 !important;
      }

      .offering-card img {
          height: 300px !important;
          border-radius: 8px !important;
      }

      .offering-card h3 {
          font-size: 1.5rem !important;
          margin-bottom: 10px !important;
      }

      .offering-card i {
          font-size: 24px !important;
      }

      /* Reservations Section Mobile */
      #reservations {
          padding: 0 !important;
      }

      .reservation-image {
          height: 250px !important;
      }

      #reservations > div {
          padding: 50px 20px !important;
      }

      #reservations h2 {
          font-size: 1.8rem !important;
          margin-bottom: 20px !important;
      }

      #reservations p {
          font-size: 0.95rem !important;
          line-height: 1.7 !important;
          margin-bottom: 35px !important;
      }

      /* Contact Methods Mobile */
      .contact-methods {
          flex-direction: column;
          gap: 25px;
          margin-top: 25px !important;
      }

      .contact-divider {
          width: 60%;
          height: 1px;
      }

      .contact-methods > div {
          width: 100%;
      }

      .contact-methods i {
          font-size: 18px !important;
      }

      .contact-methods span {
          font-size: 0.9rem !important;
      }

      .contact-methods div div:last-child {
          font-size: 1rem !important;
      }

      /* General Section Padding Mobile */
      .section {
          padding: 60px 0 !important;
      }

      #wellness {
          padding: 80px 0 !important;
      }
  }

  @media (max-width: 576px) {
      .wellness-title {
          font-size: 2.2rem !important;
          line-height: 1.2;
      }
      
      .wellness-tagline {
          letter-spacing: 2px;
          margin-bottom: 10px;
      }
      
      .wellness-description br {
          display: none;
      }
      
      .offerings-grid {
          gap: 30px;
      }
      
      .offering-card img {
          height: 250px !important;
      }
      
      .offering-card h3 {
          font-size: 1.4rem !important;
      }
      
      #offerings {
          padding: 40px 0 !important;
      }
      
      .container {
          padding: 0 15px !important;
      }
      
      .image-column {
          height: 300px;
      }
  }

  /* Small Mobile Styles */
  @media (max-width: 400px) {
      .wellness-title {
          font-size: 2rem !important;
      }

      .wellness-tagline {
          font-size: 0.65rem;
          letter-spacing: 1.5px;
      }

      .wellness-description {
          font-size: 0.9rem;
      }

      .content-column h2 {
          font-size: 1.8rem !important;
      }

      #offerings h2 {
          font-size: 1.8rem !important;
      }

      #reservations h2 {
          font-size: 1.6rem !important;
      }

      .offering-card img {
          height: 220px !important;
      }

      .image-column {
          height: 250px;
      }
  }

  /* Tablet Styles */
  @media (max-width: 1024px) and (min-width: 769px) {
      .about-container {
          gap: 30px;
          padding: 0 30px;
      }

      .wellness-title {
          font-size: 3.8rem !important;
      }

      .wellness-description {
          font-size: 1rem;
      }

      .offerings-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }

      .offering-card img {
          height: 450px;
      }

      #offerings .container,
      #reservations > div {
          padding: 0 30px;
      }
  }

  /* Large Mobile / Small Tablet */
  @media (max-width: 900px) and (min-width: 769px) {
      .wellness-title {
          font-size: 3.2rem !important;
      }

      .about-container {
          gap: 25px;
      }

      .image-column {
          height: 450px;
      }
  }

  /* Round WhatsApp Button */
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 18px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }

  .whatsapp-icon {
    color: white;
  }


  @media (max-width: 768px) {
    .whatsapp-float {
      bottom: 20px;
      right: 18px;
      width: 50px;
      height: 50px;
      font-size: 24px;
      padding: 12px;
    }
  }