@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.cabin {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #A4796D #F5E4D9;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #A4796D;
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #703cda;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* ================= PRELOADER ================= */
#adaman-preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.adaman-loader {
  text-align: center;
  color: #ffffff;
}

/* ================= BUILDING ================= */
.trade-building {
  position: relative;
  width: 150px;
  height: 110px;
  background: linear-gradient(180deg, #f5c16c, #c89b3c);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  animation: floatUp 2s infinite ease-in-out;
}

/* TOP BAR */
.trade-top {
  position: absolute;
  top: -14px;
  left: 10%;
  width: 80%;
  height: 14px;
  background: #111;
  border-radius: 6px 6px 0 0;
}

/* ================= GROWTH ARROW ================= */
.growth-arrow {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 4px;
  height: 38px;
  background: #00ffb3;
  transform: translateX(-50%);
}

.growth-arrow::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #00ffb3;
  animation: arrowPulse 1.2s infinite;
}

/* ================= PANELS ================= */
.trade-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px 15px 10px;
}

.trade-panels span {
  width: 22px;
  height: 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  animation: panelBlink 1.4s infinite;
}

.trade-panels span:nth-child(even) {
  animation-delay: 0.4s;
}

/* ================= DOOR ================= */
.trade-door {
  width: 32px;
  height: 38px;
  background: #1b1b1b;
  margin: auto;
  border-radius: 4px 4px 0 0;
}

/* ================= TEXT ================= */
.adaman-loader h3 {
  margin-top: 22px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #f5c16c;
}

