/* =====================================================
   OLESAM INTRO
===================================================== */

.olesam-intro {
  position: fixed;
  inset: 0;
  background: #0b1f16;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.olesam-intro-content {
  text-align: center;
  color: #ffffff;
  animation: introFadeIn 1.2s ease forwards;
}

.olesam-intro-content img {
  width: 120px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.olesam-intro-content h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
}

.olesam-intro-content p {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* Fade animation */
@keyframes introFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide intro */
.olesam-intro.hide {
  opacity: 0;
  visibility: hidden;
}
/* ================= LOADING BAR ================= */
.olesam-loader {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin: 22px auto 0;
  overflow: hidden;
}

.olesam-loader div {
  height: 100%;
  width: 0%;
  background: #00c57a;
  border-radius: 999px;
  transition: width 0.25s ease;
}




/* =====================================================
   GLOBAL FIX (SAFE)
===================================================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* =====================================================
   OLESAM HERO RESET (SCOPED)
===================================================== */
.olesam-hero,
.olesam-hero * {
  box-sizing: border-box;
}

/* =====================================================
   HERO BASE
===================================================== */
.olesam-hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* =====================================================
   BACKGROUND SLIDES
===================================================== */
.olesam-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.olesam-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: olesamFade 28s ease-in-out infinite;
  object-position: center center;
}

.olesam-hero-content {
  transform: translateY(-8%);
}


/* Animation delays */
.olesam-hero-bg img:nth-child(1){animation-delay:0s;}
.olesam-hero-bg img:nth-child(2){animation-delay:4s;}
.olesam-hero-bg img:nth-child(3){animation-delay:8s;}
.olesam-hero-bg img:nth-child(4){animation-delay:12s;}
.olesam-hero-bg img:nth-child(5){animation-delay:16s;}
.olesam-hero-bg img:nth-child(6){animation-delay:20s;}
.olesam-hero-bg img:nth-child(7){animation-delay:24s;}

@keyframes olesamFade {
  0%   {opacity:0; transform:scale(1.03);}
  15%  {opacity:1;}
  85%  {opacity:1;}
  100% {opacity:0; transform:scale(1.06);}
}

/* =====================================================
   DARK OVERLAY
===================================================== */
.olesam-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* =====================================================
   NAVBAR
===================================================== */
.olesam-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  position: relative;
  z-index: 10;
}

.olesam-logo img {
  width: 105px;
  border-radius: 70px;
}

.olesam-nav-links {
  display: flex;
  gap: 28px;
}

.olesam-nav-links a {
  position: relative;  
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.olesam-nav-links a:hover {
  color: #00c57a; /* same as CTA green */
}

.olesam-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #00c57a;
  transition: width 0.3s ease;
}

.olesam-nav-links a:hover::after {
  width: 100%;
}


.olesam-hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* =====================================================
   MOBILE MENU
===================================================== */
.olesam-mobile-menu {
  position: absolute;
  top: 90px;
  right: 6%;
  width: 240px;
  background: #0b1f16;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: 0.45s ease;
  z-index: 20;
  background: rgba(11, 31, 22, 0.5);
  backdrop-filter: blur(8px);
}

/*Toggle button base X and humburger*/
.olesam-menu-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/*Icons stacked*/
.olesam-menu-toggle span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* default */
.icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}



/*When menu is open*/
.olesam-menu-toggle.is-open .icon-hamburger {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.olesam-menu-toggle.is-open .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}


/*Closed state (already mostly exists)*/
.olesam-mobile-menu {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/*Open state*/
.olesam-mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.olesam-mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.olesam-mobile-menu a:active {
  background-color: rgba(255, 255, 255, 0.12);
}

.olesam-mobile-menu a {
  color: #f6fdf9;
  font-weight: 600;
  text-decoration: none;
}
.olesam-mobile-menu a:hover,
.olesam-mobile-menu a:focus {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}


/* ========= MOBILE NAV VISIBILITY ======= */
.olesam-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .olesam-menu-toggle {
    display: block;
  }

  .olesam-nav-links {
    display: none;
  }
}



