                /* ================================================================
   REJUA ENERGY OASIS — SHARED STYLESHEET
   Production-ready, mobile-first, fully responsive
   ================================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-main:       #ffffff;
  --bg-section:    #fdf9f3;
  --bg-mid:        #f6f1e8;
  --bg-light:      #efe7da;

  /* Gold palette */
  --gold:          #c9a96e;
  --gold-light:    #b8955f;
  --gold-dim:      #8a6f45;

  /* Text palette */
  --text-dark:     #1a1814;
  --text-mid:      #2a2723;
  --text-light:    #3a352f;
  --text-sand:     #5a5247;
  --text-muted:    #7a7268;

  /* Borders / glass */
  --glass:         rgba(0,0,0,0.03);
  --glass-border:  rgba(0,0,0,0.08);











  /* Brand green */
  --green:         #40705a;
  --green-mid:     #5c8f77;

  /* Easing */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  60px;
  --space-xl:  120px;

  /* Typography */
  --ff-serif:  'Cormorant Garamond', serif;
  --ff-sans:   'Jost', sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Only show custom cursor on true pointer devices */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [class*="card"], [class*="btn"],
  select, input, textarea, .filter-btn, .reels-nav-btn, .t-nav-btn { cursor: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   3. CUSTOM CURSOR  (desktop / fine pointer only)
   ============================================================ */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: #41725D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), transform .3s var(--ease), opacity .3s;
  mix-blend-mode: multiply;
  opacity: 0;
}

#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid  #41725D;;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease);
  opacity: 0;
}

@media (pointer: fine) {
  #cursor, #cursor-ring { opacity: 1; }
}

/* ============================================================
   4. SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #41725D);
  z-index: 10000;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s var(--ease);
}

nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green);
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-logo span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  font-family: var(--ff-sans);
  font-weight: 300;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  background:white;
  padding:10px 20px;
  border-radius:10px;
}


.nav-links a {
  color: #2A361E;
  font-size: 0.72rem;
  font-weight:900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: #2A361E;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: #2A361E; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Nav CTA */
.nav-cta {
  background: white;
  border: 2px solid #2A361E;
  border-radius:25px;
  color: #2A361E;
  padding: 10px 26px;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight:400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #264236;
  color: white;
  border-color: ;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
  position: relative;
}

.ham-line {
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all 0.35s var(--ease);
  transform-origin: center;
  display: block;
}

/* Mobile menu open state */
.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,253,250,0.98);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.nav-mobile-overlay a:hover { color: var(--gold-light); }

.nav-mobile-overlay .nav-cta-mobile {
  margin-top: 16px;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  padding: 14px 40px;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}


/* ============================================================
   6. PAGE HERO (Inner Pages)
   Premium Cinematic Zoom Hero
   ============================================================ */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;

  position: relative;
  overflow: hidden;

  isolation: isolate;
}

/* ─────────────────────────
   Animated Background Layer
   ───────────────────────── */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url(image/contact-page.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  transform: scale(1);
  transform-origin: center;

  animation: cinematicHeroZoom 22s ease-in-out infinite alternate;

  will-change: transform;

  z-index: -3;
}

.about-hero::before{
    background-image: url("image/about-page.webp") !important;
}

/* ─────────────────────────
   Luxury Overlay
   ───────────────────────── */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.30) 45%,
      rgba(0,0,0,0.55) 100%
    ),
    radial-gradient(
      ellipse at 20% 60%,
      rgba(201,169,110,0.10) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(64,112,90,0.08) 0%,
      transparent 50%
    );

  backdrop-filter: blur(1px);

  z-index: -2;
  pointer-events: none;
}

/* ─────────────────────────
   Cinematic Zoom Animation
   ───────────────────────── */
@keyframes cinematicHeroZoom {

  0%{
    transform: scale(1) translate3d(0px, 0px, 0px);
  }

  25%{
    transform: scale(1.04) translate3d(-6px, -3px, 0px);
  }

  50%{
    transform: scale(1.08) translate3d(8px, -6px, 0px);
  }

  75%{
    transform: scale(1.11) translate3d(-4px, 4px, 0px);
  }

  100%{
    transform: scale(1.14) translate3d(10px, -8px, 0px);
  }
}

/* ─────────────────────────
   Content Layer
   ───────────────────────── */
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ─────────────────────────
   Label
   ───────────────────────── */
.page-hero-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;

  color: #ffffff;

  margin-bottom: 16px;

  display: flex;
  align-items: center;
  gap: 14px;

  opacity: 0;
  transform: translateY(20px);

  animation: fadeUp 1.1s ease forwards;
}

.page-hero-label::before {
  content: '';

  width: 36px;
  height: 2px;

  background: rgba(255,255,255,0.7);
}

/* ─────────────────────────
   Title
   ───────────────────────── */
.page-hero-title {
  font-family: var(--ff-serif);

  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;

  color: #ffffff;

  line-height: 1.1;

  opacity: 0;
  transform: translateY(30px);

  animation: fadeUp 1.3s ease 0.2s forwards;
}

.page-hero-title em {
  font-style: italic;
  color: #ffffff;
}