.adaman-loader p {
  margin-top: 6px;
  font-size: 14px;
  color: #d6f5ff;
  opacity: 0.8;
  animation: textPulse 1.6s infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes arrowPulse {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}
@keyframes panelBlink {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes textPulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

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

.adaman-header {
  width: 100%;
}

.top-offer-bar {
  background: #A4796D;
  height: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}
.top-offer-bar .offer-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: promoScroll 25s linear infinite;
  will-change: transform;
}
.top-offer-bar .offer-track p {
  margin: 0;
  padding-right: 60px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.3px;
}

@keyframes promoScroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.main-header {
  background: #F5E4D9;
  border-bottom: 1px solid #efd6c5;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-area img {
  width: 120px;
}
.logo-area span {
  font-size: 13px;
  font-weight: 700;
  color: #3c2c22;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #3c2c22;
  padding: 2px 14px;
  border-radius: 20px;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #3c2c22, #b08968);
  border-radius: 2px;
  transition: width 0.35s ease;
  pointer-events: none;
}
.nav-menu a:hover {
  color: #b08968;
  transform: translateY(-1px);
  text-shadow: 0 2px 10px rgba(176, 137, 104, 0.35);
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a.active {
  color: #b08968;
}
.nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:active {
  transform: translateY(0);
  color: #8b5e34;
}
.nav-menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(176, 137, 104, 0.4);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 20px;
  }
  .nav-menu a {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.call-area {
  display: flex;
  align-items: end;
  gap: 8px;
  color: #2f6f3e;
}
.call-area small {
  font-size: 11px;
  font-weight: 500;
  color: #49764d;
}
.call-area strong {
  font-size: 15px;
  font-weight: 700;
}
.call-area .call-icon {
  padding-bottom: 5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #3c2c22;
  transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fdeee4;
  border-top: 1px solid #efd6c5;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.35s ease;
}
.mobile-menu a {
  display: block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #3c2c22;
  text-align: center;
  border-bottom: 1px solid #efd6c5;
}
.mobile-menu.active {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    transform: none !important;
  }
}
@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .nav-menu,
  .call-area {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .top-offer-bar {
    height: 26px;
  }
  .top-offer-bar p {
    font-size: 11px;
  }
  .logo-area span {
    font-size: 12px;
  }
}
.fragrance-slider {
  position: relative;
  background: linear-gradient(135deg, #5e6f4f, #7a8b67);
  padding: 20px 5%;
  overflow: visible;
}
.fragrance-slider .parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.fragrance-slider .slider-wrapper {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.fragrance-slider .slide {
  display: none;
  align-items: center;
  gap: 10px;
  animation: fadeSlide 1s ease forwards;
}
@media (max-width: 576px) {
  .fragrance-slider .slide {
    gap: 20px;
  }
}
.fragrance-slider .slide.active {
  display: flex;
}
.fragrance-slider .slide-content {
  max-width: 625px;
  color: #ffffff;
  animation: textMove 1s ease forwards;
  will-change: transform;
  transition: transform 0.15s linear;
}
.fragrance-slider .slide-content h2 {
  font-size: 41px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .fragrance-slider .slide-content h2 {
    font-size: 1.5rem;
  }
}
.fragrance-slider .slide-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 28px;
}
@media (max-width: 576px) {
  .fragrance-slider .slide-content p {
    font-size: 0.8rem;
  }
}
.fragrance-slider .slide-content .btn-enquire {
  display: inline-block;
  padding: 12px 26px;
  background: #b3735e;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (max-width: 576px) {
  .fragrance-slider .slide-content .btn-enquire {
    font-size: 12px;
  }
}
.fragrance-slider .slide-content .btn-enquire:hover {
  background: #bd7d67;
}
.fragrance-slider .slide-image {
  animation: imageMove 1.1s ease forwards;
  will-change: transform;
  transition: transform 0.15s linear;
}
.fragrance-slider .slide-image .image-frame {
  border-radius: 18px;
  padding: 8px;
  position: relative;
  top: 60px;
}
@media (max-width: 576px) {
  .fragrance-slider .slide-image .image-frame {
    top: 0;
  }
}
.fragrance-slider .slide-image .image-frame img {
  width: 480px;
  height: auto;
  border-radius: 14px;
  display: block;
}
.fragrance-slider .slider-dots {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.fragrance-slider .slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.fragrance-slider .slider-dots .dot.active {
  background: #ffffff;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes textMove {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes imageMove {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 992px) {
  .fragrance-slider {
    padding: 60px 20px;
  }
  .fragrance-slider .slide {
    flex-direction: column;
    text-align: center;
  }
  .fragrance-slider .slide-image img {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .fragrance-slider .parallax-bg,
  .fragrance-slider .slide-content,
  .fragrance-slider .slide-image {
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .slide-image img {
    width: 100%;
    max-width: 300px !important;
  }
}
.bukhoor-section {
  padding: 60px 70px;
  background: rgba(243, 243, 243, 0.8235294118);
  padding-top: 120px;
}
@media (max-width: 576px) {
  .bukhoor-section {
    padding: 40px 20px;
  }
}

.bukhoor-wrapper {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .bukhoor-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.bukhoor-left {
  display: flex;
  align-items: stretch;
}

.image-box {
  position: relative;
  width: 100%;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
}
.image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.image-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FFEDE2, #FFEBB8);
  padding: 45px 28px;
  border-radius: 20px;
  max-width: 260px;
  z-index: 2;
}
.image-overlay h2 {
  font-size: 48px;
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
}
.image-overlay .spec-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 47px;
  border: 1px solid rgba(29, 1, 1, 0.692);
  color: #000;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.image-overlay .spec-btn:hover {
  background: #000;
  color: #fff;
}

.bukhoor-right {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 28px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 20px;
  }
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.device-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 992px) {
  .device-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 576px) {
  .device-card {
    flex: 0 0 100%;
  }
}

.device-image {
  background: #fdeee5;
  padding: 20px;
  border-radius: 18px;
  transition: transform 0.3s ease;
}
.device-image:hover {
  transform: translateY(-6px);
}
.device-image img {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.device-info {
  background: #f5f5f5;
  padding: 10px 0px;
  border-radius: 14px;
  text-align: left;
}
.device-info h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #3B4636;
}
.device-info a {
  font-size: 12px;
  font-weight: 600;
  color: #b88672;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .image-box {
    min-height: 360px;
  }
}
@media (max-width: 576px) {
  .image-box {
    min-height: 300px;
    max-width: 380px;
    margin: 0 auto;
  }
  .image-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 100%;
  }
  .image-overlay h2 {
    font-size: 34px;
  }
  .carousel {
    max-width: 380px;
    margin: 0 auto;
  }
}
@media (max-width: 380px) {
  .carousel,
  .image-box {
    max-width: 350px !important;
    margin: 0 auto;
  }
}
.premium-aroma-section {
  padding: 65px 20px 75px;
  background: #ffffff;
}
@media (max-width: 576px) {
  .premium-aroma-section {
    padding: 40px 20px 40px;
  }
}

.section-title {
  text-align: left;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  cursor: default;
  background: #3A4636;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 35px;
  }
}
.products-wrapper {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.product-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 42px;
       column-gap: 42px;
  row-gap: 42px;
}