/* =====================================================
   HERO CONTENT
===================================================== */
.olesam-hero-content {
  min-height: 100vh;
  width: 100%;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.olesam-hero-text {
  max-width: 760px;
}

.olesam-hero-text h1 {
  font-size: clamp(44px, 8vw, 70px);
  font-weight: 800;
  letter-spacing: 2px;
}

.olesam-hero-text h2 {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 500;
  margin-bottom: 0.8em;
}

/* =====================================================
   LEARN MORE
===================================================== */
.olesam-learn-more {
  margin: 12px 0;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
}

.olesam-hidden-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 0.8s ease;
  line-height: 1.7;
  color: #ffffff;
}

.olesam-hidden-text.show {
  max-height: 260px;
  opacity: 1;
}

/* =====================================================
   CTA BUTTON
===================================================== */
.olesam-cta a {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 38px;
  border-radius: 999px;
  background: #00c57a;
  color: #062e21;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.olesam-cta a:hover {
  background: #00b06c; /* slightly deeper green */
  transform: translateY(-2px);
  
}
.olesam-cta a:active {
  background: #015535;
  transform: translateY(0);
  
}
.olesam-cta a:focus-visible {
  outline: 2px solid #00c57a;
  outline-offset: 4px;
}
.partner-home-btn{
  padding:16px 44px;
  border-radius:999px;
  border:none;
  background:#ffffff;
  color:#076944;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:background .25s ease, box-shadow .25s ease;
}

.partner-home-btn:hover{
  background:#d0e6dd;
  
  transform: translateY(-2px);
}



/* =====================================================
   SCROLL INDICATOR
===================================================== */
/* ================= SCROLL INDICATOR ================= */
.olesam-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;   /* KEY FIX */
  justify-content: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
}

.olesam-scroll-indicator span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #e8fff3;
  white-space: nowrap;
}

.olesam-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: olesamArrow 1.8s infinite;
}


@keyframes olesamArrow {
  0%,100% {transform:rotate(45deg) translate(0,0);}
  50% {transform:rotate(45deg) translate(0,6px);}
}


/* ================= SCROLL INDICATOR ================= */
.olesam-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;   /* KEY FIX */
  justify-content: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
}

.olesam-scroll-indicator span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #e8fff3;
  white-space: nowrap;
}

.olesam-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: olesamArrow 1.8s infinite;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .olesam-nav-links { display: none; }
  .olesam-hamburger { display: block; }

}







/* ===================================================================================ROTATING WORDS AND PICS===================================================== */

#olesam-tagline-section {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  background: #ffffff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.olesam-tagline-wrap {
  max-width: 900px;
  margin: auto;
}

/* container */
.olesam-word-rotator {
  position: relative;
  height: 3em; /* generous space for Betty font */
  margin-bottom: 1.4rem;
  overflow: hidden;

  font-family: 'Thinking of Betty', cursive;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 800;
  line-height: 3;
  color: #2f6f55;
}

/* words */
.olesam-word {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* visible word */
.olesam-word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* tagline */
.olesam-tagline-text {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #2b6a50;
  letter-spacing: 0.03em;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .olesam-word {
    transition: none;
  }
}











#olesam-image-carousel {
  padding: 80px 0;
  background: #ffffff;
}

/* viewport */
.olesam-carousel-viewport {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 28px;
}

/* track */
.olesam-carousel-track {
  display: flex;
  transition: transform 1s ease;
}

/* slides */
.olesam-carousel-slide {
  min-width: 100%;
  height: 65vh;
  position: relative;
  opacity: 0.6;
  transition: opacity 1s ease;
}

.olesam-carousel-slide.is-active {
  opacity: 1;
}

/* image + ken burns */
.olesam-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 3.2s ease;
}

.olesam-carousel-slide.is-active img {
  transform: scale(1.08); /* subtle Ken Burns */
}

/* dots */
.olesam-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.olesam-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.olesam-carousel-dots button.active {
  background: #00c57a;
  transform: scale(1.3);
}

/* mobile */
@media (max-width: 768px) {
  .olesam-carousel-slide {
    height: 50vh;
  }
}






/* =====================================================
   OLESAM OFFERS SECTION
===================================================== */



#olesam-offers-section {
  padding: 90px 6%;
  background: #cff8e1;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.olesam-offers-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.olesam-offers-header h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 14px;
}

.olesam-offers-header p {
  font-size: 17px;
  color: #4b5f56;
  line-height: 1.7;
}

/* Grid */
.olesam-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

/* Cards */
.olesam-offer-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 26px;
  text-align: center;
  position: relative;
  overflow: hidden;

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

