/* ========================================
   CSS VARIABLES
======================================== */

:root {
  /* Brand Colors */
  --color-primary: #18492c;
  --color-primary-dark: #071a12;
  --color-primary-darker: #02110b;
  --color-primary-light: #2c7b4d;
  --color-accent: #c8a96a;
  --color-accent-light: #fff3c4;
  --color-accent-dark: #e6c27a;
  --color-text-dark: #171717;
  --color-text-muted: #7b7b7b;
  --color-bg-light: #f8f8f5;

  /* Layout Constants */
  --blog-container: 87.5rem; /* 1400px */
  --blog-space-x: 1.5rem; /* 24px */

  /* Anim / Pulse Position Defaults */
  --x: 50%;
  --y: 50%;
}

/* ========================================
   GLOBAL STYLES
======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

/* ========================================
   PAGE LAYOUT
======================================== */

.blog-navbar,
.blog-grid,
.hero-content,
.lux-footer .container {
  width: min(100% - (var(--blog-space-x) * 2), var(--blog-container));
  margin-inline: auto;
}

.container {
  max-width: 87.5rem; /* 1400px */
  width: 100%;
  padding: 0 3.75rem; /* 60px */
  margin: 0 auto;
}

/* ========================================
   BLOG HERO
======================================== */

.hero-section {
  width: 100%;
  aspect-ratio: 21 / 9;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.12) contrast(1.04) brightness(0.98);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.02) 38%,
    transparent 60%
  );
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 32.5rem; /* 520px */
  height: 32.5rem; /* 520px */
  top: -8.75rem; /* -140px */
  left: -11.25rem; /* -180px */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.03) 38%,
    transparent 72%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7.5rem; /* 120px */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.04) 60%,
    rgba(255, 255, 255, 0.10) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.floating-logo {
  position: absolute;
  top: 2.625rem; /* 42px */
  left: 5.625rem; /* 90px */
  width: 5.5rem; /* 88px */
  height: 5.5rem; /* 88px */
  border-radius: 1.875rem; /* 30px */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  overflow: hidden;
  box-shadow:
    0 0.625rem 1.875rem rgba(0, 0, 0, 0.10),
    0 1.5625rem 4.375rem rgba(24, 73, 44, 0.12);
  transition: 0.55s cubic-bezier(.19, 1, .22, 1);
}

.floating-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.35),
    transparent 58%
  );
  opacity: 0.9;
  pointer-events: none;
}

.floating-logo::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(74, 161, 106, 0.18),
    transparent 72%
  );
  opacity: 0;
  transition: 0.55s ease;
}

.floating-logo img {
  width: 3.375rem; /* 54px */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0.5rem 1.125rem rgba(0, 0, 0, 0.18));
  transition: 0.55s cubic-bezier(.19, 1, .22, 1);
  position: relative;
  z-index: 2;
}

.floating-logo:hover {
  transform: translateY(-0.5rem) scale(1.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 1.125rem 2.8125rem rgba(0, 0, 0, 0.14),
    0 2.1875rem 5.625rem rgba(24, 73, 44, 0.22);
}

.floating-logo:hover::after {
  opacity: 1;
}

.floating-logo:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  max-width: 90.625rem; /* 1450px */
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.375rem 5.625rem; /* 70px 90px */
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 108px;
  line-height: 0.92;
  font-weight: 600;
  color: #18492c;
  margin-bottom: 2rem; /* 32px */
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  animation: fadeUp 1s ease;
}

.hero-content p {
  width: 36.25rem; /* 580px */
  font-size: 21px;
  line-height: 1.9;
  color: #2e2e2e;
  font-weight: 400;
  animation: fadeUp 1.2s ease;
}

.hero-mini-title {
  width: max-content;
  color: #4e7d5a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem; /* 24px */
  padding: 0.625rem 1.125rem; /* 10px 18px */
  border-radius: 2.5rem; /* 40px */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(24, 73, 44, 0.08);
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(2.1875rem); /* 35px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   BLOG GRID
======================================== */

.blogs-wrapper {
  width: 100%;
  position: relative;
  z-index: 30;
  margin-top: -9.375rem; /* -150px */
  padding-bottom: 8.75rem; /* 140px */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #f8f8f5 12%,
    #ffffff 24%
  );
}