.product-card {
  text-align: center;
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card img {
  width: 100%;
  max-width: 110px;
  height: 150px;
  margin-bottom: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #dedede;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.product-card p {
  font-size: 16px;
  color: #3B4636;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  transition: color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.product-card:hover img {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.product-card:hover p {
  color: #222;
}

.product-card-rht {
  text-align: center;
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card-rht img {
  width: 100%;
  max-width: 95px;
  height: 100px;
  margin-bottom: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.product-card-rht p {
  font-size: 16px;
  color: #3B4636;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  transition: color 0.35s ease;
}
.product-card-rht:hover {
  transform: translateY(-4px);
}
.product-card-rht:hover img {
  transform: scale(1.06);
}
.product-card-rht:hover p {
  color: #222;
}

.product-card-rht.aroma img {
  max-width: 140px;
  height: 150px;
}

.check-more {
  margin-top: 42px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #3B4636;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  left: 160px;
}
@media (max-width: 576px) {
  .check-more {
    left: 0;
  }
}
.check-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1.5px;
  background: #3B4636;
  transition: width 0.35s ease;
}
.check-more:hover {
  color: #3B4636;
  font-weight: 700;
  transition: ease-in-out 0.5s;
}
.check-more:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .products-wrapper {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .products-wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .product-grid {
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 34px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card img,
  .product-card-rht img {
    max-width: 155px;
  }
}
@media (hover: none) {
  .product-card:hover,
  .product-card-rht:hover {
    transform: none;
    box-shadow: none;
  }
  .product-card:hover img,
  .product-card-rht:hover img {
    transform: none;
    box-shadow: none;
  }
}
.sanitizer-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media (max-width: 1369px) {
  .sanitizer-hero {
    min-height: 520px !important;
  }
}
@media (max-width: 1699px) {
  .sanitizer-hero {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .sanitizer-hero {
    min-height: 460px !important;
  }
}
@media (max-width: 480px) {
  .sanitizer-hero {
    min-height: 315px;
  }
}
.sanitizer-hero .sanitizer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(219, 219, 219, 0.35), rgba(216, 216, 216, 0.15));
  z-index: 1;
}
.sanitizer-hero .sanitizer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .sanitizer-hero .sanitizer-container {
    justify-content: center;
  }
}
.sanitizer-hero .sanitizer-glass-card {
  max-width: 420px;
  padding: 32px 34px;
  border-radius: 18px;
  background: rgba(90, 100, 85, 0.44);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
@media (max-width: 768px) {
  .sanitizer-hero .sanitizer-glass-card {
    max-width: 100%;
    padding: 26px;
  }
}
.sanitizer-hero .sanitizer-glass-card h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .sanitizer-hero .sanitizer-glass-card h2 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .sanitizer-hero .sanitizer-glass-card h2 {
    font-size: 22px;
  }
}
.sanitizer-hero .sanitizer-glass-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  opacity: 0.95;
}
@media (max-width: 480px) {
  .sanitizer-hero .sanitizer-glass-card p {
    font-size: 13.5px;
  }
}

.about-adaman {
  background: #fbefe6;
}