/* Soft overlay glow */
.olesam-offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 197, 122, 0.12),
    rgba(11, 31, 22, 0.12)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.olesam-offer-card:hover::before {
  opacity: 1;
}

/* Hover depth only – NO movement */
.olesam-offer-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

/* Icon */
.olesam-offer-icon {
  font-size: 38px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Text */
.olesam-offer-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.olesam-offer-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 600px) {
  #olesam-offers-section {
    padding: 70px 6%;
  }
}






/* =====================================================
   OLESAM VIDEO SHOWCASE — PREMIUM & RESPONSIVE
===================================================== */

#olesam-video-showcase{
  background:linear-gradient(180deg, #f7fbf9, #ffffff);
  padding:clamp(3rem, 8vw, 6rem) 16px;
  font-family:'Montserrat',sans-serif;
}

/* Wrapper */
.olesam-video-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:48px;
  align-items:center;
}

/* Text */
.olesam-video-content h2{
  font-size:clamp(1.6rem, 4vw, 2.4rem);
  font-weight:800;
  color:#064e3b;
  margin-bottom:14px;
}

.olesam-video-content p{
  font-size:1.05rem;
  line-height:1.8;
  color:#2B6A50;
  max-width:520px;
}

/* Video frame */
.olesam-video-frame{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  background:#000;
}

/* Maintain aspect ratio */
.olesam-video-frame video{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:16 / 9;
  object-fit:cover;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:900px){
  .olesam-video-wrapper{
    grid-template-columns:1fr;
    gap:36px;
  }

  .olesam-video-content{
    text-align:center;
  }

  .olesam-video-content p{
    margin:auto;
  }
}

/* Mobile */
@media(max-width:480px){
  .olesam-video-frame{
    border-radius:18px;
  }
}






/* =====================================================
   OLESAM BOOKING FORM
===================================================== */

#olesam-booking-section {
  padding: 70px 16px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

/* Card */
.olesam-booking-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 26px;
  
}

/* Title */
.olesam-booking-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 6px;
}

.olesam-booking-subtitle {
  text-align: center;
  font-size: 14px;
  color: #000000;
  margin-bottom: 26px;
}

/* Fields */
.olesam-field {
  margin-bottom: 18px;
}

.olesam-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 6px;
}

.olesam-field input,
.olesam-field textarea {
  width: 90%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #09a354;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Focus state */
.olesam-field input:focus,
.olesam-field textarea:focus {
  border-color: #09a354;
  
}

/* Invalid */
.olesam-field input:invalid,
.olesam-field textarea:invalid {
  border-color: #09a354;
}

/* Textarea */
.olesam-field textarea {
  resize: none;
  height: 90px;
}

/* Button */
.olesam-booking-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 999px;
  background: #00c57a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.olesam-booking-btn:hover {
  background: #00b06c;
  box-shadow: 0 10px 25px rgba(0, 197, 122, 0.35);
}

/* Responsive */
@media (max-width: 420px) {
  .olesam-booking-card {
    padding: 30px 22px;
  }
}




/* =====================================================
                      Portfolio
===================================================== */

#accommodations{
  font-family:'Montserrat',sans-serif;
  max-width:1800px;
  margin:20px auto;
  padding:0 20px;
  background:#0b1f16;
  color:#ffffff;
  border-radius:40px;
  transition:background .4s ease,color .4s ease;
  overflow:hidden;
}

/* Theme toggle */
.acc-theme-wrap{
  text-align:right;
  padding:20px;
}

#themeToggle{
  padding:10px 22px;
  border-radius:25px;
  border:1px solid #00c57a;
  background:transparent;
  color:#00c57a;
  font-weight:600;
  cursor:pointer;
}

/* Header */
.acc-title{
  font-size:42px;
  font-weight:800;
  margin:10px 0 15px;
  text-align:center;
  color:#00c57a;
}

.acc-intro{
  font-size:18px;
  max-width:850px;
  margin:0 auto 60px;
  text-align:center;
  color:#e5f4ee;
}

/* Rows */
.acc-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-bottom:100px;
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease, transform .9s ease;
}

/* Image */
.parallax{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:25px;
  transition:transform .3s ease, filter .3s ease;
}

/* Text */
.acc-row h3{
  font-size:28px;
  margin-bottom:8px;
}

.acc-icons{
  margin-bottom:16px;
  font-size:14px;
  color:#00c57a;
}

