    :root {
      --gold: #c9a46b;
      --gold-dark: #a07840;
      --light: #f8f5f0;
      --text: #2d2d2d;
      --border: #e7dfd2;
      --white: #fff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family:'Poppins', sans-serif;
      background: #faf9f7;
      color: var(--text);
      overflow-x: hidden;
    }

    a { text-decoration: none; }

    .main-wrapper { position: relative; }

    /* ===== OVERLAY ===== */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
    }
    .overlay.active { opacity: 1; visibility: visible; }

    /* ===== SIDE MENU ===== */
    .side-menu {
      width: 300px;
      height: 100vh;
      background: #fff;
      position: fixed;
      top: 0;
      left: -100%;
      z-index: 999;
      transition: 0.4s;
      box-shadow: 10px 0 40px rgba(0,0,0,0.08);
      padding: 40px;
    }
    .side-menu.active { left: 0; }
    .close-btn {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 26px;
      cursor: pointer;
      color: #222;
    }
    .side-menu ul {
      list-style: none;
      margin-top: 80px;
      padding: 0;
    }
    .side-menu ul li { margin-bottom: 24px; }
    .side-menu ul li a {
      color: #222;
      font-size: 16px;
      transition: color 0.3s;
    }
    .side-menu ul li a:hover { color: var(--gold); }

    /* ===== HERO ===== */
    .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,5,0.82) 0%, rgba(15,10,5,0.55) 60%, rgba(15,10,5,0.35) 100%);
  z-index: 1;
}

.menu-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  font-size: 30px;
  color: var(--gold);
  z-index: 20;
  cursor: pointer;
  line-height: 1;
}

.reserve-btn {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 20;
}
.reserve-btn a {
  background: var(--gold);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.reserve-btn a:hover { background: var(--gold-dark); }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 90px;
}

/* ✅ Logo image — replaces all the old text elements */
.hero-logo {
  width: clamp(220px, 38vw, 380px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 15px;
  line-height: 2;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 15px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.book-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

    /* ===== FEATURE BOX ===== */
    .feature-box {
      background: #fff;
      border-radius: 20px;
      margin-top: -65px;
      position: relative;
      z-index: 5;
      border: 1px solid var(--border);
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }

    .feature-item {
      padding: 28px 18px;
      text-align: center;
      border-right: 1px solid var(--border);
      height: 100%;
    }
    .feature-item:last-child { border-right: none; }
    .feature-item i {
      font-size: 38px;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
    }
    .feature-item h5 {
      font-family:'Poppins', sans-serif;
      font-size: 18px;
      margin-bottom: 8px;
    }
    .feature-item p {
      font-size: 13px;
      color: #777;
      line-height: 1.7;
      margin: 0;
    }

    /* ===== SECTION TITLES ===== */
    .section-subtitle {
      font-family: 'Pinyon Script', cursive;
      color: #8f6d3e;
      font-size: 44px;
      line-height: 1.2;
    }
    .section-title {
      font-family:'Poppins', sans-serif;
      font-size: 48px;
      letter-spacing: 2px;
      margin-top: -8px;
      line-height: 1.1;
    }

    /* ===== EXPERIENCE CARDS ===== */
    .experience-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #eee;
      transition: transform 0.4s, box-shadow 0.4s;
      height: 100%;
    }
    .experience-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 30px rgba(0,0,0,0.09);
    }
    .experience-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    .card-content {
      padding: 16px;
      text-align: center;
    }
    .time-badge {
      background: #f4e4c8;
      color: #7a5c2e;
      padding: 7px 16px;
      border-radius: 50px;
      font-family:'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 500;
      display: inline-block;
      margin-top: -36px;
      position: relative;
      z-index: 2;
    }
    .card-content h4 {
      font-family:'Poppins', sans-serif;
      font-size: 16px;
      margin-top: 15px;
      margin-bottom: 20px;
    }
    .card-content p {
      font-size: 14px;
      color: #777;
      line-height: 1.8;
      margin-bottom: 12px;
    }
    .explore-btn {
      border: 1px solid var(--gold);
      padding: 5px 16px;
      border-radius: 8px;
      display: inline-block;
      color: #8b6b3d;
      font-family:'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      transition: 0.3s;
    }
    .explore-btn:hover { background: var(--gold); color: #fff; }

    /* ===== ABOUT ===== */
    .about-section {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #eee;
    }
    .about-image img {
      width: 100%;
      height: 100%;
      min-height: 400px;
      object-fit: cover;
      display: block;
    }
    .about-content {
      padding: 30px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-content h2 {
      font-family:'Poppins', sans-serif;
      font-size: 48px;
      line-height: 1.1;
      margin-top: 5px;
    }
    .about-content p {
      color: #666;
      line-height: 2;
      font-size: 15px;
    }
    .signature {
      font-family: 'Pinyon Script', cursive;
      color: var(--gold);
      font-size: 48px;
      margin-top: 18px;
    }

    /* ===== GALLERY ===== */
    .gallery img {
      width: 100%;
      border-radius: 14px;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .gallery img:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 70px 0 30px;
      background: #faf9f7;
    }
    .footer-logo {
      font-family:'Poppins', sans-serif;
      font-size: 54px;
      line-height: 1;
      color: var(--gold);
    }
    footer p {
      color: #777;
      font-size: 14px;
      line-height: 1.8;
      margin: 0;
    }
    .footer-title {
      font-family:'Poppins', sans-serif;
      font-size: 22px;
      margin-bottom: 18px;
      color: #222;
    }
    .footer-links a {
      display: block;
      color: #777;
      margin-bottom: 10px;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
    .social-icons a {
      width: 42px;
      height: 42px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      transition: 0.3s;
    }
    .social-icons a:hover { background: var(--gold); color: #fff; }
    .newsletter { position: relative; }
    .newsletter input {
      width: 100%;
      height: 52px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 0 58px 0 18px;
      outline: none;
      font-family:'Poppins', sans-serif;
      font-size: 13px;
    }
    .newsletter button {
      position: absolute;
      right: 7px;
      top: 7px;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 8px;
      background: var(--gold);
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
    }
    .newsletter button:hover { background: var(--gold-dark); }
    .copyright {
      border-top: 1px solid #e5e5e5;
      margin-top: 50px;
      padding-top: 20px;
      text-align: center;
      color: #999;
      font-size: 13px;
      font-family:'Poppins', sans-serif;
    }

    /* ===== GALLERY TABS ===== */
    .gallery-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .gtab {
      background: transparent;
      border: 1px solid var(--border);
      color: #888;
      padding: 9px 22px;
      border-radius: 50px;
      font-family:'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .gtab:hover { border-color: var(--gold); color: var(--gold); }
    .gtab.active { background: var(--gold); border-color: var(--gold); color: #fff; }

    /* ===== GALLERY SLIDER ===== */
    .gslider-outer {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }
    .gslider-track {
      display: flex;
      gap: 16px;
      transition: transform 0.5s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .gslide {
      flex: 0 0 calc(33.333% - 11px);
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 4/3;
      transition: opacity 0.4s, transform 0.4s;
    }
    .gslide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .gslide:hover img { transform: scale(1.06); }
    .gslide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
      display: flex;
      align-items: flex-end;
      padding: 18px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gslide:hover .gslide-overlay { opacity: 1; }
    .gslide-overlay span {
      font-family:'Poppins', sans-serif;
      font-size: 15px;
      color: #fff;
      letter-spacing: 1px;
    }
    .gslide.hidden { display: none; }

    .gslider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.9);
      border: none;
      border-radius: 50%;
      font-size: 18px;
      color: #333;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transition: background 0.3s, color 0.3s;
    }
    .gslider-arrow:hover { background: var(--gold); color: #fff; }
    .gslider-arrow.prev { left: 12px; }
    .gslider-arrow.next { right: 12px; }

    .gdots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .gdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      padding: 0;
    }
    .gdot.active { background: var(--gold); transform: scale(1.3); }

    /* ===== LIGHTBOX ===== */
    .glightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .glightbox.open { opacity: 1; visibility: visible; }
    .glb-img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      text-align: center;
    }
    .glb-img-wrap img {
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 12px;
      object-fit: contain;
      display: block;
    }
    .glb-caption {
      font-family:'Poppins', sans-serif;
      color: rgba(255,255,255,0.75);
      font-size: 15px;
      margin-top: 14px;
      letter-spacing: 1px;
    }
    .glb-close {
      position: fixed;
      top: 20px;
      right: 24px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
      z-index: 10;
    }
    .glb-close:hover { background: var(--gold); border-color: var(--gold); }
    .glb-arrow {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
      z-index: 10;
    }
    .glb-arrow:hover { background: var(--gold); border-color: var(--gold); }
    .glb-prev { left: 20px; }
    .glb-next { right: 20px; }

    /* ===== RESPONSIVE GALLERY ===== */
    @media (max-width: 991px) {
      .gslide { flex: 0 0 calc(50% - 8px); }
    }
    @media (max-width: 576px) {
      .gslide { flex: 0 0 100%; }
      .gslider-arrow { width: 36px; height: 36px; font-size: 15px; }
      .gtab { padding: 8px 16px; font-size: 11px; }
      .glb-arrow { width: 40px; height: 40px; font-size: 16px; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1199px) {
      .logo-numeral { font-size: 80px; }
      .section-title { font-size: 40px; }
      .about-content h2 { font-size: 42px; }
    }

    @media (max-width: 991px) {
      .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
      .feature-item:last-child { border-bottom: none; }
      .about-image img { min-height: 320px; }
      .about-content { padding: 40px 30px; }
      .section-title { font-size: 34px; }
      .about-content h2 { font-size: 36px; }
      .logo-numeral { font-size: 70px; }
      .logo-name { font-size: 18px; letter-spacing: 6px; }
      .logo-name.gold-label { font-size: 26px; }
    }

    @media (max-width: 767px) {
      .hero-section { min-height: 100svh; }
      .reserve-btn a { padding: 9px 14px; font-size: 11px; }
      .reserve-btn a span.hide-sm { display: none; }
      .feature-box { margin-top: -30px; border-radius: 14px; }
      .section-title { font-size: 28px; letter-spacing: 1px; }
      .section-subtitle { font-size: 36px; }
      .gallery img { height: 130px; border-radius: 10px; }
      .about-content { padding: 30px 22px; }
      .about-content h2 { font-size: 30px; }
      .logo-numeral { font-size: 64px; }
      .logo-name { font-size: 15px; letter-spacing: 5px; }
      .logo-name.gold-label { font-size: 22px; }
      .hero-tagline { font-size: 10px; }
      .book-btn { padding: 13px 26px; font-size: 11px; }
      .footer-logo { font-size: 42px; }
      .footer-title { font-size: 18px; }
    }

    @media (max-width: 480px) {
      .logo-numeral { font-size: 52px; }
      .logo-name { font-size: 13px; letter-spacing: 4px; }
      .logo-name.gold-label { font-size: 19px; }
      .logo-sub { font-size: 9px; }
      .reserve-btn { top: 14px; right: 14px; }
      .menu-btn { top: 18px; left: 18px; font-size: 26px; }
      .book-btn { padding: 12px 22px; font-size: 10px; }
      .section-title { font-size: 24px; }
      .experience-card img { height: 160px; }
    }

    .about-content-tab{
      margin-top: 50px;
    }

    .contact-section{
      position: relative;
    }

    .section-title{
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title span{
      color: var(--gold);
      letter-spacing: 3px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .section-title h2{
      font-size: 42px;
      font-weight: 700;
      margin-top: 10px;
      color: var(--text);
    }

    .contact-card{
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 40px 30px;
      height: 100%;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-card::before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gold);
    }

    .contact-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.08);
      border-color: var(--gold);
    }

    .icon-box{
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(201, 164, 107, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }

    .icon-box i{
      font-size: 30px;
      color: var(--gold-dark);
    }

    .contact-card h4{
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 18px;
      color: var(--text);
    }

    .contact-card p,
    .contact-card a{
      color: #666;
      text-decoration: none;
      line-height: 1.9;
      font-size: 16px;
      margin-bottom: 0;
    }

    .contact-card a:hover{
      color: var(--gold-dark);
    }

    .map-wrapper{
      margin-top: 70px;
      border-radius: 25px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    }

    .map-wrapper iframe{
      width: 100%;
      height: 350px;
      border: 0;
      display: block;
    }

    @media (max-width: 991px){

      .section-title h2{
        font-size: 34px;
      }

      .contact-card{
        padding: 35px 25px;
      }

      .map-wrapper iframe{
        height: 400px;
      }
    }

    @media (max-width: 767px){

      .contact-section{
        padding: 70px 0;
      }

      .section-title{
        margin-bottom: 40px;
      }

      .section-title h2{
        font-size: 28px;
      }

      .contact-card{
        margin-bottom: 25px;
      }

      .map-wrapper{
        margin-top: 40px;
      }

      .map-wrapper iframe{
        height: 320px;
      }
    }
    .eleven-eleven-logo{
      height: auto;
      width: auto;
    }

    .v-icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#000;
  font-weight:700;
  text-decoration:none;
}

.bottom-contact{
    position: fixed;
    bottom: 25px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99999;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

/* GOLD OUTLINE */
.bottom-contact::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg,#d4af37,#fff0a5,#d4af37);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* ICON */
.bottom-contact i{
    color: #d4af37;
    font-size: 30px;
    z-index: 2;
    text-shadow: 0 0 12px rgba(212,175,55,0.7);
    transition: 0.4s ease;
}

/* LEFT CALL */
.call-btn{
    left: 20px;
    border-radius: 18px;
}

/* RIGHT WHATSAPP */
.whatsapp-btn{
    right: 20px;
    border-radius: 18px;
}

/* HOVER EFFECT */
.bottom-contact:hover{
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
}

.bottom-contact:hover i{
    transform: scale(1.15);
}

/* WHATSAPP GLOW */
.whatsapp-btn{
    animation: glow 2s infinite;
}

@keyframes glow{
    0%{
        box-shadow: 0 0 0 0 rgba(212,175,55,0.5);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(212,175,55,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

/* MOBILE */
@media(max-width:768px){

    .bottom-contact{
        width: 58px;
        height: 58px;
        bottom: 15px;
    }

    .call-btn{
        left: 15px;
    }

    .whatsapp-btn{
        right: 15px;
    }

    .bottom-contact i{
        font-size: 24px;
    }
}