.about-container {
  max-width: 1250px;
  margin: auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.about-left .about-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #424C39;
  margin-bottom: 5px;
  display: inline-block;
}
.about-left h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: #76534C;
  margin-bottom: 24px;
}
.about-left h2 span {
  color: #1f9d5c;
  font-weight: 600;
}
.about-left p {
  max-width: 520px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #475D52;
}
@media (max-width: 576px) {
  .about-left p {
    text-align: justify;
    font-size: 12px;
  }
}

.about-right {
  background: #fde6d6;
  border-radius: 14px;
  padding: 32px;
  align-content: center;
}
.about-right h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #76534C;
}
.about-right h6 {
  font-size: 13px;
  font-weight: 500;
  color: #1f9d5c;
}
.about-right .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-right .why-item {
  display: flex;
  align-items: normal;
  gap: 12px;
}
.about-right .why-item .icon img {
  width: 38px;
  height: 38px;
  background: #1f9d5c;
  border-radius: 50%;
  padding: 2px;
}
.about-right .why-item p {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
}

.about-footer {
  background: #3c4b36;
  color: #d9dfd2;
}

.footer-container {
  max-width: 1250px;
  margin: auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-left p {
  max-width: 520px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: #FFEEE3;
}
.footer-left .socials {
  display: flex;
  gap: 14px;
}
.footer-left .socials .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-left .socials .social::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
.footer-left .socials .social:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.footer-left .socials .facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0f5bd8);
}
.footer-left .socials .twitter:hover {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}
.footer-left .socials .instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.footer-left .socials .youtube:hover {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}
.footer-left .socials .facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7h-2v-3h2v-2.3c0-2 1.2-3.1 3-3.1.9 0 1.8.1 1.8.1v2h-1c-1 0-1.3.6-1.3 1.2V12h2.6l-.4 3h-2.2v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E");
}
.footer-left .socials .twitter::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.9 2H22l-7.4 8.5L23 22h-6.5l-5.1-6.6L5.8 22H2.7l7.9-9.1L1 2h6.7l4.6 6L18.9 2zm-1.1 18h1.9L7.3 4H5.2l12.6 16z'/%3E%3C/svg%3E");
}
.footer-left .socials .instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm10 2c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3h10zm-5 3.5A4.5 4.5 0 1 0 16.5 12 4.5 4.5 0 0 0 12 7.5zm0 7.4a2.9 2.9 0 1 1 2.9-2.9A2.9 2.9 0 0 1 12 14.9zm4.7-7.9a1.1 1.1 0 1 1-1.1-1.1 1.1 1.1 0 0 1 1.1 1.1z'/%3E%3C/svg%3E");
}
.footer-left .socials .youtube::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8zM9.5 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.footer-links .links-col h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
}
.footer-links .links-col a {
  display: block;
  font-size: 15px;
  color: #FFEEE3;
  margin-bottom: 10px;
  cursor: pointer;
}

.copyright {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  padding: 20px;
  color: #FFEEE3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .about-container {
    gap: 5px;
  }
  .about-left h2 {
    font-size: 20px;
  }
  .about-right {
    padding: 10px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    padding: 40px 20px 40px;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* BACKGROUND IMAGE + OVERLAY */
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
}
.hero-section .hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgba(40, 40, 40, 0.6), rgba(200, 169, 126, 0.4));
  z-index: 2;
}
.hero-section .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-section .decorative-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(80px);
  animation: float 12s ease-in-out infinite;
}
.hero-section .decorative-shapes .shape.shape1 {
  width: 250px;
  height: 250px;
  background: rgba(200, 169, 126, 0.6);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.hero-section .decorative-shapes .shape.shape2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  top: 50%;
  left: 75%;
  animation-delay: 3s;
}
.hero-section .decorative-shapes .shape.shape3 {
  width: 150px;
  height: 150px;
  background: rgba(240, 230, 210, 0.5);
  top: 70%;
  left: 30%;
  animation-delay: 6s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(45deg);
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
  color: #fff;
}
.hero-section .hero-content .breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInUp 1s forwards;
}
.hero-section .hero-content .breadcrumbs a {
  color: #f0e6d2;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-section .hero-content .breadcrumbs a:hover {
  color: #fff;
}
.hero-section .hero-content .breadcrumbs span {
  margin: 0 5px;
  color: #ddd;
}
.hero-section .hero-content .breadcrumbs .current {
  font-weight: 600;
  color: #fff;
}
.hero-section .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s 0.5s forwards;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
  color: #f0e6d2;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s 0.8s forwards;
}
.hero-section .hero-content .hero-btn {
  display: inline-block;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #b3735e;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s 1.1s forwards;
}
.hero-section .hero-content .hero-btn:hover {
  background: #bd7d67;
  color: #ebebeb;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    text-align: center;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    min-height: 30vh;
  }
  .hero-section .hero-content {
    padding: 20px;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section .hero-content .hero-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}