.acc-desc{
  font-size:16.5px;
  line-height:1.8;
  margin-bottom:28px;
  color:#eef9f5;
  max-height:0;
  overflow:hidden;
  transition:max-height 1s ease;
}

.explore{
  display:inline-block;
  padding:12px 30px;
  border-radius:30px;
  background:#00c57a;
  color:#0b1f16;
  font-weight:600;
  text-decoration:none;
}








/* =====================================================
   PARTNERS & COLLABORATORS — FINAL CSS (SMOOTH + SEAMLESS)
===================================================== */

/* ✅ Prevent overflow/cut-off on inputs */
#osx-partners-section,
#osx-partners-section *{
  box-sizing:border-box;
}

#osx-partners-section{
  font-family:'Montserrat',sans-serif;
  background:#ffffff;
  padding:90px 16px;
  overflow:hidden;
}

/* ================= HEADER ================= */
.osx-partners-header{
  text-align:center;
  max-width:780px;
  margin:0 auto 60px;
}

.osx-partners-header h2{
  font-size:clamp(26px,6vw,42px);
  font-weight:800;
  color:#00c57a;
  margin-bottom:14px;
}

.osx-partners-header p{
  font-size:17px;
  color:#1a1a1a;
  line-height:1.7;
}

/* ================= PARTNER STRIP ================= */
.osx-partners-track-wrap{
  max-width:1200px;
  margin:auto;
  overflow:hidden;
}

.osx-partners-track{
  display:flex;
  gap:36px;
  width:max-content;
  animation:partnersScroll 26s linear infinite;
}

.osx-partners-track span{
  white-space:nowrap;
  padding:18px 26px;
  background:#f6fdf9;
  border-radius:28px;
  font-size:16px;
  font-weight:600;
  color:#1a1a1a;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.osx-partners-track:hover{
  animation-play-state:paused;
}

@keyframes partnersScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ================= CTA ================= */
.osx-partners-cta{
  text-align:center;
  margin-top:70px;
}

.osx-partners-cta button{
  padding:15px 40px;
  border-radius:32px;
  border:none;
  background:#00c57a;
  color:#ffffff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:background .25s ease, box-shadow .25s ease;
}

.osx-partners-cta button:hover{
  background:#00b06c;
  box-shadow:0 14px 34px rgba(0,197,122,.35);
}

/* =====================================================
   MODAL (SMOOTH OPEN/CLOSE + SEAMLESS)
   ✅ controlled by .is-open (NOT display none)
===================================================== */

.exact-partner-modal{
  /* ✅ keep in DOM for smooth animation */
  display:block;

  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:999;
  padding:24px;

  /* seamless scrolling if content is tall (scroll overlay, not card) */
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;

  /* smooth open/close */
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.exact-partner-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

/* Modal card */
.exact-partner-card{
  background:#ffffff;
  width:100%;
  max-width:380px;

  /* ✅ reduced bottom space */
  padding:28px 24px 18px;

  border-radius:22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;

  overflow:visible;

  /* center with breathing room */
  margin:40px auto;

  /* smooth entrance */
  transform:translateY(14px);
  opacity:0;
  transition:transform .35s ease, opacity .35s ease;
}

.exact-partner-modal.is-open .exact-partner-card{
  transform:translateY(0);
  opacity:1;
}

/* Title + intro */
.exact-partner-title{
  font-size:21px;
  font-weight:700;
  color:#00c57a;
  margin-bottom:12px;
}

.exact-partner-text{
  font-size:15px;
  color:#1a1a1a;
  line-height:1.6;
  margin-bottom:10px;
}

/* =====================================================
   FORM (NO INTERNAL SCROLLBARS)
===================================================== */

.partner-form-wrap{
  width:100%;
  overflow:visible;
}

.partner-form{
  width:100%;
  overflow:visible;
  margin-bottom:0;
}

/* fields */
.partner-field{
  text-align:left;
  margin-bottom:14px;
  width:100%;
}

.partner-field label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#064e3b;
  margin-bottom:6px;
}

.partner-field input,
.partner-field select,
.partner-field textarea{
  width:100%;
  max-width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #09a354;
  font-size:14px;
  font-family:inherit;
  outline:none;
}

.partner-field textarea{
  resize:none;
  height:88px;
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.partner-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:12px; /* ✅ reduced */
  margin-bottom:0;
  width:100%;
  padding-bottom:0;
}

