@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

  /* ══════════════════════════════════════════════════════════════════════════
   FOOTER STYLES
══════════════════════════════════════════════════════════════════════════ */
  .lux-footer {
    background-color: #0c2c17;
    /* Updated to Deep Green */
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(211, 159, 60, 0.2);
    /* Gold */
    position: relative;
    overflow: hidden;
  }

  .lux-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(211, 159, 60, 0.05) 0%, transparent 45%),
      radial-gradient(circle at 90% 30%, rgba(155, 120, 38, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
  }

  .lux-footer-topline {
    height: 1px;
    background: linear-gradient(to right, transparent, #d39f3c, transparent);
    /* Gold */
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .lux-footer-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
  }

  .lux-footer-brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(211, 159, 60, 0.35);
    padding: 3px;
    margin-bottom: 16px;
    display: block;
  }

  .lux-footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f5f0e8;
    margin: 0 0 14px;
  }

  .lux-footer-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #b4c5b9;
    /* Tinted Green-Grey */
    line-height: 1.8;
    margin: 0 0 24px;
  }

  .lux-footer-social {
    display: flex;
    gap: 10px;
  }

  .lux-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(211, 159, 60, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4c5b9;
    /* Tinted Green-Grey */
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }

  .lux-footer-social a:hover {
    background: rgba(211, 159, 60, 0.1);
    border-color: #d39f3c;
    color: #d39f3c;
    /* Gold */
  }

  .lux-footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5f0e8;
    margin: 0 0 6px;
  }

  .lux-footer-heading-line {
    width: 32px;
    height: 1px;
    background: #d39f3c;
    /* Gold */
    margin-bottom: 22px;
  }

  .lux-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .lux-footer-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b4c5b9;
    /* Tinted Green-Grey */
    text-decoration: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
  }

  .lux-footer-links a::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: rgba(211, 159, 60, 0.4);
    flex-shrink: 0;
    transition: width 0.3s, background 0.3s;
  }

  .lux-footer-links a:hover {
    color: #d39f3c;
  }

  .lux-footer-links a:hover::before {
    width: 20px;
    background: #d39f3c;
  }

  .lux-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .lux-footer-contact-item i {
    color: #d39f3c;
    /* Gold */
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
  }

  .lux-footer-contact-item span,
  .lux-footer-contact-item a {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #b4c5b9;
    /* Tinted Green-Grey */
    line-height: 1.65;
    text-decoration: none;
    transition: color 0.3s;
  }

  .lux-footer-contact-item a:hover {
    color: #d39f3c;
  }

  .lux-footer-map {
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(211, 159, 60, 0.2);
    filter: grayscale(30%) sepia(10%);
    transition: filter 0.3s;
  }

  .lux-footer-map:hover {
    filter: grayscale(0%) sepia(0%);
  }

  .lux-footer-map iframe {
    display: block;
    width: 100%;
    height: 160px;
    border: none;
  }

  .lux-footer-bottom {
    border-top: 1px solid rgba(211, 159, 60, 0.1);
    position: relative;
    z-index: 2;
  }

  .lux-footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .lux-footer-copy {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #b4c5b9;
    /* Tinted Green-Grey */
    margin: 0;
  }

  .lux-footer-copy a {
    color: #d39f3c;
    /* Gold */
    text-decoration: none;
    transition: color 0.3s;
  }

  .lux-footer-copy a:hover {
    color: #f5f0e8;
  }

  /* ── Back to Top ── */
  .lux-back-top {
    position: fixed;
    bottom: 100px;
    right: 22px;
    z-index: 990;
    width: 42px;
    height: 42px;
    background: rgba(12, 44, 23, 0.9);
    /* Deep Green */
    border: 1px solid rgba(211, 159, 60, 0.4);
    border-radius: 2px;
    color: #d39f3c;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }

  .lux-back-top:hover {
    background: rgba(211, 159, 60, 0.12);
    border-color: #d39f3c;
    transform: translateY(-3px);
  }

  .lux-back-top.visible {
    display: flex;
  }

  /* ── WhatsApp Button (Luxury Edition) ── */
  .lux-whatsapp {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 991;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c2c17 0%, #081f10 100%);
    /* Deep Green Gradient */
    border: 1px solid rgba(211, 159, 60, 0.4);
    color: #d39f3c;
    /* Gold */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: goldPulse 2.5s infinite;
  }

  .lux-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    border-color: #d39f3c;
    color: #f5f0e8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(211, 159, 60, 0.25);
    animation: none;
  }

  @keyframes goldPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(211, 159, 60, 0.4);
    }

    70% {
      box-shadow: 0 0 0 12px rgba(211, 159, 60, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(211, 159, 60, 0);
    }
  }

  /* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .lux-footer-body {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 640px) {
    .lux-footer-body {
      grid-template-columns: 1fr;
      padding: 50px 24px 36px;
      gap: 32px;
    }

    .lux-footer-bottom-inner {
      padding: 16px 24px;
      flex-direction: column;
      text-align: center;
    }
  }