.product-section {
  background: #f6f4f2;
  padding: 60px 20px;
}
.product-section .container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 30px;
}
@media (max-width: 900px) {
  .product-section .container {
    flex-direction: column;
    height: auto;
  }
}
.product-section .sidebar {
  width: 280px;
  background: rgba(245, 228, 217, 0.95);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 20px;
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.product-section .sidebar ul {
  list-style: none;
  padding: 0;
}
.product-section .sidebar ul li {
  padding: 14px 18px;
  margin-top: 8px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
  color: #4b3c2f;
  transition: 0.35s;
}
.product-section .sidebar ul li:hover, .product-section .sidebar ul li.active {
  background: linear-gradient(135deg, #947f60, #a4796d);
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .product-section .sidebar {
    width: 100%;
    position: relative;
  }
  .product-section .sidebar ul {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
  .product-section .sidebar ul li {
    white-space: nowrap;
  }
}
.product-section .products-wrap {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}
.product-section .products-wrap::-webkit-scrollbar {
  width: 6px;
}
.product-section .products-wrap::-webkit-scrollbar-thumb {
  background: #c8a97e;
  border-radius: 10px;
}
.product-section .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  padding-bottom: 40px;
}
.product-section .product-tile {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(245, 245, 245, 0.95));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: 0.45s;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.product-section .product-tile:hover {
  transform: translateY(-14px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}
.product-section .product-tile .product-tile-img {
  height: 235px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(220, 220, 220), rgb(220, 220, 220));
}
.product-section .product-tile .product-tile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-section .product-tile:hover img {
  transform: scale(1.12);
}
.product-section .product-tile .product-tile-info {
  padding: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgb(246, 244, 242), rgb(220, 220, 220));
}
.product-section .product-tile .product-tile-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #3B4636;
}
.product-section .product-tile .product-tile-info .tile-btn {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #c9a36b, #9f6e45);
}

.adaman-product-section {
  padding: 60px 20px;
  background: radial-gradient(900px 420px at 12% 18%, rgba(194, 162, 106, 0.08), transparent), #f6f4ef;
}

.adaman-product-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .adaman-product-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.adaman-product-media {
  position: relative;
  padding: 90px;
  border-radius: 40px;
  background: linear-gradient(145deg, #ffffff, #f1efe9);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(194, 162, 106, 0.25);
  overflow: hidden;
}
.adaman-product-media img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 10px rgba(0, 0, 0, 0.18));
}
.adaman-product-media .media-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(194, 162, 106, 0.25), transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.adaman-product-content {
  max-width: 560px;
}

.adaman-product-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2a26a;
  border: 1.5px solid rgba(194, 162, 106, 0.35);
  border-radius: 20px;
  margin-bottom: 18px;
}

.adaman-product-title {
  text-align: left;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 30px;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  cursor: default;
  background: #3A4636;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .adaman-product-title {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 35px;
  }
}
.adaman-product-description {
  font-size: 17px;
  line-height: 1.9;
  color: #6b6b6b;
}

/* ================= SPECIFICATIONS ================= */
.adaman-product-specs {
  margin-top: 40px;
}
@media (max-width: 576px) {
  .adaman-product-specs {
    margin-top: 30px;
  }
}