/* primary */
.partner-btn-primary{
  padding:12px 22px;
  border-radius:999px;
  border:none;
  background:#00c57a;
  color:#ffffff;
  font-weight:700;
  cursor:pointer;
  transition:background .25s ease, box-shadow .25s ease;
}

.partner-btn-primary:hover{
  background:#00b06c;
  box-shadow:0 10px 25px rgba(0,197,122,.35);
}

/* outline (Clear) */
.partner-btn-outline{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid #00c57a;
  background:transparent;
  color:#00c57a;
  font-weight:700;
  cursor:pointer;
}

/* ✅ Close styled like Clear */
.partner-btn-link{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid #00c57a;
  background:transparent;
  color:#00c57a;
  font-weight:700;
  cursor:pointer;
}

.partner-btn-link:hover{
  box-shadow:0 10px 25px rgba(0,197,122,.18);
}

/* =====================================================
   CONFIRMATION MESSAGE (FADE)
===================================================== */

#partner-confirmation-message{
  opacity:0;
  transition:opacity .6s ease;
  pointer-events:none;
}

#partner-confirmation-message.is-visible{
  opacity:1;
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .osx-partners-track span{
    font-size:15px;
    padding:16px 22px;
  }

  .exact-partner-card{
    margin:26px auto;
    padding:24px 18px 14px; /* ✅ reduced */
  }
}









/* =====================================================
   TESTIMONIALS SECTION — PREMIUM
===================================================== */

#osx-testimonials-section{
  font-family:'Montserrat',sans-serif;
  background:#f9fdfb;
  padding:clamp(70px,10vw,100px) 16px;
  overflow:hidden;
}

/* ================= HEADER ================= */
.osx-testimonials-header{
  text-align:center;
  max-width:780px;
  margin:0 auto 60px;
}

.osx-testimonials-header h2{
  font-size:clamp(24px,6vw,42px);
  font-weight:800;
  color:#00c57a;
  margin-bottom:14px;
}

.osx-testimonials-header p{
  font-size:clamp(15px,3.8vw,17px);
  color:#1a1a1a;
  line-height:1.7;
}

/* ================= COUNTER ================= */
.osx-testimonials-counter{
  text-align:center;
  margin-bottom:70px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

#osx-client-count{
  font-size:clamp(44px,14vw,64px);
  font-weight:800;
  color:#00c57a;
  line-height:1;
}

.osx-counter-label{
  font-size:clamp(14px,4vw,16px);
  font-weight:600;
  color:#1a1a1a;
}

/* ================= GRID ================= */
.osx-testimonials-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:clamp(24px,5vw,40px);
}

/* ================= CARD ================= */
.osx-testimonial-card{
  background:#ffffff;
  padding:32px;
  border-radius:26px;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
}

/* ================= CARD HEADER ================= */
.osx-testimonial-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

/* ================= AUTO AVATAR ================= */
.osx-avatar{
  position:relative;
  width:52px;
  height:52px;
  border-radius:50%;
  flex-shrink:0;
  border:2px solid #00c57a;
  overflow:hidden;
}

/* Head */
.osx-avatar::before{
  content:'';
  position:absolute;
  top:9px;
  left:50%;
  transform:translateX(-50%);
  width:16px;
  height:16px;
  border-radius:50%;
}

/* Shoulders */
.osx-avatar::after{
  content:'';
  position:absolute;
  bottom:6px;
  left:50%;
  transform:translateX(-50%);
  width:28px;
  height:18px;
  border-radius:14px 14px 6px 6px;
}