.blog-navbar {
  max-width: 88.75rem; /* 1420px */
  margin: auto auto 5.9375rem; /* 95px bottom gap */
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: visible;
  flex-wrap: wrap;
  gap: 0.875rem; /* 14px */
  padding: 1.5rem 1.625rem; /* 24px 26px */
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  border-radius: 2.25rem; /* 36px */
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1.875rem 5rem rgba(0, 0, 0, 0.10),
    0 0.625rem 1.5625rem rgba(24, 73, 44, 0.05),
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.95);
}

.blog-navbar::before {
  content: "";
  position: absolute;
  width: 26.25rem; /* 420px */
  height: 26.25rem; /* 420px */
  left: -10rem; /* -160px */
  top: -11.25rem; /* -180px */
  background: radial-gradient(
    circle,
    rgba(191, 255, 183, 0.16),
    transparent 70%
  );
  pointer-events: none;
}

.blog-grid {
  max-width: 92.5rem; /* 1480px */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.625rem; /* 42px */
  align-items: start;
  grid-auto-flow: row;
  isolation: isolate;
  padding: 1.5625rem 1.5rem 7.5rem; /* 25px 24px 120px */
  position: relative;
}

/* ========================================
   BLOG CARDS
======================================== */

.blog-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(250, 250, 246, 0.95) 100%
  );
  border-radius: 2.625rem; /* 42px */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1.5625rem 5rem rgba(0, 0, 0, 0.08),
    0 0.625rem 1.875rem rgba(24, 73, 44, 0.04),
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(22px);
  contain: layout paint;
  backface-visibility: hidden;
  transform-origin: center center;
  isolation: isolate;
  z-index: 1;
  /* Stagger Reveal Prep */
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-card.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.blog-card.revealed:hover {
  z-index: 5;
  transform: translateY(-4px) !important;
  transition: transform 0.25s ease !important;
}

.blog-card.revealed:not(:hover) {
  transition: transform 0.25s ease, opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.625rem; /* 42px */
  border: 1px solid rgba(98, 188, 124, 0.22);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(98, 188, 124, 0.04)
  );
  opacity: 0;
  transition: 0.55s ease;
  pointer-events: none;
}

.blog-card::after {
  content: "";
  position: absolute;
  width: 26.25rem; /* 420px */
  height: 26.25rem; /* 420px */
  right: -12.5rem; /* -200px */
  top: -12.5rem; /* -200px */
  background: radial-gradient(
    circle,
    rgba(194, 255, 188, 0.20),
    transparent 72%
  );
  opacity: 0;
  transition: 0.6s ease;
  z-index: -1;
}

.blog-card img {
  width: 100%;
  height: 18.125rem; /* 290px */
  object-fit: cover;
  transition: transform 0.35s ease !important;
  will-change: transform;
}

.blog-card:hover img {
  transform: scale(1.02) !important;
}

.blog-card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.125rem; /* 290px */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.blog-content {
  padding: 2.125rem; /* 34px */
}

.blog-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.125rem; /* 10px 18px */
  border-radius: 3.75rem; /* 60px */
  background: linear-gradient(
    135deg,
    #edf9e9,
    #fbfff8
  );
  color: #55734f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 1.5rem; /* 24px */
  box-shadow:
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.95),
    0 0.375rem 0.875rem rgba(24, 73, 44, 0.04);
}

.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1.2px;
  color: #171717;
  margin-bottom: 1.75rem; /* 28px */
  transition: 0.45s ease;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 24px */
  color: #7b7b7b;
  font-size: 13px;
  margin-bottom: 2rem; /* 32px */
}

.hide-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(2.1875rem) scale(0.96); /* 35px */
  position: absolute;
  inset: auto;
  z-index: -1;
}

/* ========================================
   BLOG DETAILS
======================================== */
/* (Reserved for detail-specific layouts) */

/* ========================================
   BUTTONS
======================================== */



.blog-navbar button,
.blog-navbar a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.0625rem 1.875rem; /* 17px 30px */
  border-radius: 1.125rem; /* 18px */
  border: none;
  outline: none;
  background: transparent;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease !important;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
}

.blog-navbar button:hover,
.blog-navbar a:hover {
  background: #f3f5ef;
  color: #18492c;
  transform: translateY(-2px) !important;
}