.specs-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.specs-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 600px) {
  .specs-list {
    grid-template-columns: 1fr;
  }
}
.specs-list li {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(194, 162, 106, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.specs-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(194, 162, 106, 0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  z-index: 0;
}
.specs-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(194, 162, 106, 0.4), 0 0 25px rgba(194, 162, 106, 0.25);
}
.specs-list li:hover::before {
  transform: translateX(120%);
}
.specs-list li span,
.specs-list li strong {
  position: relative;
  z-index: 1;
}
.specs-list li span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.specs-list li strong {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.adaman-product-media,
.adaman-product-content {
  opacity: 0;
  transform: translateY(50px);
  animation: adamanReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.adaman-product-content {
  animation-delay: 0.25s;
}

@keyframes adamanReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-section {
  min-height: 100vh;
  padding: 60px 20px 60px;
  background: linear-gradient(90deg, rgba(164, 121, 109, 0.3215686275), rgba(200, 169, 126, 0.3098039216), rgba(245, 228, 217, 0.4588235294));
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}
.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: none;
}
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 260px;
  }
}

.modern-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 70px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.modern-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.modern-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(10%) contrast(1.05) saturate(1.05);
}
@media (max-width: 768px) {
  .modern-map iframe {
    height: 260px;
  }
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(164, 121, 109, 0.25), rgba(200, 169, 126, 0.15), rgba(245, 228, 217, 0.15));
  pointer-events: none;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.map-pin span {
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 30%, #f5e4d9, #a4796d);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: block;
  box-shadow: 0 15px 35px rgba(164, 121, 109, 0.6);
  animation: floatPin 2.5s ease-in-out infinite;
}
.map-pin span::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
}

@keyframes floatPin {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }
}
@media (max-width: 576px) {
  .contact-container {
    gap: 20px;
  }
}

.contact-info {
  color: #3c2c22;
}
.contact-info h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}
.contact-info .info-list {
  list-style: none;
  padding: 0;
}
.contact-info .info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
}
.contact-info .info-list li span {
  font-size: 22px;
}
.contact-info .info-list li strong {
  display: block;
  font-size: 15px;
}
.contact-info .info-list li p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 576px) {
  .contact-info h2 {
    font-size: 20px;
  }
  .contact-info p {
    font-size: 13px;
  }
  .contact-form h3 {
    font-size: 18px !important;
  }
}
.contact-form {
  padding: 40px;
  border-radius: 22px;
  background: rgba(164, 121, 109, 0.24);
}
@media (max-width: 576px) {
  .contact-form {
    padding: 20px;
  }
}
.contact-form h3 {
  font-size: 26px;
  color: #3c2c22;
  margin-bottom: 30px;
}

.input-group {
  position: relative;
  margin-bottom: 26px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 15px;
  border-radius: 14px !important;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.37);
  color: #3c2c22;
}
.input-group input:focus,
.input-group textarea:focus {
  background: rgba(255, 255, 255, 0.25);
}
.input-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #3c2c22;
  pointer-events: none;
  transition: 0.25s ease;
}
.input-group input:not(:-moz-placeholder) + label, .input-group textarea:not(:-moz-placeholder) + label {
  top: 0px;
  font-size: 12px;
  color: #3c2c22;
  background: linear-gradient(90deg, rgba(164, 121, 109, 0.3215686275), rgba(200, 169, 126, 0.3098039216), rgba(245, 228, 217, 0.4588235294));
  padding: 0 8px;
  border-radius: 6px !important;
}
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: 0px;
  font-size: 12px;
  color: #3c2c22;
  background: linear-gradient(90deg, rgba(164, 121, 109, 0.3215686275), rgba(200, 169, 126, 0.3098039216), rgba(245, 228, 217, 0.4588235294));
  padding: 0 8px;
  border-radius: 6px !important;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #f3f3f3;
  background: linear-gradient(135deg, rgba(164, 121, 109, 0.5490196078), #a4796d);
  transition: 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(164, 121, 109, 0.5490196078);
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  color: #0f2901;
  display: none;
}

