@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Oswald:wght@400;500;600&family=Lato:wght@300;400;700&display=swap');

/* ==========================================
   STYLES FROM INDEX.HTML (page-home)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Hero */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       HERO SECTION STYLES
       ========================================== */
    .hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Hero Image Slider */
    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      z-index: 0;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.55); /* Dark Overlay */
      z-index: 2;
    }

    /* Hero Centered Content */
    .hero-content-wrapper {
      position: relative;
      z-index: 10; /* Sits above slide overlay */
      width: 100%;
      max-width: 1200px;
      padding: 0 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-content {
      width: 100%;
      max-width: 960px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Supporting Line (Oswald, 14px, letter-spacing 3px, #C9972A uppercase) */
    .supporting-line {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 3px;
      color: #C9972A;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease both;
    }

    /* Main Heading (Cormorant Garamond Bold, 72px desktop) */
    .main-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 72px;
      line-height: 1.15;
      color: #FFFFFF;
      margin: 0 0 25px 0;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease both 0.2s;
    }

    /* Royal Divider */
    .royal-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      width: 100%;
      margin-bottom: 25px;
      animation: fadeInUp 1s ease both 0.4s;
    }

    .royal-divider .line {
      height: 1px;
      width: 80px;
      background: linear-gradient(90deg, transparent, #C9972A, transparent);
    }

    .royal-divider .diamond {
      color: #C9972A;
      font-size: 12px;
      text-shadow: 0 0 5px rgba(201, 151, 42, 0.5);
    }

    /* Highlight Points Row (Lato, 14px, #F5E6C8) */
    .highlight-row {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 28px;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease both 0.6s;
    }

    .highlight-item {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #F5E6C8;
      display: flex;
      align-items: center;
      letter-spacing: 0.5px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }

    .checkmark {
      color: #C9972A;
      font-weight: 700;
      margin-right: 8px;
      font-size: 16px;
    }

    /* Subheading (Lato Light, 20px, #F5E6C8) */
    .subheading {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 22px;
      line-height: 1.65;
      color: #F5E6C8;
      max-width: 780px;
      margin: 0 0 45px 0;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
      animation: fadeInUp 1s ease both 0.8s;
    }

    /* CTA Buttons */
    .cta-row {
      display: flex;
      justify-content: center;
      gap: 24px;
      animation: fadeInUp 1s ease both 1s;
    }

    .btn-cta {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 16px 36px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    /* Button 1: solid #C9972A, text #1A0A0A */
    .btn-cta-primary {
      background-color: #C9972A;
      color: #1A0A0A;
      border: 1px solid #C9972A;
    }

    .btn-cta-primary:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 0 20px rgba(201, 151, 42, 0.4);
      transform: translateY(-2px);
    }

    /* Button 2: transparent, 1px white border, white text; hover: white bg, #1A0A0A text */
    .btn-cta-secondary {
      background-color: transparent;
      color: #FFFFFF;
      border: 1px solid #FFFFFF;
    }

    .btn-cta-secondary:hover {
      background-color: #FFFFFF;
      color: #1A0A0A;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    }

    /* ==========================================
       SECTION 2: OUR HISTORY
       ========================================== */
    .history-section {
      background-color: #FAF5EB; /* Cream */
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .history-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .section-title-dark {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 44px;
      color: #1A0A0A;
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.25;
    }

    .history-content-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .history-text-col {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .history-paragraph {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.8;
      color: #3D2D2D;
    }

    .history-stats-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin: 10px 0;
    }

    .stat-card {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 48px;
      color: #C9972A;
      line-height: 1;
    }

    .stat-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #1A0A0A;
    }

    .btn-outline-gold {
      align-self: flex-start;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1A0A0A;
      border: 1px solid #C9972A;
      background-color: transparent;
      padding: 14px 32px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-outline-gold:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.25);
    }

    .history-image-col img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border: 1px solid #C9972A;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    /* ==========================================
       SECTION 3: WHY CHOOSE US
       ========================================== */
    .why-section {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      padding: 100px 40px;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .section-title-light {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 44px;
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.25;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .why-card {
      background-color: #2A1010;
      border: 0.5px solid #C9972A;
      padding: 40px 30px;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .why-card:hover {
      border-color: #FFD269; /* Brighter gold */
      box-shadow: 0 8px 25px rgba(201, 151, 42, 0.2);
      transform: translateY(-4px);
    }

    .why-icon {
      width: 32px;
      height: 32px;
      color:#007CF7;
    }

    .why-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 22px;
      color: #C9972A;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .why-description {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 17px;
      line-height: 1.8;
      color: #F5E6C8; /* Light Gold */
    }

    /* ==========================================
       SECTION 4: OUR SERVICES
       ========================================== */
    .services-section {
      background-color: #FAF5EB;
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }

    .service-card {
      background-color: #FFFFFF;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border-top: 3px solid transparent;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .service-card:hover {
      border-top-color: #C9972A;
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .service-img-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .service-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-img {
      transform: scale(1.06);
    }

    .service-content {
      padding: 30px 25px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-grow: 1;
    }

    .service-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 22px;
      color: #1A0A0A;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .service-desc {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 19px;
      line-height: 1.5;
      color: #555555;
    }

    .service-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: #C9972A;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: auto;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .service-link:hover {
      color: #1A0A0A;
    }

    .services-btn-container {
      text-align: center;
    }

    .btn-gold-solid {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1A0A0A;
      background-color: #C9972A;
      border: 1px solid #C9972A;
      padding: 15px 35px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-gold-solid:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.3);
    }

    /* ==========================================
       SECTION 5: GALLERY PREVIEW
       ========================================== */
    .gallery-section {
      background-color: #1A0A0A;
      color: #ffffff;
      padding: 100px 40px;
      border-top: 1px solid rgba(201, 151, 42, 0.2); 
      
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 250px;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201, 151, 42, 0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(26, 10, 10, 0.85);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      text-align: center;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay-text {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 24px;
      color: #C9972A;
      letter-spacing: 1px;
    }

    /* Grid Spans for masonry layout */
    .item-tall {
      grid-row: span 2;
    }
    .item-wide {
      grid-column: span 2;
    }

    /* ==========================================
       SECTION 6: GOOGLE REVIEWS TESTIMONIALS
       ========================================== */
    .testimonials-section {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      padding: 80px 5%;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .testimonials-header {
      width: 100%;
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonials-content {
      display: flex;
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      align-items: flex-start;
    }

    /* Left Side: Summary block (250px fixed) */
    .summary-block {
      width: 250px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .summary-heading {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 28px;
      color: #FFFFFF;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .summary-stars {
      color: #C9972A;
      font-size: 32px;
      line-height: 1;
      letter-spacing: 2px;
    }

    .summary-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: #ffffff;
      letter-spacing: 0.5px;
      margin-bottom: 5px;
    }

    .summary-google-logo {
      display: flex;
      align-items: center;
      margin-bottom: 5px;
    }

    /* Slider Arrows Controls */
    .slider-controls {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      outline: none;
    }

    .slider-arrow:hover {
      background-color: #C9972A;
      color: #1A0A0A;
    }

    /* Right Side: Cards Slider Area */
    .reviews-slider-area {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .reviews-track {
      display: flex;
      gap: 20px;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      width: 100%;
    }

    /* Cards Style */
    .review-card {
      background-color: #FFFFFF;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      flex-shrink: 0;
      width: calc((100% - 40px) / 3); /* 3 cards visible on desktop */
      display: flex;
      flex-direction: column;
      gap: 16px;
      color: #1A0A0A;
    }

    /* Card Top Row */
    .review-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 100%;
    }

    .review-profile {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .profile-pic {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #E0E0E0;
      color: #4D4D4D;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
    }

    .profile-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .profile-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #1A0A0A;
      line-height: 1.2;
    }

    .review-time {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #888888;
    }

    /* Star Rating Row */
    .review-stars {
      color: #FBBC05; /* Google Yellow */
      font-size: 18px;
      line-height: 1;
      letter-spacing: 1px;
    }

    /* Review Text Content */
    .review-text-wrapper {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .review-text-content {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: #333333;
      /* Max 3 lines limit */
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .review-text-content.expanded {
      display: block;
      -webkit-line-clamp: unset;
      overflow: visible;
    }

    .read-more-btn {
      align-self: flex-start;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #4285F4; /* Google Blue */
      text-decoration: none;
      margin-top: 4px;
      cursor: pointer;
    }

    /* ==========================================
       SECTION 7: CTA + CONTACT FORM
       ========================================== */
    .contact-section {
      background-color: #1A0A0A;
      color: #FFFFFF;
      padding: 100px 40px;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1.8fr;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-col {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .contact-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      line-height: 1.2;
      color: #FFFFFF;
    }

    .contact-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.7;
      color: #F5E6C8;
    }

    .contact-info-block {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 15px;
    }

    .contact-info-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .contact-info-icon {
      font-size: 22px;
      color: #C9972A;
      line-height: 1;
    }

    .contact-info-content {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .contact-info-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #C9972A;
    }

    .contact-info-value {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .contact-form-col {
      background-color: #2A1010;
      border: 1px solid rgba(201, 151, 42, 0.3);
      padding: 50px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group-full {
      grid-column: span 2;
    }

    .form-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #F5E6C8;
    }

    .form-input {
      background-color: #1A0A0A;
      border: 1px solid rgba(201, 151, 42, 0.4);
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      padding: 12px 16px;
      width: 100%;
      outline: none;
      transition: border-color 0.3s;
    }

    .form-input:focus {
      border-color: #C9972A;
    }

    select.form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9972A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 20px;
      padding-right: 40px;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      grid-column: span 2;
      width: 100%;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1A0A0A;
      background-color: #C9972A;
      border: 1px solid #C9972A;
      padding: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
    }

    .btn-submit:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 20px rgba(201, 151, 42, 0.3);
    }

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       KEYFRAMES ANIMATIONS
       ========================================== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ==========================================
       FLOATING VERTICAL INQUIRY FORM STYLES
       ========================================== */
    #inquiry-wrapper {
      position: fixed;
      right: 0;
      top: 30%;
      z-index: 888;
      display: flex;
      align-items: flex-start;
    }

    #inquiry-tab {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      background: #C9972A;
      color: #1A0A0A;
      padding: 16px 10px;
      cursor: pointer;
      border-radius: 8px 0 0 8px;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      font-weight: 600;
      white-space: nowrap;
      user-select: none;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      transition: background 0.3s ease;
    }

    #inquiry-tab:hover {
      background: #FAF5EB;
    }

    #inquiry-panel {
      width: 0;
      overflow: hidden;
      transition: width 0.3s ease, padding 0.3s ease;
      background: #1A0A0A;
      border-left: 2px solid #C9972A;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    #inquiry-panel.open {
      width: 280px;
      padding: 24px 20px;
    }

    .inquiry-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .inquiry-panel-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #C9972A;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .inquiry-close-btn {
      background: none;
      border: none;
      color: #C9972A;
      font-size: 20px;
      cursor: pointer;
      line-height: 1;
      padding: 0 4px;
      transition: color 0.2s ease;
    }

    .inquiry-close-btn:hover {
      color: #FFFFFF;
    }

    .inquiry-form-field {
      width: 100%;
      background-color: #2A1A00;
      border: 1px solid #C9972A;
      color: #F5E6C8;
      padding: 12px 14px;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      border-radius: 0;
      outline: none;
      margin-bottom: 10px;
      box-sizing: border-box;
      transition: border-color 0.3s ease;
    }

    .inquiry-form-field::placeholder {
      color: #888888;
    }

    .inquiry-form-field:focus {
      border-color: #FFFFFF;
    }

    select.inquiry-form-field {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9972A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 16px;
      padding-right: 32px;
    }

    .inquiry-submit-btn {
      width: 100%;
      background-color: #C9972A;
      color: #1A0A0A;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px;
      border: 1px solid #C9972A;
      border-radius: 0;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 5px;
    }

    .inquiry-submit-btn:hover {
      background-color: #FAF5EB;
      color: #1A0A0A;
      border-color: #FAF5EB;
    }

    .inquiry-note {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      color: #888888;
      text-align: center;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      #inquiry-wrapper {
        display: none !important;
      }
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .main-heading {
        font-size: 56px;
      }
      .history-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .history-image-col img {
        height: 400px;
      }
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
      }
      .item-wide {
        grid-column: span 1; /* Reset masonry spans */
      }
      .testimonials-content {
        flex-direction: column;
        gap: 40px;
      }
      .summary-block {
        width: 100%;
        align-items: center;
        text-align: center;
      }
      .slider-controls {
        justify-content: center;
      }
      .review-card {
        width: calc((100% - 20px) / 2); /* 2 cards visible on tablet */
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .main-heading {
        font-size: 40px;
        margin-bottom: 20px;
      }
      .supporting-line {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
      }
      .highlight-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
      }
      .subheading {
        font-size: 16px;
        margin-bottom: 35px;
        padding: 0 10px;
      }
      .cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 15px;
      }
      .btn-cta {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }
      .history-section, .why-section, .services-section, .gallery-section, .testimonials-section, .contact-section {
        padding: 60px 20px;
      }
      .section-title-dark, .section-title-light, .contact-heading {
        font-size: 32px;
        margin-bottom: 35px;
      }
      .why-grid {
        grid-template-columns: 1fr;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
      }
      .item-tall {
        grid-row: span 1; /* Reset spans on mobile */
      }
      .review-card {
        width: 100%; /* 1 card visible on mobile */
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-group-full, .btn-submit {
        grid-column: span 1;
      }
      .contact-form-col {
        padding: 35px 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* ==========================================
   STYLES FROM ABOUT.HTML (page-about)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Banner */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       PAGE BANNER STYLES
       ========================================== */
    .page-banner {
      position: relative;
      height: 50vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600');
      background-size: cover;
      background-position: center;
      padding: 0 20px;
    }

    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin-top: 90px; /* Offset for overlay header */
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .banner-subheading {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #C9972A;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .banner-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 54px;
      color: #FFFFFF;
      line-height: 1.2;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Breadcrumbs */
    .breadcrumb {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #C9972A;
    }

    .breadcrumb .divider {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb .current {
      color: #C9972A;
      font-weight: 700;
    }

    /* ==========================================
       SECTION 1: WHO WE ARE
       ========================================== */
    .who-section {
      background-color: #FAF5EB; /* Cream */
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .who-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .who-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 60px;
      align-items: center;
    }

    .who-image-col img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border: 1px solid #C9972A;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .who-text-col {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .who-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
      line-height: 1.2;
    }

    .who-content {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.8;
      color: #3D2D2D;
    }

    /* Icon+Text Rows (2x2 Grid) */
    .who-highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 15px;
    }

    .highlight-row-item {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .highlight-icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .highlight-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #1A0A0A;
    }

    /* ==========================================
       SECTION 2: HOW IT WORKS
       ========================================== */
    .how-section {
      background-color: #1A0A0A;
      color: #FFFFFF;
      padding: 100px 40px;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .section-title-light {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 60px;
      line-height: 1.25;
    }

    .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      padding: 20px 0;
    }

    .timeline-track-line {
      position: absolute;
      top: 40px; /* Center of circle (20px) + padding */
      left: 8%;
      right: 8%;
      height: 2px;
      border-top: 2px dashed #C9972A;
      z-index: 1;
    }

    .timeline-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .timeline-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 15px;
    }

    .step-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #1A0A0A;
      border: 2px solid #C9972A;
      color: #C9972A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .timeline-step:hover .step-circle {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.5);
    }

    .step-text-wrapper {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .step-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: #FFFFFF;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .step-desc {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    /* ==========================================
       SECTION 3: OUR JOURNEY
       ========================================== */
    .journey-section {
      background-color: #FAF5EB;
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .journey-container {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .journey-paragraph {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.85;
      color: #3D2D2D;
    }

    /* Stat Counters */
    .journey-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 30px;
      border-top: 1px solid rgba(26, 10, 10, 0.1);
      padding-top: 40px;
    }

    .stat-card {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 48px;
      color: #C9972A;
      line-height: 1;
    }

    .stat-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #1A0A0A;
    }

    /* ==========================================
       SECTION 4: MISSION & VISION
       ========================================== */
    .mission-section {
      background-color: #1A0A0A;
      color: #FFFFFF;
      padding: 100px 40px;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .mission-vision-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .mission-vision-card {
      background-color: #2A1010;
      border: 1px solid rgba(201, 151, 42, 0.3);
      border-top: 3px solid #C9972A;
      padding: 50px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .mission-vision-card:hover {
      transform: translateY(-4px);
      border-color: #C9972A;
    }

    .card-heading {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 24px;
      color: #C9972A;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-body {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.75;
      color: #F5E6C8;
    }

    /* ==========================================
       SECTION 5: MEET OUR CHEFS
       ========================================== */
    .chefs-section {
      background-color: #FAF5EB;
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .section-title-dark {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.25;
    }

    .chefs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }

    .chef-card {
      background-color: #FFFFFF;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 40px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .chef-card:hover {
      border-color: #C9972A;
      transform: translateY(-5px);
    }

    .chef-photo {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #C9972A;
    }

    .chef-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 18px;
      color: #1A0A0A;
      text-transform: uppercase;
    }

    .chef-title {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #888888;
    }

    .chef-quote-container {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid rgba(26, 10, 10, 0.1);
    }

    .chef-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      font-size: 22px;
      color: #1A0A0A;
      line-height: 1.4;
    }

    /* ==========================================
       SECTION 6: CTA (Gold Background)
       ========================================== */
    .cta-section {
      background-color: #C9972A;
      color: #1A0A0A;
      padding: 80px 20px;
      text-align: center;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
      line-height: 1.2;
    }

    .cta-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.65;
      color: #ffffff;
      max-width: 700px;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      margin-top: 15px;
    }

    .btn-cta-dark {
     display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    
    }

    .btn-cta-dark:hover {
    background: #FFFFFF;
    color: #C9972A;
    border-color: #FFFFFF;

    transform: translateY(-2px);
    }

  .btn-cta-outline-dark {
    display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;

}