/* FEMALE */
.osx-avatar[data-gender="female"]{
  background:linear-gradient(135deg,#fde2e4,#f6c1cc);
}

.osx-avatar[data-gender="female"]::before,
.osx-avatar[data-gender="female"]::after{
  background:#f1b7c1;
}

/* MALE */
.osx-avatar[data-gender="male"]{
  background:linear-gradient(135deg,#dbeafe,#bfdbfe);
}

.osx-avatar[data-gender="male"]::before,
.osx-avatar[data-gender="male"]::after{
  background:#9bb3c9;
}

/* ================= NAME & VERIFIED ================= */
.osx-name{
  font-size:15px;
  font-weight:700;
  color:#1a1a1a;
}

.osx-verified{
  font-size:12px;
  color:#00c57a;
  margin-left:6px;
  font-weight:600;
}

/* ================= STARS ================= */
.osx-stars{
  font-size:16px;
  letter-spacing:2px;
  color:#f5b301; /* premium gold */
  margin-top:4px;
}

/* ================= TEXT ================= */
.osx-testimonial-card p{
  font-size:15.8px;
  line-height:1.75;
  margin-bottom:18px;
  color:#1a1a1a;
}

/* ================= LOCATION ================= */
.osx-location{
  font-size:14.5px;
  font-weight:600;
  color:#555;
}





/* =====================================================
   CAMP CAROUSEL — PREMIUM -GALLERY
===================================================== */

#osx-camp-carousel{
  background:#ffffff;
  padding:90px 16px;
  font-family:'Montserrat',sans-serif;
  text-align:center;
}

/* Hint */
.osx-carousel-hint{
  font-size:18px;
  margin-bottom:40px;
  color:#0b7557;
  opacity:.9;
}

/* Shell */
.osx-carousel-shell{
  position:relative;
  max-width:620px;
  margin:auto;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.15);
}

/* Track */
#osx-carousel-track{
  display:flex;
  transition:transform .6s ease;
  touch-action:pan-y;
}

/* Item */
.osx-carousel-item{
  min-width:100%;
  position:relative;
}

.osx-carousel-item img{
  width:100%;
  display:block;
  object-fit:cover;
}

/* Navigation buttons */
#osx-carousel-prev,
#osx-carousel-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(11,117,87,.75);
  border:none;
  color:#ffffff;
  font-size:34px;
  width:46px;
  height:46px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, transform .25s ease;
}

#osx-carousel-prev{
  left:14px;
}

#osx-carousel-next{
  right:14px;
}

#osx-carousel-prev:hover,
#osx-carousel-next:hover{
  background:#0b7557;
  transform:translateY(-50%) scale(1.05);
}

/* Mobile */
@media(max-width:600px){
  .osx-carousel-hint{
    font-size:16px;
  }

  #osx-carousel-prev,
  #osx-carousel-next{
    width:40px;
    height:40px;
    font-size:28px;
  }
}




/* =====================================================
   OLESAM FEEDBACK — PREMIUM
===================================================== */



.feedback-section{
  padding:48px 16px;
  background:#ffffff;
  font-family:'Montserrat',sans-serif;
  overflow-x:hidden;
}

/* Card */
.feedback-card{
  max-width:560px;
  margin:auto;
  background:#ffffff;
  padding:32px 24px;
  border-radius:24px;

}

/* Title */
.feedback-title{
  text-align:center;
  font-size:1.8rem;
  font-weight:700;
  color:#064e3b;
  margin-bottom:6px;
}

.feedback-subtitle{
  text-align:center;
  font-size:.95rem;
  color:#2B6A50;
  margin-bottom:28px;
}

/* Form layout */
.feedback-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Groups */
.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-group label{
  font-size:.85rem;
  font-weight:600;
  color:#026139;
 
}

/* Inputs */
.form-group input,
.form-group textarea,
.form-group select{
  width:85%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid#06AE60;
  font-size:.95rem;
  font-family:inherit;
  background:#ffffff;
}

textarea{
  min-height:120px;
  resize:vertical;
}

/* Focus */
input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:#06AE60;
  box-shadow:0 0 0 2px rgba(6,174,96,.15);
}

/* ================= STAR RATING ================= */