/* Active filter button: No animation on hover or transition */
.blog-navbar button.active-filter,
.blog-navbar a.active-filter {
  transform: none !important;
  transition: none !important;
}

.blog-navbar button.active-filter:hover,
.blog-navbar a.active-filter:hover {
  transform: none !important;
  background: linear-gradient(
    135deg,
    #18492c 0%,
    #23633d 45%,
    #49a067 100%
  ) !important;
  color: #ffffff !important;
}

.active-filter {
  background: linear-gradient(
    135deg,
    #18492c 0%,
    #23633d 45%,
    #49a067 100%
  ) !important;
  color: #ffffff !important;
  box-shadow: 0 1.125rem 2.1875rem rgba(24, 73, 44, 0.22); /* 18px 35px */
  transform: translateY(-2px);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
  text-decoration: none;
  color: #18492c;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: 0.4s ease;
}

.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4375rem; /* -7px */
  width: 0%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #18492c,
    #4aa16a
  );
  border-radius: 1.25rem; /* 20px */
  transition: 0.45s ease;
}

.read-more:hover {
  gap: 1.125rem; /* 18px */
  color: #2d7d4f;
}

.read-more:hover::after {
  width: 100%;
}

.scroll-top-btn {
  position: fixed;
  right: 1.75rem; /* 28px */
  bottom: 1.625rem; /* 26px */
  width: 3.375rem; /* 54px */
  height: 3.375rem; /* 54px */
  border: none;
  border-radius: 1.125rem; /* 18px */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(6, 40, 23, 0.92),
    rgba(2, 18, 10, 0.96)
  );
  backdrop-filter: blur(12px);
  color: #d6b06b;
  font-size: 18px;
  z-index: 9999;
  border: 1px solid rgba(214, 176, 107, 0.18);
  box-shadow:
    0 0.625rem 1.75rem rgba(0, 0, 0, 0.18),
    inset 0 0.0625rem 0.0625rem rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  will-change: transform, opacity;
}

.scroll-top-btn.show-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.scroll-top-btn:hover {
  transform: scale(1.05) !important;
  color: #ffffff;
  border-color: rgba(214, 176, 107, 0.35);
  box-shadow:
    0 1rem 2.1875rem rgba(0, 0, 0, 0.22),
    0 0 1.125rem rgba(214, 176, 107, 0.10);
}

.scroll-top-btn i {
  transition: 0.3s ease;
}

.scroll-top-btn:hover i {
  transform: translateY(-2px);
}

.footer-visible .scroll-top-btn {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(240, 240, 240, 0.92)
  );
  color: #0b3b24;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.875rem 2.1875rem rgba(0, 0, 0, 0.18);
}

.footer-visible .scroll-top-btn:hover {
  color: #000000;
  background: #ffffff;
  box-shadow: 0 1.125rem 2.8125rem rgba(0, 0, 0, 0.24);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */

.whatsapp-float-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
}

.whatsapp-float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
  transition: transform 0.2s ease !important;
  will-change: transform;
}

.whatsapp-float-btn i {
  color: #ffffff;
  font-size: 1.875rem;
}

/* HOVER EFFECTS */
.whatsapp-float-btn:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.40) !important;
}

/* ========================================
   FOOTER
======================================== */

.lux-footer {
  overflow-x: hidden;
  padding: 3.75rem 0 1.5625rem; /* 60px 0 25px */
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  z-index: 1;
  overflow: hidden;
  filter: contrast(1.08) brightness(1.05);
  background:
    radial-gradient(circle at 50% 10%, rgba(46, 125, 50, 0.35), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(0, 150, 80, 0.18), transparent 70%),
    linear-gradient(180deg, #071a12 0%, #02110b 100%);
  isolation: isolate;
}

.lux-footer::before {
  content: "";
  position: absolute;
  top: -9.375rem; /* -150px */
  left: -9.375rem; /* -150px */
  width: 28.125rem; /* 450px */
  height: 28.125rem; /* 450px */
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15), transparent);
  filter: blur(7.5rem); /* 120px */
  z-index: 0 !important;
  pointer-events: none;
}

.lux-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 2;
}