/* ─────────────────────────
   Fade Animation
   ───────────────────────── */
@keyframes fadeUp {

  from{
    opacity: 0;
    transform: translateY(30px);
  }

  to{
    opacity: 1;
    transform: translateY(0px);
  }
}

/* ─────────────────────────
   Responsive
   ───────────────────────── */
@media (max-width: 768px) {

  .page-hero {
    min-height: 42vh;
    padding: 100px 0 60px;
  }

  .page-hero::before {
    animation-duration: 28s;
  }

  .page-hero-label {
    letter-spacing: 0.32em;
  }
}


/*treatment page css for hero banner */
/* Treatment Page Special Banner */
.treatment-hero::before {
  display: none;
}

/* HTML Image Banner */
.hero-bg-img{
  position: absolute;
  background-position:top;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -3;

  animation: cinematicHeroZoom 22s ease-in-out infinite alternate;
}

/* ============================================================
   7. SECTION BASE
   ============================================================ */
section { padding: var(--space-xl) 0; position: relative; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-size: 0.70rem;
  font-weight:500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: #008000;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top:25px;
}

.section-label::before {
  content: '';
  width: 36px; height: 3px;
  background: #008000;
  flex-shrink: 0;
  border-radius:5px
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.section-title em {
   font-style: italic; 
   color: #008000; 
   font-weight:500;
  
  }

.section-body {
  font-size: 1rem;
  font-weight:400;
  color: #264236;
  line-height: 1.9;
  max-width: 540px;
}

.divider {
  width: 52px; height: 1px;
  background: linear-gradient(to right, #264236, transparent);
  margin: 36px 0;
}

/* ============================================================
   8. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.55s; }

/* Arrive animations */
.arrive-left, .arrive-right, .arrive-top, .arrive-up {
  opacity: 0;
  transition: 0.9s var(--ease);
}
.arrive-left  { transform: translateX(-60px); }
.arrive-right { transform: translateX(60px); }
.arrive-top   { transform: translateY(-60px); }
.arrive-up    { transform: translateY(60px); }
.show { opacity: 1 !important; transform: translate(0,0) !important; }
.delay2 { transition-delay: 0.35s; }

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: #2A361E;
  color: var(--bg-main);
  padding: 16px 52px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.btn-gold span { position: relative; z-index: 1; }

.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: #003800;
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease);
}

.btn-gold:hover::before { transform: translateX(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid #2A361E;
  color: #2A361E;
  padding: 14px 40px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.btn-outline:hover {
  background: #264236;
  color: var(--bg-main);
  border-color: #264236);
}

/* ============================================================
   10. FOOTER
   ============================================================ */
footer {
  background: #264236;
  border-top: 1px solid var(--glass-border);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 18px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.footer-tagline {
  font-size: 0.90rem;
  font-weight:400;
  color: var(--bg-main);
  line-height: 1.85;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.80rem;
  font-weight:400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bg-main);
  margin-bottom: 22px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.90rem;
  font-weight:400;
  color: var(--bg-main);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: #E4EFE4; }

.footer-contact-item {
  font-size: 0.82rem;
  color: var(--bg-main);
  margin-bottom: 14px;
  line-height: 1.65;
}
.footer-contact-item strong {
  color: var(--bg-main);
  display: block;
  font-weight: 400;
  margin-bottom: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--bg-main);
  letter-spacing: 0.08em;
  font-weight: 400;
}

.footer-socials { display: flex; gap: 16px; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--bg-main);
  border-radius: ;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-main);
  text-decoration: none;
  font-size: 0.80rem;
  letter-spacing: 0;
  transition: all 0.3s var(--ease);
}


/* ============================================================
   11. MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background: #41725D ;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  opacity: 1;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Rejua green marquee */
.rejua-marquee {
  background: #41725D;
  border-top: 1px solid rgba(64,112,90,0.08);
  border-bottom: 1px solid rgba(64,112,90,0.08);
  padding: 28px 0;
  overflow: hidden;
}

.rejua-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: rejuaFlow 44s linear infinite;
  will-change: transform;
}

.rejua-item {
  flex-shrink: 0;
  padding: 0 30px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.rejua-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  opacity: 0.55;
  flex-shrink: 0;
}

@keyframes rejuaFlow {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

/* ============================================================
   12. PAGE TRANSITIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   13. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 0; }

/* ============================================================
   14. RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 22px 40px; }
  nav.scrolled { padding: 14px 40px; }
  .container { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .nav-links { gap: 28px; }
}

/* ============================================================
   15. RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --space-xl: 72px; --space-lg: 24px; }

  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .container { padding: 0 20px; }
  section { padding: 72px 0; }

  .page-hero { padding: 100px 0 56px; min-height: 42vh; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }

  .btn-gold { padding: 15px 36px; }

  .rejua-item { font-size: 16px; padding: 0 22px; letter-spacing: 2.5px; }
  .rejua-dot  { width: 5px; height: 5px; }
}

/* ============================================================
   16. RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .nav-logo img { height: 44px; }

  .rejua-item { font-size: 13px; padding: 0 16px; letter-spacing: 1.5px; }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
        
        
        
        
        