.exact-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
  pointer-events: none;
}
.exact-pin span {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 30% 30%, #f5e4d9, #a4796d);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: block;
  box-shadow: 0 15px 35px rgba(164, 121, 109, 0.6), 0 0 0 8px rgba(164, 121, 109, 0.15);
  animation: pinFloat 2.2s ease-in-out infinite;
}
.exact-pin span::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 11px;
}

@keyframes pinFloat {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-7px);
  }
}
.adaman-about {
  padding: 60px 20px;
  background: radial-gradient(circle at top right, rgba(164, 121, 109, 0.35), transparent 45%), radial-gradient(circle at bottom left, rgba(164, 121, 109, 0.2), transparent 50%), linear-gradient(160deg, #F5E4D9, #efe0d6);
  color: #3b2b25;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .adaman-about {
    padding: 40px 16px;
  }
}
.adaman-about .about-container2 {
  max-width: 1200px;
  margin: auto;
}
.adaman-about .about-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.adaman-about .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(164, 121, 109, 0.2);
  color: #A4796D;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.adaman-about .about-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .adaman-about .about-title {
    font-size: clamp(20px, 1vw, 24px);
  }
}
.adaman-about .about-title span {
  color: #A4796D;
  position: relative;
}
.adaman-about .about-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #A4796D, transparent);
  border-radius: 10px;
}
.adaman-about .about-text {
  font-size: 16.5px;
  line-height: 1.9;
  color: #5a433b;
  margin-bottom: 18px;
}
@media (max-width: 576px) {
  .adaman-about .about-text {
    font-size: 13.5px;
  }
}
.adaman-about .about-text.light {
  color: #7a5d53;
}
.adaman-about .about-stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .adaman-about .about-stats {
    margin-top: 25px;
    gap: 15px;
  }
}
.adaman-about .stat {
  min-width: 180px;
  padding: 26px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(164, 121, 109, 0.35);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}
.adaman-about .stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(164, 121, 109, 0.15), transparent);
  opacity: 0;
  transition: 0.5s;
}
.adaman-about .stat:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 40px rgba(164, 121, 109, 0.35);
}
.adaman-about .stat:hover::before {
  opacity: 1;
}
.adaman-about .stat h4 {
  font-size: 34px;
  font-weight: 800;
  color: #A4796D;
  margin-bottom: 6px;
}
@media (max-width: 576px) {
  .adaman-about .stat h4 {
    font-size: 20px;
  }
}
.adaman-about .stat span {
  font-size: 13.5px;
  letter-spacing: 0.4px;
  color: #6b4f46;
}
.adaman-about .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.adaman-about .fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.adaman-about-video {
  position: relative;
  height: 80vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .adaman-about-video {
    height: 50vh;
    min-height: 440px;
    padding: 0 16px;
  }
}
.adaman-about-video .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) contrast(1.05);
}
.adaman-about-video .video-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.adaman-about-video .video-gold-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(164, 121, 109, 0.45), transparent 45%), radial-gradient(circle at bottom left, rgba(164, 121, 109, 0.35), transparent 55%);
  z-index: 2;
}
.adaman-about-video .video-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 40px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .adaman-about-video .video-content {
    padding: 20px;
  }
}
.adaman-about-video .video-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 26px;
  border-radius: 50px;
  background: rgba(164, 121, 109, 0.28);
  color: #F5E4D9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.adaman-about-video h2 {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .adaman-about-video h2 {
    font-size: clamp(22px, 1.5vw, 32px);
  }
}
.adaman-about-video h2 span {
  color: #F5E4D9;
  position: relative;
}
.adaman-about-video h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #A4796D, transparent);
  border-radius: 10px;
}
.adaman-about-video p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #f3e6df;
  max-width: 680px;
  margin: auto;
}
@media (max-width: 576px) {
  .adaman-about-video p {
    font-size: 13.5px;
  }
}
@media (max-width: 768px) {
  .adaman-about-video .bg-video {
    filter: brightness(0.7);
  }
}

