@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700;800;900&display=swap');

:root {
  --green-50: #eef5f3;
  --green-100: #C6DFD9;
  --green-200: #a8cfc6;
  --green-300: #7bbdb0;
  --green-400: #3a9fa0;
  --green-500: #118489;
  --green-600: #0e6d72;
  --green-700: #118489;
  --green-800: #315151;
  --green-900: #2F3636;
  --white: #ffffff;
  --gray-50: #f4f7f6;
  --gray-600: #4a5c58;
  --gray-800: #315151;
  --gray-900: #2F3636;
  --gradient-btn: linear-gradient(135deg, #F0770F,#F7E452);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 20px rgba(17, 132, 137, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: "Outfit", sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1210px;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: var(--transition);
}

.nav-logo img {
  height: 50px;
  width: auto; 
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  background: rgba(217, 217, 217, 0.3);
  backdrop-filter: blur(10px);
  color: var(--white);
  transition: var(--transition);
}

.nav-links a.active, .nav-links a:hover {
  background: var(--white);
  color: var(--green-900);
}

.nav-links a.btn-login {
  background: var(--gradient-btn);
  color: #000000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 45px;
  margin-left: 10px;
}

.nav-links a.btn-login:hover {
  background: var(--gradient-btn);
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(240, 119, 15, 0.4);
}

.mobile-nav a.btn-login-mobile {
  background: rgba(255,255,255,0.2);
  margin-top: 10px;
  border-radius: 4px;
  padding: 15px;
  text-align: center;
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* MOBILE NAV & CLOSE BUTTON */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: #064043;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.mobile-nav.open {
  right: 0;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.6);
}

.close-mobile {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-mobile:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.4s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.5s; }

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  transform: scale(1.05);
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--white);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 60%;
}