.btn-cta-outline-dark:hover {
    background: #FFFFFF;
    color: #C9972A;
    border-color: #FFFFFF;

    transform: translateY(-2px);
}

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .banner-heading {
        font-size: 44px;
      }
      .who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .who-image-col img {
        height: 400px;
      }
      .timeline-track-line {
        display: none;
      }
      .timeline-steps {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding-left: 20px;
        position: relative;
      }
      /* Vertical timeline connector on mobile */
      .timeline-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 38px; /* Center aligned with step circles */
        width: 2px;
        border-left: 2px dashed #C9972A;
        z-index: 1;
      }
      .timeline-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
        width: 100%;
        z-index: 2;
      }
      .step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .chefs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .banner-heading {
        font-size: 32px;
      }
      .who-section, .how-section, .journey-section, .mission-section, .chefs-section {
        padding: 60px 20px;
      }
      .who-heading, .section-title-light, .section-title-dark, .cta-heading {
        font-size: 32px;
        margin-bottom: 35px;
      }
      .who-highlights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .journey-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      .mission-vision-card {
        padding: 30px 20px;
      }
      .chefs-grid {
        grid-template-columns: 1fr;
      }
      .chef-quote {
        font-size: 18px;
      }
      .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 15px;
      }
      .btn-cta-dark, .btn-cta-outline-dark {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* ==========================================
   STYLES FROM MENU.HTML (page-menu)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Banner */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       PAGE BANNER STYLES
       ========================================== */
    .page-banner {
      position: relative;
      height: 50vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?w=1600');
      background-size: cover;
      background-position: center;
      padding: 0 20px;
    }

    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin-top: 90px; /* Offset for overlay header */
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .banner-subheading {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #C9972A;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .banner-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 54px;
      color: #FFFFFF;
      line-height: 1.2;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Breadcrumbs */
    .breadcrumb {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #C9972A;
    }

    .breadcrumb .divider {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb .current {
      color: #C9972A;
      font-weight: 700;
    }

    /* ==========================================
       TAB NAVIGATION STYLES
       ========================================== */
    .tab-navigation-section {
      width: 100%;
      background-color: #1A0A0A;
      border-bottom: 2px solid #C9972A;
    }

    .tabs-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
    }

    .tab-btn {
      flex: 1;
      padding: 22px 15px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: none;
      cursor: pointer;
      outline: none;
      text-align: center;
      transition: all 0.3s ease;
    }

    .tab-btn.active {
      background-color: #C9972A;
      color: #1A0A0A;
    }

    .tab-btn.inactive {
      background-color: #1A0A0A;
      color: #F5E6C8;
    }

    .tab-btn.inactive:hover {
      color: #FFFFFF;
      background-color: rgba(201, 151, 42, 0.1);
    }

    /* Content Area */
    .tab-content {
      display: none;
      width: 100%;
      animation: fadeIn 0.4s ease;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ==========================================
       TAB 1 CONTENT: CUSTOMIZE YOUR MENU
       ========================================== */
    #tab-1-content {
      background-color: #FAF5EB; /* Cream Background */
      color: #1A0A0A;
      padding: 80px 40px;
    }

    .form-container {
      max-width: 1000px;
      margin: 0 auto;
      background-color: #FFFFFF;
      border: 1px solid rgba(201, 151, 42, 0.3);
      padding: 50px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    }

    .form-heading-main {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      text-align: center;
      color: #1A0A0A;
      margin-bottom: 15px;
    }

    .form-subheading-main {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      text-align: center;
      color: #555555;
      margin-bottom: 45px;
    }

    .form-section-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 20px;
      color: #1A0A0A;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 25px;
      border-bottom: 1px solid rgba(26, 10, 10, 0.1);
      padding-bottom: 10px;
      margin-top: 15px;
    }

    .form-row-2col {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 30px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group-full {
      grid-column: span 2;
    }

    .form-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #1A0A0A;
    }

    .form-input {
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      color: #1A0A0A;
      background-color: #FFFFFF;
      border: 1px solid rgba(201, 151, 42, 0.4);
      padding: 12px 16px;
      outline: none;
      width: 100%;
      transition: border-color 0.3s;
    }

    .form-input:focus {
      border-color: #C9972A;
    }

    select.form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9972A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 20px;
      padding-right: 40px;
    }

    /* Checkboxes styling */
    .menu-selection-container {
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .menu-section-heading {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      color: #C9972A;
      border-bottom: 1px solid #C9972A;
      padding-bottom: 6px;
      margin-top: 35px;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px 25px;
      padding: 5px 0;
    }

    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #3D2D2D;
      cursor: pointer;
      user-select: none;
    }

    .custom-checkbox {
      appearance: none;
      width: 18px;
      height: 18px;
      border: 1px solid #C9972A;
      background-color: #FFFFFF;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .custom-checkbox:checked {
      background-color: #C9972A;
      border-color: #C9972A;
    }

    .custom-checkbox:checked::after {
      content: '\2713';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #1A0A0A;
      font-size: 12px;
      font-weight: bold;
    }

    /* Radio Group Styling */
    .additional-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 30px;
    }

    .radio-group {
      display: flex;
      gap: 25px;
      margin-top: 10px;
    }

    .radio-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #3D2D2D;
      cursor: pointer;
      user-select: none;
    }

    .custom-radio {
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      background-color: #FFFFFF;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .custom-radio:checked {
      border-color: #C9972A;
    }

    .custom-radio:checked::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #C9972A;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 100px;
    }

    /* Submit Block */
    .form-submit-block {
      margin-top: 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .btn-submit {
      width: 100%;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1A0A0A;
      background-color: #C9972A;
      border: 1px solid #C9972A;
      padding: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 20px rgba(201, 151, 42, 0.3);
    }

    .submit-note {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #666666;
    }

    /* ==========================================
       TAB 2 CONTENT: ALL RAJBARI BHOJ MENUS (Flipbook)
       ========================================== */
    #tab-2-content {
      background-color: #FAF5EB; /* Changed to Cream to support dark #1A0A0A text */
      color: #1A0A0A;
      padding: 80px 40px;
    }

    .tab2-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      width: 100%;
    }

    .tab2-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
      margin-bottom: 15px;
      text-align: center;
    }

    .tab2-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #888888;
      max-width: 600px;
      margin: 0 auto 50px;
      line-height: 1.6;
      text-align: center;
    }

    /* Menu Cards Grid */
    .menu-cards-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .menu-flip-card {
      width: 200px;
      height: 280px;
      background: linear-gradient(135deg, #1A0A0A, #2A1A00);
      border: 1px solid #C9972A;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      padding: 25px 15px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .menu-flip-card:hover {
      transform: scale(1.04);
      box-shadow: 0 0 20px rgba(201, 151, 42, 0.4);
    }

    .menu-card-logo-placeholder {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #C9972A;
      opacity: 0.3;
    }

    .menu-card-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #C9972A;
      text-align: center;
      letter-spacing: 1px;
      line-height: 1.4;
    }

    .menu-card-action {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #F5E6C8;
    }

    /* ==========================================
       BOTTOM CTA SECTION
       ========================================== */
    .cta-section {
      background-color: #1A0A0A;
      color: #FFFFFF;
      padding: 100px 40px;
      text-align: center;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #FFFFFF;
      line-height: 1.25;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      margin-top: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-cta-gold {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 15px 35px;
      text-decoration: none;
      background-color: #C9972A;
      color: #1A0A0A;
      border: 1px solid #C9972A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-gold:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.3);
    }

    .btn-cta-outline-white {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 15px 35px;
      text-decoration: none;
      background-color: transparent;
      color: #FFFFFF;
      border: 1px solid #FFFFFF;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-outline-white:hover {
      background-color: #FFFFFF;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    }

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .banner-heading {
        font-size: 44px;
      }
      .form-container {
        padding: 40px 30px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .banner-heading {
        font-size: 32px;
      }
      #tab-1-content, #tab-2-content, .cta-section {
        padding: 60px 20px;
      }
      .form-heading-main, .tab2-heading, .cta-heading {
        font-size: 32px;
      }
      .form-subheading-main {
        margin-bottom: 30px;
      }
      .form-row-2col {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
      }
      .form-group-full {
        grid-column: span 1;
      }
      .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 15px;
      }
      .btn-cta-gold, .btn-cta-outline-white {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }

    @media (max-width: 480px) {
      .checkbox-grid {
        grid-template-columns: 1fr;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* ==========================================
   STYLES FROM SERVICES.HTML (page-services)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Banner */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       PAGE BANNER STYLES
       ========================================== */
    .page-banner {
      position: relative;
      height: 50vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600');
      background-size: cover;
      background-position: center;
      padding: 0 20px;
    }

    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin-top: 90px; /* Offset for overlay header */
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .banner-subheading {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: #C9972A;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .banner-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 44px;
      color: #FFFFFF;
      line-height: 1.25;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Breadcrumbs */
    .breadcrumb {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #C9972A;
    }

    .breadcrumb .divider {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb .current {
      color: #C9972A;
      font-weight: 700;
    }

    /* ==========================================
       INTRODUCTION SECTION
       ========================================== */
    .intro-section {
      background-color: #FAF5EB;
      color: #1A0A0A;
      padding: 80px 40px;
      text-align: center;
    }

    .intro-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .intro-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
    }

    .intro-text {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      color: #555555;
    }

    /* ==========================================
       6 SERVICE SECTIONS
       ========================================== */
    .service-section {
      padding: 100px 40px;
      width: 100%;
    }

    .service-light {
      background-color: #FAF5EB;
      color: #1A0A0A;
    }

    .service-dark {
      background-color: #1A0A0A;
      color: #FFFFFF;
      border-top: 1px solid rgba(201, 151, 42, 0.15);
      border-bottom: 1px solid rgba(201, 151, 42, 0.15);
    }

    .service-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .service-text-col {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .service-image-col {
      flex: 0.8;
      height: 420px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #C9972A;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .service-image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-image-col:hover img {
      transform: scale(1.04);
    }

    .service-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      line-height: 1.2;
    }

    .service-light .service-heading {
      color: #1A0A0A;
    }

    .service-dark .service-heading {
      color: #F5E6C8;
    }

    .service-body {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.65;
    }

    .service-light .service-body {
      color: #555555;
    }

    .service-dark .service-body {
      color: #E0E0E0;
    }

    /* Lists Grid Layout */
    .service-lists-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 30px;
    }

    .service-list-block {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .service-list-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #C9972A;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .service-list li {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.45;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .service-light .service-list li {
      color: #3D2D2D;
    }

    .service-dark .service-list li {
      color: #F5E6C8;
    }

    /* Gold checkmarks */
    .service-list.includes-list li::before {
      content: '✔';
      color: #C9972A;
      font-weight: bold;
      flex-shrink: 0;
    }

    /* Gold Bullet Points */
    .service-list.perfect-list li::before {
      content: '•';
      color: #C9972A;
      font-weight: bold;
      font-size: 20px;
      line-height: 14px;
      flex-shrink: 0;
    }

    /* Buttons inside sections */
    .btn-service-cta {
      align-self: flex-start;
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 14px 35px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      margin-top: 10px;
    }

    /* Light Sections: Solid Gold Button */
    .service-light .btn-service-cta {
      background-color: #C9972A;
      color: #1A0A0A;
      border: 1px solid #C9972A;
    }

    .service-light .btn-service-cta:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.3);
    }

    /* Dark Sections: Outline Gold Button */
    .service-dark .btn-service-cta {
      background-color: transparent;
      color: #C9972A;
      border: 1px solid #C9972A;
    }

    .service-dark .btn-service-cta:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.3);
    }

    /* ==========================================
       BOTTOM CTA SECTION
       ========================================== */
    .bottom-cta-section {
      background-color: #C9972A;
      color: #1A0A0A;
      padding: 80px 40px;
      text-align: center;
    }

    .bottom-cta-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .bottom-cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      line-height: 1.25;
      color: #1A0A0A;
    }

    .bottom-cta-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: #1A0A0A;
      max-width: 800px;
    }

    .bottom-cta-buttons {
      display: flex;
      gap: 20px;
      margin-top: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-cta-dark {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 15px 35px;
      text-decoration: none;
      background-color: #1A0A0A;
      color: #C9972A;
      border: 1px solid #1A0A0A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-dark:hover {
      background-color: transparent;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(26, 10, 10, 0.25);
    }

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .banner-heading {
        font-size: 36px;
      }
      .service-container {
        flex-direction: column !important;
        gap: 40px;
      }
      .service-text-col {
        width: 100%;
        order: 1;
      }
      .service-image-col {
        width: 100%;
        height: 360px;
        order: 2;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .banner-heading {
        font-size: 28px;
      }
      .intro-section, .service-section, .bottom-cta-section {
        padding: 60px 20px;
      }
      .intro-heading, .service-heading, .bottom-cta-heading {
        font-size: 32px;
      }
      .service-lists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 15px;
      }
      .btn-cta-dark {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* ==========================================
   STYLES FROM GALLERY.HTML (page-gallery)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Banner */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       PAGE BANNER STYLES
       ========================================== */
    .page-banner {
      position: relative;
      height: 50vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #1A0A0A;
      padding: 0 20px;
      overflow: hidden;
    }

    .page-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 100% 150%, #C9972A 24%, #1A0A0A 24%, #1A0A0A 28%, #C9972A 28%, #C9972A 36%, #1A0A0A 36%, #1A0A0A 40%, transparent 40%, transparent),
        radial-gradient(circle at 0% 150%, #C9972A 24%, #1A0A0A 24%, #1A0A0A 28%, #C9972A 28%, #C9972A 36%, #1A0A0A 36%, #1A0A0A 40%, transparent 40%, transparent),
        radial-gradient(circle at 50% 100%, #1A0A0A 10%, #C9972A 11%, #C9972A 23%, #1A0A0A 24%, #1A0A0A 30%, #C9972A 31%, #C9972A 43%, #1A0A0A 44%, #1A0A0A 50%, #C9972A 51%, #C9972A 63%, #1A0A0A 64%, #1A0A0A 70%, transparent 70%);
      background-size: 100px 50px;
      opacity: 0.08; /* Subtle gold pattern */
      z-index: 1;
    }

    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, transparent 30%, #1A0A0A 90%);
      z-index: 2;
    }

    .banner-content {
      position: relative;
      z-index: 3;
      max-width: 1000px;
      margin-top: 90px; /* Offset for overlay header */
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .banner-subheading {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: #C9972A;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .banner-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 64px;
      color: #FFFFFF;
      line-height: 1.2;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Breadcrumbs */
    .breadcrumb {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #C9972A;
    }

    .breadcrumb .divider {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb .current {
      color: #C9972A;
      font-weight: 700;
    }

    /* ==========================================
       FILTER BUTTONS SECTION
       ========================================== */
    .filter-section {
      background-color: #FAF5EB; /* Cream Background */
      padding: 60px 20px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .filter-container {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1200px;
    }

    .filter-btn {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 1px solid #C9972A;
      color: #1A0A0A;
      background-color: transparent;
      padding: 10px 24px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn:hover, .filter-btn.active {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.2);
    }

    /* ==========================================
       GALLERY GRID SECTION
       ========================================== */
    .gallery-section {
      background-color: #FAF5EB; /* Cream Background */
      padding: 20px 40px 80px;
      width: 100%;
    }

    .gallery-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-masonry {
      column-count: 3;
      column-gap: 12px;
      width: 100%;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      display: inline-block;
      width: 100%;
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 1;
      transform: scale(1);
    }

    .gallery-image-wrapper {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid rgba(201, 151, 42, 0.15);
      background-color: #1A0A0A;
    }

    .gallery-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-image-wrapper:hover .gallery-img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(26, 10, 10, 0.75); /* Dark maroon overlay */
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-image-wrapper:hover .gallery-overlay {
      opacity: 1;
    }

    .zoom-icon {
      font-size: 32px;
      color: #C9972A; /* Gold color */
      transform: scale(0.8);
      transition: transform 0.3s ease;
    }

    .gallery-image-wrapper:hover .zoom-icon {
      transform: scale(1);
    }

    /* ==========================================
       BOTTOM CTA SECTION
       ========================================== */
    .gallery-cta {
      background-color: #1A0A0A;
      color: #FFFFFF;
      padding: 80px 20px;
      text-align: center;
      border-top: 1px solid rgba(201, 151, 42, 0.2);
    }

    .gallery-cta-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .gallery-cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #FFFFFF;
      line-height: 1.25;
    }

    .gallery-cta-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 16px;
      color: #F5E6C8;
      max-width: 600px;
      line-height: 1.6;
    }

    .btn-gallery-cta {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      background-color: #C9972A;
      color: #1A0A0A;
      padding: 14px 36px;
      border: 1px solid #C9972A;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-gallery-cta:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 15px rgba(201, 151, 42, 0.3);
    }

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       LIGHTBOX MODAL STYLES
       ========================================== */
    .lightbox-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.94);
      z-index: 99999; /* Higher than sticky header */
      align-items: center;
      justify-content: center;
      user-select: none;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      border: 1px solid #C9972A;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      background: transparent;
      border: none;
      color: #C9972A;
      font-size: 36px;
      font-weight: 300;
      cursor: pointer;
      z-index: 100000;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .lightbox-close:hover {
      transform: scale(1.1);
      color: #FFFFFF;
    }

    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(26, 10, 10, 0.3);
      border: 1px solid rgba(201, 151, 42, 0.3);
      color: #C9972A;
      font-size: 36px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 100000;
      transition: all 0.3s ease;
    }

    .lightbox-prev:hover, .lightbox-next:hover {
      background: #C9972A;
      color: #1A0A0A;
      border-color: #C9972A;
    }

    .lightbox-prev {
      left: 40px;
    }

    .lightbox-next {
      right: 40px;
    }

    .lightbox-counter {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      letter-spacing: 1px;
      font-weight: 300;
      z-index: 100000;
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .banner-heading {
        font-size: 44px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
      .gallery-masonry {
        column-count: 2;
      }
      .gallery-section {
        padding: 20px 20px 60px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .banner-heading {
        font-size: 32px;
      }
      .gallery-cta-heading {
        font-size: 32px;
      }
      .gallery-cta {
        padding: 60px 20px;
      }
      .filter-section {
        padding: 40px 20px 10px;
      }
      .filter-container {
        gap: 8px;
      }
      .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
      }
      .lightbox-prev {
        left: 10px;
      }
      .lightbox-next {
        right: 10px;
      }
      .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
      }
      .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 28px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }

    @media (max-width: 480px) {
      .gallery-masonry {
        column-count: 1;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* ==========================================
   STYLES FROM CONTACT.HTML (page-contact)
   ========================================== */
/* ==========================================
       DESIGN SYSTEM & RESET
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: #1A0A0A; /* Dark Maroon */
      color: #FFFFFF;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::-moz-selection {
      background: #C9972A;
      color: #1A0A0A;
    }
    ::selection {
      background: #C9972A;
      color: #1A0A0A;
    }

    /* Scrollbar Style */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #1A0A0A;
    }
    ::-webkit-scrollbar-thumb {
      background: #C9972A;
      border: 2px solid #1A0A0A;
    }

    /* ==========================================
       HEADER STYLES
       ========================================== */
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      height: 90px;
      margin-bottom: -90px; /* Overlay on top of Banner */
      background-color: transparent;
      border-bottom: 1px solid transparent;
      display: flex;
      align-items: center;
      transition: background-color 0.4s ease, border-color 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
    }

    /* Scrolled State */
    header.scrolled {
      background-color: #1A0A0A;
      border-bottom: 1px solid #C9972A;
      height: 80px;
      margin-bottom: -80px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #FFFFFF; /* White when transparent */
      padding: 6px 0;
      position: relative;
      transition: color 0.4s ease;
    }

    header.scrolled .nav-link {
      color: #F5E6C8; /* Light gold when solid */
    }

    /* Underline Hover Animation for non-active nav links */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

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

    .nav-link:hover {
      color: #C9972A !important;
    }

    /* Active Link Gold Box Style (Sharp Corners) */
    .nav-link.active {
      background-color: #C9972A;
      color: #1A0A0A !important;
      padding: 8px 18px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      border-radius: 0;
    }

    /* Disable hover underline and border changes for active link */
    .nav-link.active::after {
      display: none !important;
    }
    .nav-link.active:hover {
      color: #1A0A0A !important;
    }

    /* Book Your Event Button (Far Right) */
    .header-actions {
      display: flex;
      align-items: center;
    }

    .btn-book {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #C9972A;
      background-color: transparent;
      border: 1px solid #C9972A;
      padding: 10px 24px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-book:hover {
      background-color: #C9972A;
      color: #1A0A0A;
      box-shadow: 0 0 15px rgba(201, 151, 42, 0.3);
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001; /* Stay on top of mobile menu */
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #FFFFFF; /* Matches Nav */
      transition: all 0.3s ease;
    }

    header.scrolled .hamburger-btn span {
      background-color: #F5E6C8;
    }

    /* Hamburger Active/Open State */
    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: #C9972A;
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: #C9972A;
    }

    /* ==========================================
       MOBILE FULL-SCREEN SLIDE-IN MENU
       ========================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #1A0A0A;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      transform: translateX(-100%);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
      max-width: 320px;
      padding: 20px;
    }

    .mobile-nav-link {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      color: #FFFFFF;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #C9972A;
      transition: width 0.3s ease;
    }

    .mobile-nav-link:hover::after {
      width: 60%;
    }

    .mobile-nav-link:hover {
      color: #C9972A;
    }

    .mobile-book-btn {
      margin-top: 20px;
      border: 1px solid #C9972A;
      color: #C9972A;
      padding: 14px 36px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      width: 100%;
    }

    /* Prevent scrolling when menu is active */
    body.no-scroll {
      overflow: hidden;
    }

    /* ==========================================
       PAGE BANNER STYLES
       ========================================== */
    .page-banner {
      position: relative;
      height: 50vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600');
      background-size: cover;
      background-position: center;
      padding: 0 20px;
    }

    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin-top: 90px; /* Offset for overlay header */
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .banner-subheading {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: #F5E6C8;
      letter-spacing: 2px;
      text-transform: uppercase;
      max-width: 800px;
      line-height: 1.4;
    }

    .banner-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 48px;
      color: #FFFFFF;
      line-height: 1.2;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Breadcrumbs */
    .breadcrumb {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #C9972A;
    }

    .breadcrumb .divider {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb .current {
      color: #C9972A;
      font-weight: 700;
    }

    /* ==========================================
       SECTION 1: GET IN TOUCH
       ========================================== */
    .get-in-touch-section {
      background-color: #FAF5EB; /* Cream Background */
      color: #1A0A0A;
      padding: 100px 40px;
    }

    .contact-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    /* Left Column: Contact Cards */
    .contact-cards-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-detail-card {
      background-color: #FFFFFF;
      border: none;
      border-left: 1px solid #C9972A;
      padding: 25px;
      border-radius: 0;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .contact-card-icon {
      font-size: 24px;
      color: #C9972A;
      line-height: 1;
    }

    .contact-card-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .contact-card-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      color: #1A0A0A;
      letter-spacing: 0.5px;
    }

    .contact-card-value {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #555555;
      line-height: 1.5;
    }

    .contact-card-value a {
      color: #1A0A0A;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.3s;
    }

    .contact-card-value a:hover {
      color: #C9972A;
    }

    .contact-card-value.large-link a {
      font-size: 22px;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      color: #1A0A0A;
      letter-spacing: 0.5px;
    }

    .contact-card-value.large-link a:hover {
      color: #C9972A;
    }

    /* Right Column: Enquiry Form */
    .enquiry-form-card {
      background-color: #FFFFFF;
      border: 1px solid rgba(201, 151, 42, 0.3);
      padding: 50px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    }

    .enquiry-form-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 36px;
      color: #1A0A0A;
      margin-bottom: 25px;
    }

    .enquiry-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .enquiry-form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .enquiry-form-group-full {
      grid-column: span 2;
    }

    .enquiry-form-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #1A0A0A;
    }

    .enquiry-form-input {
      font-family: 'Lato', sans-serif;
      font-size: 15px;
      color: #1A0A0A;
      background-color: #FFFFFF;
      border: 1px solid rgba(201, 151, 42, 0.4);
      padding: 12px 16px;
      outline: none;
      width: 100%;
      transition: border-color 0.3s;
    }

    .enquiry-form-input:focus {
      border-color: #C9972A;
    }

    select.enquiry-form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9972A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 20px;
      padding-right: 40px;
    }

    textarea.enquiry-form-input {
      resize: vertical;
      min-height: 110px;
    }

    .btn-enquiry-submit {
      grid-column: span 2;
      width: 100%;
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1A0A0A;
      background-color: #C9972A;
      border: 1px solid #C9972A;
      padding: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
    }

    .btn-enquiry-submit:hover {
      background-color: transparent;
      color: #C9972A;
      box-shadow: 0 4px 20px rgba(201, 151, 42, 0.3);
    }

    .enquiry-form-note {
      grid-column: span 2;
      text-align: center;
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      color: #666666;
      margin-top: 10px;
    }

    /* ==========================================
       SECTION 2: GOOGLE MAP
       ========================================== */
    .map-section {
      background-color: #1A0A0A;
      padding: 80px 40px;
      text-align: center;
    }

    .map-container {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .map-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #FFFFFF;
    }

    .map-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #F5E6C8;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .map-iframe-wrapper {
      width: 100%;
      border: 1px solid #C9972A;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
      margin-top: 10px;
    }

    /* ==========================================
       SECTION 3: SOCIAL MEDIA
       ========================================== */
    .social-section {
      background-color: #FAF5EB;
      padding: 80px 40px;
      text-align: center;
    }

    .social-container {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .social-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 42px;
      color: #1A0A0A;
    }

    .social-subtext {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #555555;
      max-width: 600px;
      line-height: 1.6;
    }

    /* Social Platforms Buttons Row */
    .social-platforms-row {
      display: flex;
      gap: 20px;
      margin-top: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-social-platform {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 14px 28px;
      text-decoration: none;
      background-color: transparent;
      color: #1A0A0A;
      border: 1px solid #C9972A;
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-social-platform svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* Platform Color Hover Effects */
    .btn-facebook:hover {
      background-color: #3b5998;
      color: #FFFFFF;
      border-color: #3b5998;
      box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
    }

    .btn-instagram:hover {
      background: linear-gradient(45deg, #405de6 0%, #5851db 25%, #833ab4 50%, #c13584 75%, #e1306c 100%);
      color: #FFFFFF;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(193, 53, 132, 0.3);
    }

    .btn-youtube:hover {
      background-color: #ff0000;
      color: #FFFFFF;
      border-color: #ff0000;
      box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }

    /* CTA Action Buttons Row */
    .social-cta-row {
      display: flex;
      gap: 20px;
      margin-top: 25px;
      flex-wrap: wrap;
      justify-content: center;
      border-top: 1px solid rgba(26, 10, 10, 0.1);
      padding-top: 35px;
      width: 100%;
    }

    .btn-social-cta {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 15px 35px;
      text-decoration: none;
      background-color: #1A0A0A;
      color: #C9972A;
      border: 1px solid #1A0A0A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-social-cta:hover {
      background-color: transparent;
      color: #1A0A0A;
      box-shadow: 0 4px 15px rgba(26, 10, 10, 0.2);
    }

    /* ==========================================
       FOOTER STYLES
       ========================================== */
    .main-footer {
      background-color: #0D0505;
      color: #FFFFFF;
      padding: 80px 40px 40px;
      border-top: 1px solid #C9972A;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 55px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-about-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.6;
      color: #F5E6C8;
    }

    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #C9972A;
      margin-bottom: 5px;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 1px;
      background-color: #C9972A;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-link {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-link:hover {
      color: #C9972A;
      padding-left: 5px;
    }

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

    .footer-contact-icon {
      color: #C9972A;
      font-size: 16px;
      margin-top: 2px;
    }

    .footer-contact-text {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #F5E6C8;
      line-height: 1.5;
    }

    .footer-social-row {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #C9972A;
      color: #C9972A;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-btn:hover {
      background-color: #C9972A;
      color: #0D0505;
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      text-align: center;
    }

    .footer-copyright {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: #F5E6C8;
      letter-spacing: 0.5px;
    }

    /* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */
    @media (max-width: 1024px) {
      header {
        height: 80px;
      }
      header.scrolled {
        height: 70px;
      }
      .nav-links {
        display: none; /* Hide Desktop Nav */
      }
      .header-actions .btn-book {
        display: none; /* Hide Desktop CTA in header */
      }
      .hamburger-btn {
        display: flex; /* Show Hamburger */
      }
      .header-container {
        padding: 0 30px;
      }
      .banner-heading {
        font-size: 36px;
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 0 20px;
      }
      .banner-heading {
        font-size: 28px;
      }
      .get-in-touch-section, .map-section, .social-section {
        padding: 60px 20px;
      }
      .enquiry-form-heading, .map-heading, .social-heading {
        font-size: 32px;
      }
      .enquiry-form-card {
        padding: 35px 20px;
      }
      .enquiry-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .enquiry-form-group-full, .btn-enquiry-submit {
        grid-column: span 1;
      }
      .social-cta-row, .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 15px;
        align-items: center;
      }
      .btn-social-cta {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .main-footer {
        padding: 50px 20px 30px;
      }
    }
  
    /* Floating Action Buttons (WhatsApp & Call) */
    #whatsapp-float, #call-float {
      position: fixed;
      left: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      font-size: 24px;
    }
    #whatsapp-float {
      bottom: 90px;
      background: #25D366;
    }
    #call-float {
      bottom: 28px;
      background: #C9972A;
    }
    #whatsapp-float:hover, #call-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }


/* ==========================================
   GLOBAL RESPONSIVENESS & BREAKPOINTS
   ========================================== */
body {
  max-width: 100vw;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Touch targets for mobile */
@media (max-width: 767px) {
  a.btn-book, a.btn-cta, a.btn-submit, button, .quick-inquiry-btn {
    min-height: 44px;
  }
  .main-heading {
    font-size: 32px !important;
  }
  h1, h2 {
    font-size: 24px !important;
  }
  body, p {
    font-size: 14px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .main-heading {
    font-size: 48px !important;
  }
}
/* ==========================================
   FLOATING LOCATIONS BUTTON & PANEL STYLES (Left Side)
   ========================================== */
#location-float-wrapper {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 889;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}

#location-float-tab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #C9972A;
  color: #1A0A0A;
  padding: 16px 10px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  white-space: nowrap;
  user-select: none;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

#location-float-tab:hover {
  background: #FAF5EB;
}

#location-float-panel {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease, padding 0.3s ease;
  background: #1A0A0A;
  border-right: 2px solid #C9972A;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

#location-float-panel.open {
  width: 300px;
  padding: 24px 20px;
}

.location-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 151, 42, 0.2);
}

.location-panel-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #C9972A;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.location-panel-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #F5E6C8;
  margin-top: 4px;
}

.location-close-btn {
  background: none;
  border: none;
  color: #C9972A;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s ease;
}

.location-close-btn:hover {
  color: #FFFFFF;
}

.location-popup-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-popup-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2A1010;
  border: 1px solid rgba(201, 151, 42, 0.3);
  padding: 12px 16px;
  color: #F5E6C8;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.location-popup-card:hover {
  background-color: #C9972A;
  color: #1A0A0A !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(201, 151, 42, 0.3);
}

.location-popup-card:hover .card-arrow {
  color: #1A0A0A;
  transform: translateX(3px);
}

.card-arrow {
  color: #C9972A;
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease;
}

@media (max-width: 767px) {
  #location-float-wrapper {
    top: 22%;
  }
  #location-float-panel.open {
    width: 280px;
    padding: 20px 16px;
  }
}