.lux-footer .container {
  display: flex;
  justify-content: center;
  max-width: 87.5rem; /* 1400px */
  padding: 0 5rem; /* 80px */
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@keyframes gradientBreath {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

.footer-center {
  text-align: center;
  margin: 1.25rem 0 2.8125rem; /* 20px 0 45px */
  transform: translateX(-5rem); /* -80px */
  position: relative;
  z-index: 5;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* 16px */
  margin-bottom: 1.125rem; /* 18px */
}

.footer-divider span {
  width: 5.3125rem; /* 85px */
  height: 1px;
  background: #c8a96a;
  opacity: 0.85;
}

.footer-divider .dot {
  width: 0.375rem; /* 6px */
  height: 0.375rem; /* 6px */
  border-radius: 50%;
  background: #c8a96a;
  box-shadow: 0 0 0.875rem rgba(200, 169, 106, 0.75);
}

.footer-center h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.3px;
}

.footer-center p {
  font-size: 14px;
  margin-top: 0.5rem; /* 8px */
  color: #e6c27a;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: start;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  gap: 3.125rem; /* 50px */
  padding: 3.125rem 0; /* 50px */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
}

.footer-col {
  position: relative;
  width: 100%;
  max-width: 16.25rem; /* 260px */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-col:nth-child(1) {
  justify-self: start;
  max-width: 21.25rem; /* 340px */
}

/* QUICK LINKS (move right) */
.footer-col:nth-child(2) {
  justify-self: end;
  margin-left: 3.75rem; /* 60px */
}

.footer-col:nth-child(3) {
  justify-self: start;
}

.footer-col:nth-child(4) {
  justify-self: start;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #c8a96a;
  margin-bottom: 1rem; /* 16px */
}

.footer-col p {
  line-height: 1.8;
  color: #ffffff;
}

/* CONTACT TEXT - MATCH QUICK LINKS STYLE */
.footer-col:nth-child(2) p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.5rem; /* 8px */
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.625rem; /* 10px */
}

.footer-col:nth-child(2) p i {
  font-size: 12px;
  color: #c8a96a;
}

.footer-col:nth-child(2) p:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-col:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -1.875rem; /* -30px */
  top: 10%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 169, 106, 0.6),
    transparent
  );
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  list-style: none;
  font-size: 13.5px;
  margin-bottom: 0.625rem; /* 10px */
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
  transition: 0.25s ease;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  will-change: transform;
  transform: translateZ(0);
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  transition: 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #ffffff;
  transform: translateX(0.3125rem); /* 5px */
}

.footer-col ul li:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.lux-socials {
  display: flex;
  gap: 1.25rem; /* 20px */
  justify-content: center !important;
  align-items: center;
  overflow: visible;
}

.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
  width: 3.25rem; /* 52px */
  height: 3.25rem; /* 52px */
  border-radius: 1rem; /* 16px */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  isolation: isolate;
  will-change: transform;
  transform: translateZ(0);
}

.tooltip {
  position: absolute;
  top: -8.125rem; /* -130px */
  left: 50%;
  transform: translateX(-50%);
  padding: 0.625rem; /* 10px */
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
}

.tooltip-container:hover .tooltip {
  opacity: 1;
  top: -9.375rem; /* -150px */
}

.profile {
  background: #ffffff;
  border-radius: 0.875rem; /* 14px */
  padding: 0.75rem; /* 12px */
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0.625rem 1.875rem rgba(0, 0, 0, 0.15),
    0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.user {
  display: flex;
  gap: 0.625rem; /* 10px */
  align-items: center;
}

.img {
  width: 2.625rem; /* 42px */
  height: 2.625rem; /* 42px */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ddd;
  color: #111;
  background: #f5f5f5;
  border-radius: 0.5rem; /* 8px */
}

.name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.username {
  font-size: 12px;
  color: #666;
}

.about {
  font-size: 12px;
  color: #888;
  padding-top: 0.3125rem; /* 5px */
}

.icon {
  display: block;
  position: relative;
}

.layer {
  width: 3.125rem; /* 50px */
  height: 3.125rem; /* 50px */
  position: relative;
  transition: transform 0.3s ease;
}

.icon:hover .layer {
  transform: rotate(-25deg) skew(15deg);
}

.layer span {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem; /* 12px */
  border: 1px solid rgba(200, 169, 106, 0.4);
  transition: all 0.3s ease;
}

.icon:hover .layer span {
  box-shadow: 0 0 0.75rem rgba(200, 169, 106, 0.4);
}

.icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}

.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(0.25rem, -0.25rem); /* 4px */
}

.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(0.5rem, -0.5rem); /* 8px */
}

.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(0.75rem, -0.75rem); /* 12px */
}

.iconSVG {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #c8a96a;
  transition: color 0.3s ease;
}

.icon:hover .iconSVG {
  color: #ffffff;
}

.tooltip-container.instagram:hover .layer span {
  border-color: transparent;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.tooltip-container.instagram:hover .iconSVG {
  color: #fff;
}

.tooltip-container.facebook:hover .layer span {
  background: #1877f2;
  border-color: #1877f2;
}

.tooltip-container.facebook:hover .iconSVG {
  color: #fff;
}

.tooltip-container.whatsapp:hover .layer span {
  background: #25d366;
  border-color: #25d366;
}

.tooltip-container.whatsapp:hover .iconSVG {
  color: #fff;
}

.tooltip-container.youtube:hover .layer span {
  background: #ff0000;
  border-color: #ff0000;
}

.tooltip-container.youtube:hover .layer span:nth-child(1) {
  opacity: 0.2;
  transform: none;
}

.tooltip-container.youtube:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(0.25rem, -0.25rem); /* 4px */
}

.tooltip-container.youtube:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(0.5rem, -0.5rem); /* 8px */
}

.tooltip-container.youtube:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(0.75rem, -0.75rem); /* 12px */
}

.tooltip-container.youtube:hover .layer span:last-child {
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
  border-color: transparent;
}

.tooltip-container.youtube:hover .iconSVG {
  color: #fff;
}

.tooltip-container .layer {
  transition: transform 0.3s ease !important;
}

.tooltip-container:hover .layer {
  transform: translateY(-0.125rem) rotate(-25deg) skew(15deg) !important; /* -2px */
}

.tooltip-container::after {
  content: "";
  position: absolute;
  inset: -0.5rem; /* -8px */
  border-radius: 1rem; /* 16px */
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.tooltip-container:hover::after {
  opacity: 1;
}

.tooltip-container.instagram:hover::after {
  background: radial-gradient(circle, rgba(225, 48, 108, 0.35), transparent 60%);
}

.tooltip-container.facebook:hover::after {
  background: radial-gradient(circle, rgba(24, 119, 242, 0.35), transparent 60%);
}

.tooltip-container.whatsapp:hover::after {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.35), transparent 60%);
}

.tooltip-container.youtube:hover::after {
  background: radial-gradient(circle, rgba(255, 0, 0, 0.35), transparent 60%);
}

.footer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.footer-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #c8a96a;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

.footer-particles span:nth-child(1) { left: 10%; animation-duration: 12s; }
.footer-particles span:nth-child(2) { left: 20%; animation-duration: 15s; }
.footer-particles span:nth-child(3) { left: 30%; animation-duration: 10s; }
.footer-particles span:nth-child(4) { left: 40%; animation-duration: 14s; }
.footer-particles span:nth-child(5) { left: 50%; animation-duration: 11s; }
.footer-particles span:nth-child(6) { left: 60%; animation-duration: 16s; }
.footer-particles span:nth-child(7) { left: 70%; animation-duration: 13s; }
.footer-particles span:nth-child(8) { left: 80%; animation-duration: 12s; }
.footer-particles span:nth-child(9) { left: 90%; animation-duration: 15s; }
.footer-particles span:nth-child(10) { left: 95%; animation-duration: 18s; }

@keyframes floatParticle {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  20% { opacity: 0.4; }
  to {
    transform: translateY(-20%);
    opacity: 0;
  }
}

.footer-bottom {
  margin-top: 1.25rem; /* 20px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem; /* 6px */
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  width: 100%;
  position: relative;
  z-index: 5;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem; /* 8px */
}

.footer-link {
  color: #c8a96a;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #c8a96a;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link:hover::after {
  width: 100%;
}

.dot-sep {
  margin: 0 0.625rem; /* 10px */
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   MOBILE HAMBURGER MENU
======================================== */

.mobile-menu-toggle {
  display: flex !important;
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  width: clamp(42px, 5.5vw, 50px) !important;
  height: clamp(42px, 5.5vw, 50px) !important;
  border-radius: 50% !important;
  background: rgba(6, 25, 20, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    width: clamp(40px, 6vw, 44px) !important;
    height: clamp(40px, 6vw, 44px) !important;
  }
}

.mobile-menu-toggle:hover {
  background: rgba(46, 125, 50, 0.9) !important;
  transform: translateY(-2px) !important;
}

.mobile-menu-toggle.is-active {
  background: rgba(140, 220, 50, 0.18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(140, 220, 50, 0.15) !important;
  box-shadow: 0 0 18px rgba(140, 220, 50, 0.18) !important;
}

.hamburger-line {
  display: block !important;
  width: clamp(14px, 2.2vw, 18px) !important;
  height: 2px !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
  border-radius: 2px !important;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0 !important;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

.mobile-menu-overlay {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
  pointer-events: none !important;
}

.mobile-menu-overlay.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-menu-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.mobile-menu-nav {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 280px !important;
  height: 100% !important;
  height: 100dvh !important;
  background: rgba(6, 25, 20, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 80px 30px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25) !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.mobile-menu-nav::-webkit-scrollbar {
  width: 3px !important;
}
.mobile-menu-nav::-webkit-scrollbar-track {
  background: transparent !important;
}
.mobile-menu-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 99px !important;
}

.mobile-menu-overlay.is-open .mobile-menu-nav {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-menu-item {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  cursor: pointer !important;
  display: block !important;
}

.mobile-menu-item::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 10px !important;
  bottom: 10px !important;
  width: 3px !important;
  background: #8bd320 !important;
  opacity: 0 !important;
  transform: scaleY(0) !important;
  border-radius: 99px !important;
  transition: all 0.25s ease !important;
}

.mobile-menu-item:hover {
  background: rgba(140, 220, 50, 0.08) !important;
  transform: translateX(6px) !important;
  color: #a3e635 !important;
}

.mobile-menu-item:hover::before {
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

/* Active State Styles */
.mobile-menu-item.active,
.mobile-menu-item.is-active {
  background: rgba(140, 220, 50, 0.12) !important;
  border: 1px solid rgba(140, 220, 50, 0.18) !important;
  box-shadow: 0 0 18px rgba(140, 220, 50, 0.18) !important;
}

.mobile-menu-item.active::before,
.mobile-menu-item.is-active::before {
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

.mobile-menu-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  margin: 10px 0 !important;
  display: block !important;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */

@media(max-width:1200px){
  .hero-content h1 {
    font-size: 78px;
  }

  .hero-content p {
    width: 500px;
  }

  .blog-content h3 {
    font-size: 38px;
  }
}

@media(max-width:1000px){
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-float-wrapper {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .whatsapp-float-btn {
    width: 3.25rem;
    height: 3.25rem;
  }

  .whatsapp-float-btn i {
    font-size: 1.625rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .whatsapp-float-wrapper {
    bottom: 1rem;
    left: 1rem;
  }

  .whatsapp-float-btn {
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-float-btn i {
    font-size: 1.5rem;
  }

  .floating-logo {
    top: 28px;
    left: 28px;
    right: auto;
    width: 66px;
    height: 66px;
    border-radius: 22px;
  }

  .floating-logo img {
    width: 40px;
  }

  .hero-section {
    aspect-ratio: auto;
    height: 720px;
  }

  .hero-content {
    padding: 40px 28px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content p {
    width: 100%;
    font-size: 17px;
  }

  .blog-card img {
    height: 250px;
  }

  .blog-content {
    padding: 28px;
  }

  .blog-content h3 {
    font-size: 32px;
  }

  .scroll-top-btn {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
    font-size: 16px;
    border-radius: 16px;
  }

  .blogs-wrapper {
    overflow: hidden;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .blog-card {
    width: 100%;
    min-width: 0;
  }

  .blog-content h3 {
    word-break: break-word;
  }

  .blog-navbar {
    padding-inline: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col::after {
    display: none;
  }

  .socials {
    justify-content: center;
  }
}

@media(max-width:700px){
  .lux-footer {
    padding: 80px 5% 40px;
  }

  .footer-center h2 {
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Reveal & Premium Animations */
.hero-content,
.blog-navbar,
.blog-grid,
.lux-footer {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.hero-content.revealed,
.blog-navbar.revealed,
.blog-grid.revealed,
.lux-footer.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .hero-content,
  .blog-navbar,
  .blog-grid,
  .lux-footer,
  .blog-card {
    opacity: 1 !important;
    transform: none !important;
  }
}