/* HERO */
.hero {
  height: 108vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/heroo.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
  will-change: transform;
  transform: translateZ(0);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.Home-Logo {
  width: 35%;
}

.hero-tagline {
  margin-top: 20px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 2;
  color: #ffffff;
}

.hero-description {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-main-title {
  font-size: clamp(2rem, 5vw, 4rem);
}

.insight-recharge-logo {
  width: 50%;
  height: auto;
  padding-top: 20px;
}

.rezine-borders {
  margin-top: 20px;
}
#rezine-title {
  font-family: "Outfit";
  font-weight: 700;
  background: linear-gradient(to right, #004649 10%, #00A8AF 30%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*ACTIVITY SECTION*/
.activity { width: 100%; position: relative; }

.activity-header {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.activity-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #11848999 0%, rgba(17, 132, 137, 0.6) 50%, #11848999 100%);
  z-index: 2;
}

.activity-header-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity-header-content h1 { font-size: 5rem; font-weight: 700; margin-bottom: 10px; text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4); }
.activity-header-content p { font-size: 1.2rem; opacity: 0.9; }
.activity-header-content img { width: 50%; max-width: 70%; height: auto; margin-left: 25%; margin-top: 30%; opacity: 0.95; }

.section-title { display: flex; justify-content: center; margin: 60px 0 60px; }
.section-title h2 {
  background: linear-gradient(135deg, #2bb3b1, #124F51);
  color: white;
  padding: 14px 40px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.activity-list {
  display: flex; 
  flex-direction: column; 
  gap: 40px; 
  align-items: center; 
  margin-top: 40px; 
  overflow-x: hidden;
  width: 100%;
  
}
.activity-track { 
  display: flex; 
  width: 100%; 
  transition: transform 0.5s ease; 
  padding-bottom: 50px; 
  will-change: transform;
}
.activity-group { 
  min-width: 100%; 
  display: flex; 
  flex-direction: column; 
  gap: 50px; 
  align-items: center; 
}

.activity-card {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 300px;
  border-radius: 30px;
  padding: 20px;
  background: linear-gradient(180deg, #7fbebb, #94cfc1);
  color: white;
  overflow: visible;
}

.titik-tiga { 
  display: flex; 
  position: absolute; 
  top: 20px; 
  right: 30px; 
  gap: 5px; 
  opacity: 0.8; transition: 0.2s; 
}
.titik-tiga span { 
  width: 15px; 
  height: 15px; 
  background: rgba(255,255,255,0.8); 
  border-radius: 50%; 
}

.activity-nav {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.nav-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #0f8b8d;
  color: white;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.nav-btn i {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bi-arrow-left {
  transform: translateY(1px);
}

.bi-arrow-right {
  transform: translateY(9px);
}

.nav-btn.right.disabled .bi-arrow-right {
  color: #118489 !important;
}

.nav-btn.left.disabled .bi-arrow-left {
  color: #118489 !important;
}

.nav-btn:hover {
  background: #0e6d72;
  transform: scale(1.05) !important;
}

.nav-btn:disabled,
.nav-btn.disabled {
  background: transparent !important;
  opacity: 1 !important;
  border: 2px solid #118489 !important;
  border-radius: 50% !important;
  color: #118489 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.nav-btn:disabled:hover,
.nav-btn.disabled:hover {
  background: transparent !important;
  transform: none !important;
  border: 2px solid #118489 !important;
  border-radius: 50% !important;
  color: #118489 !important;
}

.nav-btn {
  background: #118489 !important;
  border: none !important;
  color: white !important;
}

.nav-btn:hover:not(:disabled):not(.disabled) {
  background: #0e6d72 !important;
  transform: scale(1.05) !important;
  border: none !important;
}
.card-image {
  position: absolute;
  right: -50px;
  bottom: -20px;
  width: 50%;
  height: 70%;
  background: rgb(202, 202, 202);
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
/* MERCHANDISE SECTION */
.Merchandise {
  position: relative;
  width: 100%;
  min-height: 1200px;
  background: linear-gradient(180deg, #042223 0%, #118489 75%, #ffffff 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 20px;
  text-align: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 7%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 7%, black 100%);
  margin-top: -10vh;
  padding-top: calc(10vh + 140px);
  will-change: transform;
  transform: translateZ(0);
  z-index: 2;
}

.merchandise-panel {
  background: white;
  border-radius: 40px;
  padding: 20px 20px;
  min-width: 65%;
  height: 450px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.merchandise-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.merchandise-content h1 {
  color: #118489;
  text-align: left;
  margin: 2px 0;
  z-index: 2;
}
.merchandise-mascot {
  position: absolute;
  transform: translateX(40%);
  right: 20%;
  z-index: 2;
}
.merchandise-mascot img {
  user-select: none;
  max-height: 400px;
  width: auto;
  object-fit: contain;
  display: block;
}

.merchandise-panel h1 { color: #118489; text-align: left; }

.merchandise-button {
  margin-top: 3%;
  display: flex;
  width: 60%;
  height: 60px;
  background: #118489;
  border-radius: 20px;
  gap: 10px;
  align-items: center;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
  position: relative;
  animation: reveal-slice 2s ease-in-out 1 forwards;
}

.merchandise-button:hover { transform: scale(1.08); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
.IG_logo svg { margin-top: 10px; color: white; width: 30px; height: 30px; }
.merchandise-button p { margin: 0; color: white; font-size: 20px; }

.highlight-text1,
.highlight-text2 {
  position: relative;
  display: inline-block;
  padding: 0 8px;
}
.highlight-text1,
.highlight-text2 {
  position: relative;
  display: inline-block;
  color: #118489 !important;
  z-index: 1;
}

.highlight-text1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 70%;
  background: #F7E452;
  z-index: -1;
  transform: skew(-5deg) rotate(-2deg);
  border-radius: 4px;
  pointer-events: none;
}

.highlight-text2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 60%;
  background: #F7E452;
  z-index: -1;
  transform: skew(3deg) rotateY(5deg);
  border-radius: 4px;
  pointer-events: none;
}
/*  ABOUT SECTION */
.core-part {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  margin-top: -15vh;
  padding-top: calc(15vh + 50px);
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 10%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
  will-change: transform;
  transform: translateZ(0);
}

.about-core-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 44px;
  padding: 22px 18px 28px;
  overflow: hidden;
  z-index: 1;
}

.about-core-bg {
  position: absolute;
  top: -15vh;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 15vh);
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.about-core-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about {
  padding: 0 5% 100px;
  background: var(--white);
}

.about-container {
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.core-values-box,
.vision-mission-card {
  position: relative;
  z-index: 2;
}


.core-values-box {
  background: var(--green-500);
  border-radius: 35px;
  padding: 25px 40px;
  width: fit-content;      
  max-width: 780px;       
  min-width: 0;
  margin: 0 auto -70px auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(17, 132, 137, 0.3);
  text-align: center;
}

.core-value-title { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }

.core-values-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;  
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 2.5vw, 28px);
}

.core-value-item {
  color: var(--white);
  text-align: center;
  flex: 0 1 auto;            
  min-width: 0;
}

.cv-icon img {
  width: clamp(36px, 5vw, 60px);
  height: clamp(36px, 5vw, 60px);
  margin-bottom: 8px;
  object-fit: contain;
  display: inline-block;
}

.core-value-item p {
  font-size: clamp(0.45rem, 0.9vw, 0.85rem);
  font-weight: 500;
  white-space: nowrap;   
}

.vision-mission-card {
  background: rgba(255, 255, 255, 0.43);
  border: 2px solid #FFFFFF;
  border-radius: 40px;
  padding: 100px 40px 40px;
  margin-top: -45px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.vision-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.vision-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 35px;
  line-height: 52px;
  text-align: center;
  background: linear-gradient(88.1deg, #118489 26.08%, #87BFBA 75.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.11));
  margin-bottom: 5px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #FFFFFF;
}

.vision-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  max-width: 804px;
}
.vision-text span{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.vision-highlight {
  background: linear-gradient(90deg, #118489 0%, #489882 82.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.our-header { display: flex; justify-content: center; width: 100%; margin-top: 0px;   margin-bottom: 20px; }

.our-badge {
  background: linear-gradient(95.37deg, #118489 0%, #042E30 50%, #118489 100%);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #FFFFFF;
  padding: 4px 30px;
  line-height: 38px;
  z-index: 1;
}

.mission-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 35px;
  text-align: center;
  background: linear-gradient(88.1deg, #118489 26.08%, #87BFBA 75.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.13));
  margin-top: -20px;
  margin-bottom: -20px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #FFFFFF;
}

.mission-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mission-item {
  box-sizing: border-box;
  width: 100%;
  max-width: 856px;
  min-height: 82px;
  background: #FFFFFF;
  border: 1px solid #118489;
  box-shadow: 0px 11px 19.5px rgba(17, 132, 137, 0.6);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  gap: 25px;
}

.mission-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon svg {
  width: 100%;
  height: 100%;
}

.mission-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #004649;
  text-align: left;
}

.btn-know-more {
  background: #118489;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  padding: 18px 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.btn-know-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 132, 137, 0.4);
  background: #0e6d72;
}

.gallery-part {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10%;
  background: linear-gradient(to bottom, transparent 0%, #fff 20%);
  margin-top: -15vh;
  padding-top: calc(15vh + 48px);
  position: relative;
  z-index: 2;
}

.gallery-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.gallery-title {
  display: inline-block;
  text-shadow: #000000;
  background: linear-gradient(270deg, #C6DFD9 20%, #118489 100%);
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 1000px;
  letter-spacing: 0.3px;
  text-shadow: 0 5px 15px rgb(0, 0, 0, 0.5);
  font-family: 'Poppins';
}

.slider-root {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-strip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: none;
  cursor: grab;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  scroll-padding: 0 calc(50% - 80px);
}

.img-strip::-webkit-scrollbar { display: none; }
.img-strip.dragging { cursor: grabbing; }

.strip-item {
  flex: 0 0 220px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: #D9D9D9;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #555;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  z-index: 10;
  background: #D9D9D9;
  pointer-events: none;
  border: 5px solid rgba(255,255,255,1);
}

#spotlightContent {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.spotlight-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}

.spotlight-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b2d5d6;
  transition: background 0.25s, transform 0.25s;
}

.dot.active {
  background: #118489;
  transform: scale(1.3);
}
.btn-primary {
  background: var(--gradient-btn);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
}
.about-header {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  will-change: transform;
  transform: translateZ(0);
}

.about-header-contents {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-header-contents h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-header-contents h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hastagSRELogo {
  width: 50%; 
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  display: block;
}

.hastagSRELogo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-header-img,
.about-header-img-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-header-img {
  z-index: 1;
  object-position: center;
}

.about-header-img-background {
  z-index: 2;
  object-position: center;
}

.welcome-speech {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 100%px;
  margin-left: auto;
  margin-right: auto;
}

.speech-header {
  margin-bottom: 30px;
  overflow: visible;
}

.speech-title {
  font-size: 2rem;
  color: var(--green-700);
  margin-bottom: 30px;
  font-weight: 700;
  background: linear-gradient(90deg,#118489, #C6DFD9);
  color: white;
  border-radius: 20px;
  width: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
  margin-top: auto;
  margin-bottom: 80px;
}
.speaker-names {
  overflow: visible !important;
  padding-top: 30px !important;
  padding-bottom: 40px !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.speaker-item {
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 220px;
  flex: 0 0 220px;
}

.speaker-item:nth-child(2) {
  margin-bottom: 25px;
}

.speaker-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 407 / 484;
  object-fit: cover;
  border: 3px solid var(--green-400);
  object-position: center top;
  box-shadow: 0 5px 15px rgba(17, 132, 137, 0.3);
  transition: var(--transition);
  border-radius: 25px;
}

.speaker-photo:hover {
  transform: scale(1.03);
  border-color: var(--green-600);
  box-shadow: 0 8px 20px rgba(17, 132, 137, 0.4);
}

.anomali .speaker-photo {
  object-position: center 20%;
  object-fit: cover;
  transform: translateY(20px);
  transform-origin: center 30%;
}
.anomali .speaker-photo:hover {
  transform: scale(1.015) translateY(20px);
}
.speaker-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  background: linear-gradient(90deg, #118489 0%, #AEEEDC 100%);
  border: 4px solid #FFFFFF;
  border-radius: 100px;
  padding: 8px 16px;
  margin-top: -30px;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 12px rgba(17, 132, 137, 0.25);
}

.speaker-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  white-space: normal;
}

.speaker-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  white-space: normal;
}

.speech-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.speech-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-500);
  color: white;
  letter-spacing: 1px;
  background: linear-gradient(90deg,#118489, #C6DFD9);
  height: 100%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  padding: 10px;
}

.organogram {
  margin-top: 40px;
  padding: 0px 40px;
  border-radius: 40px;
    overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.organogram-title {
  font-size: 2.8rem;
  text-align: center;
  color: var(--green-700);
  margin-bottom: 40px;
  font-weight: 800;
  letter-spacing: 2px;
}

.organogram-image {
  max-width: 100%;
  max-height: 800px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
  display: block;  
  min-width: 600px;
}

.organogram-grid {
  display: none;
}
/* ═══════════════════════════════════
   HISTORY PARTNERSHIP
═══════════════════════════════════ */
.hp-inner-reveal-active{
  width: 100vw !important;
}
.history-partnership {
  padding-top: 60px;
  background: #ffffff;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-bottom: 5px;
}

.hp-inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

.hp-title {
  width: 50%;
  font-size: 2rem;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(215deg, #C6DFD9, #118489);
  padding: 12px 40px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-align: center;
  align-self: center;
  margin-top: 50px;
  font-family: 'Poppins';
}

.hp-slider-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.hp-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hp-slide {
  min-width: 100vw; 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 8px 60px;
  box-sizing: border-box;
}
.hp-logo-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-logo-card:hover {
  transform: translateY(-4px);
}

.hp-logo-card img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.hp-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.hp-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c8e0e1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
}

.hp-dot.active {
  background: #118489;
  transform: scale(1.3);
}
.borders{
    transform: none;
    margin: 0;
    display: flex;
    width: 100vw;
    height: 50px;
    background: linear-gradient(90deg, #118489 0%,  #C6DFD9 70%,#ffffff 100%);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.borders-invers{
    transform: none;
    display: flex;
    width: 100vw;
    height: 50px;
    background: linear-gradient(90deg,  #ffffff 0%, #C6DFD9 70%, #118489 100%);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.borders-bottom {
  position: relative;
  display: flex;
  width: 100vw;
  height: 50px;
  background: linear-gradient(180deg, #ffffff 0%, #C6DFD9 20%, #118489 100%);
  outline: black;
}

.borders-bottom::before {
  content: "";
  transform: translateY(5px);
  position: absolute;
  top: -8 0px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.03),
    transparent
  );
  pointer-events: none;
}
/* INSIGHT SECTION */
/* HEADER INSIGHT */
.insight-header {
  position: relative;
  width: 100vw;
  transform: translateX(-50%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
  will-change: transform;
  transform: translateZ(0);
}

.insight-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.insight-header-content h2 {
  font-size: 5rem;
  font-weight: 700;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}
.insight-header-content p {
  position: relative;
  font-size: 1rem;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

/* DIVISION MOST POPULAR */
.most-popular {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.mp-card[data-href] {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mp-card[data-href]:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.mp-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(180deg,#118489,#C6DFD9);
  color: white;
  font-weight: 800;
  font-size: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding: 2% 40px 0;
}

.mp-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.mp-left span {
  background: white;
  color: #118489;
  padding: 1px 5px;
  border-radius: 15px;
  font-size: 0.8rem;
  width: fit-content;
  margin-top: 1px;
  font-weight: 600;
}

.mp-fade {
  position: absolute;
  left: 20%;
  top: 0;
  width: 150px;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(102, 104, 104, 0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,1);
  z-index: 1;
  pointer-events: none;
}

.mp-bg {
  position: absolute;
  left: 20%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/Tanaman-insight.png') center/cover no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}

.mp-slider {
  position: absolute;
  left: 0px;
  top: 20px;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  display: flex;
  align-items: center;
  padding-left: calc(50vw - 140px);
  padding-right: calc(50vw - 140px);
  z-index: 3;
}

.mp-slider::-webkit-scrollbar {
  display: none;
}
.mp-slider.grabbing {
  cursor: grabbing;
}
.mp-slider:active {
  cursor: grabbing;
}

.mp-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding-right: calc(50vw - 140px);
}

.mp-card {
  position: relative;
  min-width: 280px;
  height: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;;
  user-select: none;
}

.mp-card.active {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.mp-card-line {
  position: absolute;
  right: 10%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #333;
}

.mp-card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 10%;
}

.mp-card-content p {
  font-size: 0.8rem;
  margin-top: 10px;
  margin-right: 10%;
}

.mp-source {
  position: absolute;
  right : -5px;
  top: 45%;
  transform: translateX(-20px) rotate(90deg);
  margin-top: 15%;
  transform-origin: right center;
  font-size: 0.9rem;
}

.mp-indicators {
  position: absolute;
  bottom: 20px;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10000;
}

.mp-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  opacity: 0.5;
  transition: 0.3s;
}

.mp-indicators span.active {
  background: white;
  opacity: 1;
}
.mp-highlight-parameter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;   
  height: 300px; 
  border-radius: 20px;
  pointer-events: none;
  z-index: 4;
}

.podcast {
  width: 100%;
  min-height: 900px;    
  background-image: url('../img/bg_podcast.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.circle-wrapper, .big-circle, .highlight-zone,
.item, .item.active, .item .inner,
.i1, .i2, .i3, .i4, .i5 { display: none !important; }

.podcast .bottom {
  align-items: center;
}

.podcast .left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;     
}

.vertical-strip-wrapper {
  position: relative;
  width: 100%;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%, 
    black 85%,  
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.vertical-strip-fade {
  position: absolute;
  left: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 2;
}

.vertical-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30%;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 220px 0;
  box-sizing: border-box;
}
.vertical-strip::-webkit-scrollbar { display: none; }
.vertical-strip.grabbing { cursor: grabbing; }

.vertical-item {
  flex-shrink: 0;
  width: 160px !important;
  height: 160px !important;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease;
  will-change: transform;
}

.vertical-item__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-item__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vertical-item.active {
  transform: scale(1.4) !important;
  border-color: rgba(255,255,255,0.95);
}

.podcast .right {
  width: 50%;
  transition: opacity 0.25s ease;
}

.podcast-blur {
  position: absolute;
  inset: 0;              

  backdrop-filter: blur(2px);

  background: linear-gradient(
    135deg,
    rgba(15, 99, 104, 0.758),
    rgba(255, 255, 255, 0.4)
  );
}
.podcast-content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 900px;       

  display: flex;
  flex-direction: column;
  padding: 60px;
  box-sizing: border-box;
}

.selected {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.selected-pill {
  padding: 10px 28px;

  border-radius: 999px;
  border: 2px solid #fff;

  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;

  background: rgba(17, 132, 137, 0.6);
  backdrop-filter: blur(10px);

  box-shadow: 
    0 0 10px rgba(255,255,255,0.2),
    0 4px 10px rgba(0,0,0,0.3); 
}

.right {
  width: 50%;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.desc-top h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.desc-top p {
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 500px;
}

.bottom {
  display: flex;
  position: relative;
  width: 100%;
  gap: 40px;
  min-height: 300px;
}
.desc-bottom h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.speaker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.role-box {
  display: inline-block;
  width: fit-content; 
  padding: 8px 12px;

  border-radius: 4px;

  background: linear-gradient(
    to left,
    #118489 0%,
    rgba(17, 132, 137, 0.7) 40%,
    rgba(17, 132, 137, 0.0) 100%
  );
}

.role {
  font-size: 14px;
  color: #fff;
}

.rezine-section {
  position: relative;
  margin-top: 80px;
  overflow: visible;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #f2fffd 100%);
  z-index: 1;
}

.rezine-section::before,
.rezine-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.rezine-section::before {
  width: 520px;
  height: 240px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(36px);
}

.rezine-section::after {
  width: 220px;
  height: 220px;
  top: 30px;
  left: -80px;
  background: rgba(17, 132, 137, 0.08);
  filter: blur(26px);
}

.rezine-header,
.rezine-issues {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 20px auto 120px;
}

.rezine-header {
  margin-bottom: 44px;
  padding-left: 6px;
}

.rezine-header h2 {
  color: #118489;
  font-family: "Outfit", sans-serif;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.rezine-header p {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 22px 12px;
  border-radius: 999px;
  background: #0b5b61;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.rezine-issues {
  display: grid;
  gap: 22px;
}

.rezine-carousel {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 2px 34px;
  overflow: hidden;
}

.rezine-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.rezine-page {
  flex: 0 0 100%;
  display: grid;
  gap: 46px;
  padding: 0 6px;
}

.rezine-issue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: center;
  padding: 40px 38px 34px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 100%, rgba(194, 248, 224, 0.92), transparent 32%),
    linear-gradient(135deg, #14878d 0%, #1b9298 56%, #8fddd2 100%);
  box-shadow:
    0 10px 18px -12px rgba(8, 91, 96, 0.28),
    0 28px 42px -24px rgba(7, 73, 77, 0.3),
    0 44px 60px -38px rgba(6, 57, 60, 0.22);
}

.rezine-issue::before,
.rezine-issue::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.rezine-issue::before {
  width: 220px;
  height: 220px;
  left: -32px;
  bottom: 14px;
  border-radius: 44% 56% 52% 48%;
  background: rgba(154, 239, 221, 0.24);
}

.rezine-issue::after {
  width: 112%;
  height: 52%;
  right: -7%;
  bottom: -16%;
  box-sizing: border-box;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.04),
    0 16px 30px rgba(6, 55, 59, 0.16);
  background: transparent;
  opacity: 0.55;
  transform: rotate(-7deg);
}

.rezine-issue-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.rezine-month {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 28px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(132, 211, 215, 0.6), rgba(93, 188, 196, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #e8e8e8;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.rezine-issue-copy p {
  max-width: 470px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
}

.rezine-read-btn {
  padding: 14px 28px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(186, 235, 231, 0.3), rgba(175, 221, 225, 0.28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.rezine-read-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(194, 240, 235, 0.38), rgba(184, 227, 228, 0.34));
}

.rezine-issue-media {
  position: relative;
  width: 100%;
  max-width: 464px;
  min-height: 486px;
  justify-self: end;
}

.rezine-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 20px rgba(4, 44, 47, 0.2),
    0 22px 36px rgba(4, 44, 47, 0.14),
    inset 0 0 0 2px rgba(0, 0, 0, 0.14);
  background: #d7e7e3;
}

.rezine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rezine-photo-main {
  width: 286px;
  height: 286px;
  top: 0;
  left: 112px;
  z-index: 3;
}

.rezine-photo-small {
  bottom: 0;
}

.rezine-photo-small-left {
  width: 214px;
  height: 214px;
  left: 0;
  z-index: 2;
}

.rezine-photo-small-right {
  width: 192px;
  height: 192px;
  right: 0;
  z-index: 1;
}

.rezine-dots {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.rezine-dot {
  appearance: none;
  border: none;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a7f0e5;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.rezine-dot:hover {
  transform: scale(1.08);
}

.rezine-dot.active {
  background: #85bebd;
  transform: scale(1.14);
}


.highlight-zone {
  position: absolute;
  top: 40%;
  left: 60%;
  width: 12%;
  height: 12%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 999;
}

.borders-up {
  width: 100%;
  height: 80px;

  background: linear-gradient(
    to bottom,
    #ffffff,
    #118489
  );

  box-shadow: 
    0 -20px 60px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 -10px 40px rgba(0,0,0,0.5));
}

.highlight-zone {
  position: absolute;
  top: 40%;
  left: 60%;
  width: 12%;
  height: 12%;
  transform: translateX(-50%);

  pointer-events: none;
  z-index: 999;
}

/* FOOTER  */
.footer {
  position: relative;
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

.footer-scene {
  position: relative;
  min-height: clamp(320px, 50vw, 728px);
  line-height: 0;
  overflow: hidden;
  margin-bottom: -1px;
  background: #0A4349;
}

.footer-mountains {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 2px);
  transform: translateY(-1px);
  display: block;
}

.footer-main {
  background: #0A4349;
}

.footer-main-inner {
  max-width: 1240px;
  margin: 0 0;
  padding: 40px 5% 46px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 56px;
  align-items: center;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.footer-sre-logo {
  width: min(170px, 100%);
  height: auto;
  display: block;
}

.footer-recharge-logo {
  width: min(200px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.7));
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px 56px;
  align-items: start;
}

.footer-contact-col {
  display: grid;
  gap: 16px;
}

.footer-contact-link {
  display: flex;
  align-items: justify;
  gap: 10px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-contact-link:hover {
  opacity: 0.88;
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon-mail {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-icon svg,
.footer-contact-icon path,
.footer-contact-icon rect,
.footer-contact-icon circle,
.footer-contact-icon polygon,
.footer-contact-icon line {
  color: var(--white);
}

.footer-bar {
  background: #C7DFE5;
  padding: 14px 5%;
}

.footer-bar p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #374E46;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }