
    /* ─── 1. CSS CUSTOM PROPERTIES (Design Tokens) ─────────────────
       Change these variables to retheme the entire website instantly
    ──────────────────────────────────────────────────────────────── */
    :root {
      --red:        #7a0000;   /* Deep Wine Red                   */
      --red-dark:   #3d0000;   /* Even Darker Mahogany            */
      --red-light:  #c20000;   /* Brighter Crimson for Glow       */
      --red-glow:   rgba(255, 0, 0, 0.15); /* Soft Red Light          */
      --black:      #050505;   /* Absolute Black                  */
      --black-soft: #0a0a0a;   /* Slightly lighter black          */
      --gold:       #D4A843;   /* Premium accent                  */
      --white:      #FFFFFF;
      --gray-light: #f5f5f5;
      --gray-text:  #aaaaaa;
 
      --font-heading: 'Playfair Display SC', serif;
      --font-body:    'Raleway', sans-serif;
 
      --transition:   0.35s ease;
      --radius:       8px;
      --shadow-red:   0 0 30px rgba(204,0,0,0.5);
      --shadow-gold:  0 0 20px rgba(212,168,67,0.4);
    }
 
    /* ─── 2. BASE RESET & TYPOGRAPHY ────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: var(--font-body);
      background-color: #050505;
      /* Unified Red Glow Design */
      background-image: 
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(255, 0, 0, 0.25) 0%, transparent 85%),
        radial-gradient(circle at 50% 50%, rgba(150, 0, 0, 0.05) 0%, transparent 90%);
      background-attachment: fixed;
      color: var(--white);
      overflow-x: hidden;
    }
 
    h1, h2, h3, h4, h5 {
      font-family: var(--font-heading);
      letter-spacing: 0.04em;
    }
 
    p { line-height: 1.8; color: var(--gray-text); }
 
    a { text-decoration: none !important; color: inherit; }
 
    img { max-width: 100%; }
 
    /* ─── 3. UTILITY CLASSES ─────────────────────────────────────── */
    .text-red   { color: var(--red) !important; }
    .text-gold  { color: var(--gold) !important; }
    .bg-black   { background-color: var(--black) !important; }
    .bg-soft    { background-color: var(--black-soft) !important; }
 
    /* Section title shared style */
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .section-title span { color: var(--white); }
 
    .section-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--gold));
      margin: 0 auto 1.5rem;
      border-radius: 2px;
    }
    .section-divider.left { margin-left: 0; }
 
    .section-subtitle {
      font-size: 0.95rem;
      color: var(--gray-text);
      max-width: 600px;
      margin: 0 auto 3rem;
    }
 
    /* Red glow button */
    .btn-elitista {
      background: var(--red);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: var(--radius);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .btn-elitista::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
      opacity: 0;
      transition: var(--transition);
    }
    .btn-elitista:hover {
      background: var(--red-dark);
      box-shadow: var(--shadow-red);
      color: var(--white);
      transform: translateY(-2px);
    }
    .btn-elitista:hover::before { opacity: 1; }
 
    /* Outline gold variant */
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
      font-family: var(--font-body);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--black);
      box-shadow: var(--shadow-gold);
      transform: translateY(-2px);
    }
 
    /* ─── 4. SCROLLBAR STYLING ───────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
 
    /* ─── 5. PRELOADER ───────────────────────────────────────────── */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #preloader.hidden { opacity: 0; visibility: hidden; }
 
    #preloader img { width: 120px; animation: pulse 1.5s ease infinite; }
 
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.08); opacity: 0.8; }
    }
 
    .preloader-bar {
      width: 200px; height: 3px;
      background: var(--black-soft);
      border-radius: 2px;
      overflow: hidden;
    }
    .preloader-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--red), var(--gold));
      border-radius: 2px;
      animation: loadBar 1.8s ease forwards;
    }
    @keyframes loadBar {
      from { width: 0; }
      to   { width: 100%; }
    }
 
    /* ─── 6. NAVBAR ──────────────────────────────────────────────── */
    #mainNav {
      background: transparent;
      padding: 1.2rem 0;
      transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
      z-index: 1000;
    }
    /* Navbar turns solid on scroll (class added via jQuery) */
    #mainNav.scrolled {
      background: rgba(13,13,13,0.97) !important;
      padding: 0.7rem 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    }
 
    #mainNav .navbar-brand img { height: 80px; transition: height 0.4s ease; }
    #mainNav.scrolled .navbar-brand img { height: 65px; }
 
    #mainNav .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 1rem !important;
      position: relative;
      transition: color var(--transition);
    }
    /* Animated underline on hover */
    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 1rem;
      width: 0; height: 2px;
      background: var(--red);
      transition: width var(--transition);
    }
    #mainNav .nav-link:hover,
    #mainNav .nav-link.active { color: var(--white) !important; }
    #mainNav .nav-link:hover::after,
    #mainNav .nav-link.active::after { width: calc(100% - 2rem); }
 
    /* Hamburger icon color */
    .navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
    .navbar-toggler-icon { filter: invert(1); }
 
    /* Book Now CTA in nav */
    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      border-radius: var(--radius);
      padding: 0.4rem 1.2rem !important;
      font-weight: 600 !important;
      transition: var(--transition) !important;
    }
    .nav-cta:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
    .nav-cta::after { display: none !important; }
 
    /* ─── 7. HERO SECTION ────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: transparent;
    }
 
    /* Spreading volumetric "reflection" glow */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: transparent;
      background-image: 
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(255, 0, 0, 0.3) 0%, transparent 85%),
        radial-gradient(circle at 50% 50%, rgba(150, 0, 0, 0.08) 0%, transparent 90%);
      filter: saturate(1.6) brightness(1.1);
    }
    
    #hero:hover .hero-bg { transform: none; }
 
    /* Radiant Glowing Glass Image Wrapper - Volumetric Feel */
    .hero-image-wrapper {
      position: relative;
      padding: 15px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 
        0 30px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(255, 0, 0, 0.18);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-image-wrapper:hover {
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 
        0 40px 80px rgba(0,0,0,0.9),
        0 0 60px rgba(255, 0, 0, 0.35);
      transform: translateY(-10px) scale(1.01);
    }
 
    /* Soft Fading Overlay - Gradual transition for "reflection" look */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 15%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.7) 85%,
        rgba(0, 0, 0, 1) 100%
      );
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
    }
 
    /* Animated corner decoration */
    .hero-corner {
      position: absolute;
      top: 0; left: 0;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(204,0,0,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 80px;
    }
 
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      border-left: 3px solid var(--gold);
      padding-left: 0.8rem;
    }
 
    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .hero-title .brand-name { color: var(--red); }
    .hero-title .brand-name span {
      display: inline-block;
      animation: letterFloat 3s ease infinite;
    }
    @keyframes letterFloat {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-6px); }
    }
 
    .hero-tagline {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--gray-text);
      margin-bottom: 2.5rem;
      max-width: 520px;
    }
    .hero-tagline em {
      font-style: italic;
      color: var(--gold);
      font-size: 1.1em;
    }
 
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
 
    /* Floating badge */
    .hero-badge {
      position: absolute;
      right: 5%;
      bottom: 10%;
      width: 130px; height: 130px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-red);
      animation: rotateBadge 10s linear infinite;
      z-index: 3;
    }
    @keyframes rotateBadge {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .hero-badge-inner {
      animation: rotateBadge 10s linear infinite reverse;
      text-align: center;
    }
    .hero-badge-inner .badge-num {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .hero-badge-inner .badge-label {
      font-size: 0.5rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }
 
    /* Scroll indicator arrow */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      z-index: 3;
      cursor: pointer;
      animation: bounce 2s ease infinite;
    }
    .scroll-indicator span {
      display: block;
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--red));
    }
    .scroll-indicator i { color: var(--red); font-size: 1rem; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }
 
    /* ─── 8. MARQUEE STRIP ───────────────────────────────────────── */
    .marquee-strip {
      background: transparent;
      padding: 1.5rem 0;
      overflow: hidden;
      white-space: nowrap;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .marquee-track {
      display: inline-flex;
      animation: marquee 45s linear infinite;
      gap: 5rem;
      align-items: center;
    }
    .marquee-track span {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 10vw, 5rem);
      font-weight: 950;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0 1rem;
      line-height: 1;
    }
    .marquee-track span:nth-child(odd) { color: var(--red); }
    .marquee-track span:nth-child(even) { color: var(--white); }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
 
    /* ─── 9. ABOUT SECTION ───────────────────────────────────────── */
    #about { 
      padding: 120px 0; 
      background: transparent; 
      color: var(--white);
      position: relative;
      border-top: 1px solid rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
 
    #about .section-title { color: var(--white); }
    #about .section-subtitle { color: var(--gray-text); }
    #about .about-text p { color: var(--gray-text); line-height: 1.9; }
    #about .about-text strong { color: var(--white) !important; }

    .about-img-wrapper {
      position: relative;
      border-radius: var(--radius);
      overflow: visible;
      z-index: 1;
    }
    .about-img-wrapper img {
      border-radius: var(--radius);
      width: 100%;
      object-fit: cover;
      box-shadow: 20px 20px 0 var(--red);
      transition: transform var(--transition);
    }
    .about-img-wrapper:hover img { transform: translate(-4px, -4px); }
 
    /* Red accent border on image */
    .about-img-wrapper::before {
      content: '';
      position: absolute;
      top: -10px; left: -10px;
      right: 10px; bottom: 10px;
      border: 2px solid var(--red);
      border-radius: var(--radius);
      opacity: 0.3;
      z-index: 0;
    }
 
    .about-logo-stamp {
      position: absolute;
      bottom: -20px; right: -20px;
      width: 90px; height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--red);
      box-shadow: var(--shadow-red);
      background: var(--black);
    }
 
    .about-text { padding-left: 2rem; }
    @media (max-width: 991px) { .about-text { padding-left: 0; margin-top: 3rem; } }
 
    .about-stats {
      display: flex;
      gap: 2rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-text);
    }
 
    /* ─── 10. SERVICES SECTION ───────────────────────────────────── */
    #services { padding: 100px 0; background: transparent; }
 
    .service-card {
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      height: 100%;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    /* Red line at top — grows on hover */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--red), var(--gold));
      transition: width 0.5s ease;
    }
    .service-card:hover::before { width: 100%; }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-red);
      border-color: rgba(204,0,0,0.3);
    }
 
    .service-img-wrapper {
      width: 100%;
      height: 400px;
      margin-bottom: 1.5rem;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .service-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .service-card:hover .service-card-img {
      transform: scale(1.1);
    }
 
    .service-title {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
 
    .service-price {
      display: inline-block;
      margin-top: 1rem;
      font-weight: 700;
      font-size: 0.78rem;
      color: var(--gold);
      line-height: 1.5;
      letter-spacing: 0.03em;
    }
 
    /* ─── 11. GALLERY SECTION ────────────────────────────────────── */
    #gallery { padding: 100px 0; background: transparent; }
 
    .gallery-filter {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .filter-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--gray-text);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }
 
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 12px;
    }
 
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover img { transform: scale(1.1); }
 
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(139,0,0,0.85), transparent);
      opacity: 0;
      transition: opacity var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      color: var(--white);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
    }
 
    .gallery-view-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 160px;
      text-decoration: none;
    }
 
    /* ─── 12. WHY CHOOSE US ──────────────────────────────────────── */
    #why { padding: 100px 0; background: transparent; }
 
    .why-card {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      padding: 2rem;
      background: var(--black);
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.05);
      height: 100%;
      transition: var(--transition);
    }
    .why-card:hover {
      border-color: var(--red);
      transform: translateX(6px);
      box-shadow: -4px 0 0 var(--red);
    }
    .why-icon {
      width: 50px; height: 50px;
      min-width: 50px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.1rem;
    }
    .why-title {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
 
    /* ─── 13. TESTIMONIALS SECTION ───────────────────────────────── */
    #testimonials { padding: 100px 0; background: transparent; overflow: hidden; }
 
    .testimonial-card {
      background: var(--black-soft);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
      transition: var(--transition);
      margin: 0 10px;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -0.5rem; left: 1.5rem;
      font-size: 5rem;
      font-family: var(--font-heading);
      color: var(--white);
      opacity: 0.15;
      line-height: 1;
    }
    .testimonial-card:hover {
      border-color: rgba(204,0,0,0.3);
      box-shadow: var(--shadow-red);
    }
 
    .testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
 
    .testimonial-text {
      font-size: 0.95rem;
      color: var(--gray-text);
      line-height: 1.9;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
 
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .testimonial-author img {
      width: 48px; height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--red);
    }
    .author-initials {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
    }
    .author-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--white);
    }
    .author-label {
      font-size: 0.75rem;
      color: var(--gray-text);
    }
 
    /* Owl / testimonial slider nav dots */
    .testi-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .testi-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: var(--transition);
    }
    .testi-dot.active {
      background: var(--red);
      width: 24px;
      border-radius: 4px;
    }
 
    /* ─── 14. LOCAL SEO FAQ SECTION ─────────────────────────────── */
    #faq { padding: 100px 0; background: transparent; }

    .faq-card {
      height: 100%;
      background: var(--black-soft);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 2rem;
      transition: var(--transition);
    }

    .faq-card:hover {
      border-color: rgba(212,168,67,0.35);
      box-shadow: var(--shadow-gold);
      transform: translateY(-4px);
    }

    .faq-card h3 {
      color: var(--white);
      font-size: 1.05rem;
      margin-bottom: 0.85rem;
    }

    .faq-card p {
      font-size: 0.92rem;
      margin-bottom: 0;
    }

    /* ─── 14. BOOKING / CTA SECTION ──────────────────────────────── */
    #booking { padding: 120px 0; background: transparent; position: relative; }
    #booking::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red), transparent);
    }
 
    .booking-box {
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.03);
      border-radius: 0; /* Modern architectural feel */
      padding: 5rem 4rem;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
      position: relative;
    }
 
    /* Glass border accent */
    .booking-box::before {
      content: '';
      position: absolute;
      top: -1px; left: -1px; width: 40px; height: 40px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
    }
 
    .form-control, .form-select {
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      border-radius: 0;
      padding: 1rem 0;
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: all var(--transition);
    }
    .form-control::placeholder { color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
    
    .form-control:focus, .form-select:focus {
      background: transparent;
      border-color: var(--red);
      color: var(--white);
      box-shadow: none;
      padding-left: 10px;
    }
    .form-select { cursor: pointer; }
    .form-select option { background: var(--black); }

    .date-picker-field {
      position: relative;
    }

    .date-picker-field .form-control {
      cursor: pointer;
      padding-right: 2.6rem;
    }

    .date-picker-field .form-control::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0;
    }

    .date-picker-button {
      position: absolute;
      right: 0;
      bottom: 0.35rem;
      width: 2.25rem;
      height: 2.25rem;
      border: 0;
      border-radius: 4px;
      background: rgba(255,255,255,0.06);
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--transition);
    }

    .date-picker-button:hover,
    .date-picker-button:focus {
      background: var(--red);
      color: var(--white);
      outline: none;
    }
 
    .form-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.2rem;
      display: block;
    }
    .required-mark {
      color: var(--white);
      font-size: 1.1rem;
      margin-left: 2px;
    }

    /* Success Modal Refinements */
    #successModal .modal-content {
      border-radius: 0;
      box-shadow: 0 0 50px rgba(122,0,0,0.3);
    }
    #successModal .section-title {
      font-size: 2.5rem;
    }


    /* Modern elegant button override for booking */
    .booking-box .btn-elitista {
      width: 100%;
      margin-top: 2rem;
      background: transparent;
      border: 1px solid var(--red);
      color: var(--white);
      padding: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.3em;
    }
    .booking-box .btn-elitista:hover {
      background: var(--red);
      box-shadow: 0 15px 40px rgba(122,0,0,0.4);
    }

 
    /* ─── 15. CONTACT SECTION ────────────────────────────────────── */
    #contact { padding: 100px 0; background: transparent; }
 
    .contact-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 2rem;
    }
    .contact-icon {
      width: 48px; height: 48px;
      min-width: 48px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.1rem;
      transition: var(--transition);
    }
    .contact-info-item:hover .contact-icon {
      background: var(--red);
      color: var(--white);
    }
    .contact-detail-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }
    .contact-detail-value {
      color: var(--gray-text);
      font-size: 0.95rem;
    }
 
    /* Social media buttons */
    .social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
    .social-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-text);
      font-size: 1rem;
      transition: var(--transition);
    }
    .social-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-red);
    }
 
    /* Map placeholder */
    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      height: 300px;
    }
    .map-wrapper iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.5) invert(0.9) hue-rotate(180deg); }
 
    /* ─── 16. FOOTER ─────────────────────────────────────────────── */
    #footer {
      background: #080808;
      padding: 4rem 0 1.5rem;
      border-top: 1px solid rgba(204,0,0,0.2);
    }
 
    .footer-logo { height: 60px; margin-bottom: 1rem; }
 
    .footer-tagline {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
 
    .footer-heading {
      font-family: var(--font-heading);
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      color: var(--white);
      margin-bottom: 1.2rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(204,0,0,0.3);
    }
 
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: var(--gray-text);
      font-size: 0.88rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links a::before {
      content: '›';
      color: var(--red);
      font-size: 1rem;
    }
    .footer-links a:hover { color: var(--white); padding-left: 4px; }
 
    .footer-hours { font-size: 0.88rem; }
    .footer-hours tr td { padding: 0.3rem 0; color: var(--gray-text); }
    .footer-hours tr td:first-child { padding-right: 1rem; color: var(--white); font-weight: 500; }
    .footer-hours .open { color: var(--gold); font-weight: 700; }
 
    .footer-divider { border-color: rgba(255,255,255,0.05); margin: 2rem 0 1rem; }
 
    .footer-bottom {
      font-size: 0.8rem;
      color: var(--gray-text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom a { color: var(--red); }
    .footer-bottom a:hover { color: var(--white); }
 
    /* ─── 17. FLOATING WHATSAPP BUTTON ──────────────────────────── */
    .floating-wa {
      position: fixed;
      bottom: 2rem;
      right: 1.5rem;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.6rem;
      box-shadow: 0 6px 20px rgba(37,211,102,0.5);
      z-index: 500;
      animation: waPulse 2s ease infinite;
      transition: transform 0.2s ease;
    }
    .floating-wa:hover { transform: scale(1.15); color: var(--white); }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
      50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
    }
 
    /* ─── 18. MESSENGER CHAT BUTTON ──────────────────────────────── */
    #messengerBubble {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 58px;
      height: 58px;
      background: #0084ff;
      border: none;
      border-radius: 50%;
      color: var(--white);
      font-size: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 500;
      box-shadow: 0 10px 28px rgba(0,132,255,0.45);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    #messengerBubble:hover {
      background: #006aff;
      color: var(--white);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 14px 36px rgba(0,132,255,0.6);
    }
 
    /* ─── 19. MODAL (Gallery Lightbox) ───────────────────────────── */
    .modal-content {
      background: var(--black-soft);
      border: 1px solid rgba(204,0,0,0.3);
      border-radius: 12px;
    }
    .modal-header {
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .btn-close { filter: invert(1); opacity: 0.6; }
    .modal-title { color: var(--white); font-family: var(--font-heading); }
 
    /* ─── 20. TOAST NOTIFICATIONS ────────────────────────────────── */
    .toast-container { z-index: 1100; }
    .toast {
      background: var(--black-soft);
      border: 1px solid rgba(204,0,0,0.3);
      color: var(--white);
    }
    .toast-header { background: var(--red); color: var(--white); border-radius: 0; }
    .toast-header .btn-close { filter: invert(1); }
 
    /* ─── 21. RESPONSIVE TWEAKS ──────────────────────────────────── */
    @media (max-width: 768px) {
      .hero-badge { display: none; }
      .about-stats { gap: 1rem; }
      .stat-num { font-size: 1.8rem; }
      .booking-box { padding: 2rem 1.5rem; }
    }
 
    @media (max-width: 576px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn-elitista,
      .hero-actions .btn-outline-gold { width: 100%; text-align: center; }
    }
 