/* ===========================
   MISSION / VISION 
=========================== */
.adaman-mv {
  padding: 60px 20px;
  background: linear-gradient(180deg, #F5E4D9, #f0dbcf);
}
@media (max-width: 768px) {
  .adaman-mv {
    padding: 40px 16px;
  }
}
.adaman-mv .mv-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .adaman-mv .mv-container {
    grid-template-columns: 1fr;
  }
}
.adaman-mv .mv-card {
  position: relative;
  padding: 48px 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(164, 121, 109, 0.35);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  transition: 0.5s ease;
  overflow: hidden;
}
@media (max-width: 576px) {
  .adaman-mv .mv-card {
    padding: 25px 25px;
  }
}
.adaman-mv .mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent, rgba(164, 121, 109, 0.18), transparent);
  opacity: 0;
  transition: 0.6s;
}
.adaman-mv .mv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(164, 121, 109, 0.35);
}
.adaman-mv .mv-card:hover::before {
  opacity: 1;
}
.adaman-mv .mv-card .mv-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(164, 121, 109, 0.22);
  color: #A4796D;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.adaman-mv .mv-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #3b2b25;
  line-height: 1.35;
}
@media (max-width: 576px) {
  .adaman-mv .mv-card h3 {
    font-size: 20px;
  }
}
.adaman-mv .mv-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #6a4e45;
}
@media (max-width: 576px) {
  .adaman-mv .mv-card p {
    font-size: 13px;
  }
}
.adaman-mv .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.adaman-mv .fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-section {
  background: #ffffff;
  padding: 60px 80px;
  color: #3b2b25;
}
@media (max-width: 576px) {
  .testimonial-section {
    padding: 35px 20px;
  }
}

.testimonial-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
@media (max-width: 576px) {
  .testimonial-header {
    margin: 0 auto 25px;
  }
}
.testimonial-header h2 {
  font-size: 42px;
  color: #3b2b25;
}
@media (max-width: 576px) {
  .testimonial-header h2 {
    font-size: 20px !important;
  }
}
.testimonial-header p {
  color: #58423a;
}
@media (max-width: 576px) {
  .testimonial-header p {
    font-size: 13px !important;
  }
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  display: flex;
  align-items: stretch;
}

.glide__slide {
  display: flex;
  height: auto;
  min-height: 100%;
}

.testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(245, 228, 217, 0.85), rgba(255, 255, 255, 0.65));
  color: #111;
  border: 1px solid rgba(164, 121, 109, 0.35);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 100%;
}
@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 25px;
    text-align: justify;
  }
}

.quote {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
@media (max-width: 576px) {
  .quote {
    font-size: 13.5px;
  }
}

.client {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.client h4 {
  font-size: 15px;
  margin: 0;
}
.client span {
  font-size: 13px;
  color: #555;
}

.glide__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.glide__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.glide__bullets {
  margin-top: 10px;
  text-align: center;
}
.glide__bullets .glide__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  margin: 0 6px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.glide__bullets .glide__bullet--active {
  background: #A4796D;
  transform: scale(1.35);
}

.adaman-backtop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  background: radial-gradient(circle at top, rgb(30.3, 30.3, 30.3), #0f0f0f);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(164, 121, 109, 0.4);
}
.adaman-backtop:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 18px rgba(164, 121, 109, 0.35);
  transform: translateY(0) scale(1.05);
}
.adaman-backtop:active {
  transform: scale(0.95);
}
.adaman-backtop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.adaman-backtop .arrow {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
  color: #A4796D;
  line-height: 1;
  z-index: 2;
}

.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}

.progress-ring__track {
  stroke: rgba(164, 121, 109, 0.25);
}

.progress-ring__circle {
  stroke: #A4796D;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset 0.2s linear;
}

@media (max-width: 768px) {
  .adaman-backtop {
    width: 60px;
    height: 60px;
    bottom: 18px;
    right: 18px;
  }
  .progress-ring {
    width: 55px;
    height: 55px;
  }
}/*# sourceMappingURL=style.css.map */