.rating-row{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.rating-row button{
  background:none;
  border:none;
  font-size:2rem;
  cursor:pointer;
  color:#05c639;
  padding:0;
  transition:transform .2s ease,color .2s ease;
}

.rating-row button:hover{
  transform:scale(1.15);
}

.rating-row button.active{
  color:#f5b301;
}

/* Rating label */
.rating-label{
  font-size:.85rem;
  font-weight:600;
  color:#2B6A50;
  margin-top:4px;
  min-height:1.2em;
}

/* Pop animation */
.rating-label.pop{
  animation:pop .25s ease;
}

@keyframes pop{
  0%{
    transform:scale(.9);
    opacity:.6;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* ================= ACTIONS ================= */

.form-actions{
  display:flex;
  gap:12px;
  margin-top:12px;
  width: 85%;
}

.btn-outline,
.btn-primary{
  flex:1;
  padding:14px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}

/* Clear */
.btn-outline{
  border:1px solid #06AE60;
  background:#ffffff;
}

/* Submit */
.btn-primary{
  border:none;
  background:#06AE60;
  color:#ffffff;
}

/* ================= MOBILE ================= */

@media(max-width:480px){

  .feedback-card{
    padding:28px 18px;
  }

  .feedback-title{
    font-size:1.5rem;
  }

  .rating-row button{
    font-size:1.8rem;
  }

  .rating-label{
    font-size:.8rem;
  }

  .form-actions{
    flex-direction:column;
  }
}





/* =====================================================
   OLESAM FOOTER — FINAL BALANCED GRID CSS
===================================================== */

#olesam-footer{
  background:#061f1a;
  color:#e6f2ef;
  font-family:'Montserrat',sans-serif;
}

/* ================= GRID LAYOUT ================= */

.olesam-footer-grid{
  max-width:1200px;
  margin:auto;
  padding:64px 20px 48px;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-template-rows:auto auto;

  grid-template-areas:
    "about links newsletter"
    ". contact map";

  gap:36px;
}

/* Assign grid areas */
.footer-about{ grid-area:about; }
.footer-links{ grid-area:links; }
.footer-newsletter{ grid-area:newsletter; }
.footer-contact{ grid-area:contact; }
.footer-map{ grid-area:map; }

/* Center bottom row */
.footer-contact,
.footer-map{
  justify-self:center;
  width:100%;
  max-width:360px;
}

/* ================= SECTIONS ================= */

.footer-col{
  display:flex;
  flex-direction:column;
  gap:8px; /* tight & balanced */
}

.footer-col h3{
  font-size:1.05rem;
  font-weight:700;
  color:#ffffff;
  margin-bottom:4px;
}

.footer-col p,
.footer-col small,
.footer-col a{
  font-size:.9rem;
  line-height:1.6;
  color:#cfe7e0;
  text-decoration:none;
}

/* ================= LINKS ================= */

.footer-links a{
  transition:color .2s ease;
}

.footer-links a:hover{
  color:#ffffff;
}

/* ================= NEWSLETTER ================= */

.newsletter-form{
  display:flex;
  gap:8px;
  margin-top:4px;
}

.newsletter-form input{
  flex:1;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#ffffff;
}

.newsletter-form input::placeholder{
  color:#b7d6cf;
}

.newsletter-form button{
  padding:11px 14px;
  border-radius:10px;
  border:none;
  background:#06AE60;
  color:#042f26;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.newsletter-form button:hover{
  background:#52d3b0;
  transform:translateY(-1px);
}

/* ================= CONTACT ================= */

.contact-item{
  font-size:.9rem;
  color:#cfe7e0;
}

.footer-contact a{
  color:#cfe7e0;
}

.footer-contact a:hover{
  color:#ffffff;
}

/* ================= SOCIAL ICONS ================= */

.footer-socials{
  display:flex;
  gap:12px;
  margin-top:6px;
}

.footer-socials .social{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  color:#ffffff;
  transition:background .25s ease, transform .25s ease;
}

/* Brand hover colors */
.social.fb:hover{ background:#1877F2; }
.social.ig:hover{ background:linear-gradient(
  45deg,
  #833AB4,
  #E1306C,
  #FD1D1D,
  #FCAF45); }
.social.tt:hover{ background:#000000; }
.social.wa:hover{ background:#25D366; }


.footer-socials .social:hover{
  transform:translateY(-2px);
}

/* ================= MAP ================= */

.footer-map-embed{
  margin-top:6px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}

.footer-map-embed iframe{
  width:100%;
  height:160px;
  border:0;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom{
  text-align:center;
  padding:16px;
  font-size:.8rem;
  color:#b7d6cf;
  border-top:1px solid rgba(255,255,255,.08);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Tablet */
@media(max-width:900px){
  .olesam-footer-grid{
    grid-template-columns:repeat(2,1fr);
    grid-template-areas:
      "about links"
      "newsletter newsletter"
      "contact map";
  }

  .footer-contact,
  .footer-map{
    max-width:100%;
  }
}

/* Mobile */
@media(max-width:520px){
  .olesam-footer-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "about"
      "links"
      "newsletter"
      "contact"
      "map";

    padding:48px 16px;
  }

  .newsletter-form{
    flex-direction:column;
  }

  .newsletter-form button{
    width:100%;
  }

  .footer-map-embed iframe{
    height:200px;
  }
}
