/* Main site stylesheet extracted from temp/home.html */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*** Common Styles ***/

body {
  font-family: 'Inter', sans-serif;
  background: #fefaf5;
  color: #2e2e2e;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Smooth scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #d97746, #c4683a);
  color: white;
  box-shadow: 0 8px 18px rgba(217, 119, 70, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b85f34, #a04f2a);
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(217, 119, 70, 0.35);
}

.btn-outline {
  border: 2px solid #d97746;
  color: #d97746;
  background: transparent;
}

.btn-outline:hover {
  background: #d97746;
  color: white;
}

.btn-white-outline {
  border: 2px solid white;
  color: white;
}

.btn-white-outline:hover {
  background: white;
  color: #3b2e24;
}





/* Header & Navigation */
header {
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid rgba(217, 119, 70, 0.2);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3b2e24;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-icon {
  background: linear-gradient(135deg, #d97746, #b85f34);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(217, 119, 70, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.6rem;
  line-height: 1.1;
  color: #3b2e24;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #d97746;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #3b2e24;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.25s ease;
  padding: 6px 0;
  letter-spacing: 0.2px;
}

.nav-links a:hover { color: #d97746; }
.nav-links a.active { color: #d97746; font-weight:600; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left:0; width:100%; height:3px; background: linear-gradient(90deg, #d97746, #f0a878); border-radius:4px; }
.nav-cta { background: linear-gradient(135deg, #d97746, #c4683a); color: white !important; padding: 10px 22px !important; border-radius: 30px; font-weight:600 !important; box-shadow: 0 4px 14px rgba(217,119,70,0.3); }
.mobile-menu-toggle { display: none; background:none; border:none; font-size:1.8rem; color:#3b2e24; cursor:pointer; }


 /* Footer */
    footer {
      background: #faeae0;
      padding: 50px 0 25px;
      margin-top: 60px;
      border-radius: 60px 60px 0 0;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .footer-brand .logo-icon {
      width: 36px;
      height: 36px;
      font-size: 1.1rem;
      border-radius: 10px;
      background: linear-gradient(135deg, #d97746, #b85f34);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-brand span {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #3b2e24;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 14px;
      color: #3b2e24;
    }

    .footer-col a {
      display: block;
      color: #5e4b3c;
      text-decoration: none;
      margin-bottom: 10px;
      font-size: 0.95rem;
    }

    .footer-col a:hover {
      color: #d97746;
    }

    .social-icons {
      display: flex;
      gap: 18px;
      font-size: 1.4rem;
    }

    .social-icons a {
      color: #d97746;
      transition: transform 0.2s;
    }

    .social-icons a:hover {
      transform: scale(1.15);
    }

    .copyright {
      text-align: center;
      border-top: 1px solid #ddc7b5;
      padding-top: 20px;
      color: #5e4b3c;
      font-size: 0.9rem;
    }



/*** Common Style End ***/


/** HOME PAGE ***/

/* Hero section */
    .hero {
      background: linear-gradient(103deg, #fef3e7 0%, #ffe9da 100%);
      border-radius: 0 0 60px 60px;
      margin-bottom: 40px;
    }

    .hero .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      padding-top: 30px;
      padding-bottom: 40px;
    }

    .hero-text {
      flex: 1 1 400px;
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      line-height: 1.2;
      color: #3b2e24;
      margin-bottom: 20px;
    }

    .hero-text .highlight {
      color: #d97746;
      font-style: italic;
    }

    .hero-text p {
      font-size: 1.15rem;
      color: #5e4b3c;
      margin-bottom: 28px;
      max-width: 500px;
    }

    .hero-image {
      flex: 1 1 380px;
      display: flex;
      justify-content: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 40px;
      box-shadow: 20px 20px 35px rgba(176, 118, 82, 0.25);
      transition: transform 0.4s;
    }

    .hero-image img:hover {
      transform: scale(1.02);
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 10px;
    }






/* Hero and common components follow same styles as original template */
.hero-slider { width:100%; height:85vh; min-height:600px; max-height:850px; position:relative; overflow:hidden; border-radius:0 0 60px 60px; margin-bottom:40px; }
.swiper-hero { width:100%; height:100%; }
.swiper-slide { display:flex; align-items:center; justify-content:center; position:relative; background-size:cover; background-position:center; background-repeat:no-repeat; }
.slide-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%); z-index:2; }
.slide-content { position:relative; z-index:5; color:white; max-width:700px; margin:0 auto; text-align:center; padding:0 24px; }
.slide-content h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight:700; line-height:1.15; margin-bottom:20px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.slide-content .highlight { color:#ffb78c; font-style:italic; display:block; }
.slide-content p { font-size:1.25rem; margin-bottom:30px; text-shadow:0 2px 8px rgba(0,0,0,0.5); }

/* ==========================================================================
       TRIP ENQUIRY SLIDE DRAWER
       ========================================================================== */
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(59, 46, 36, 0.4);
      backdrop-filter: blur(6px);
      z-index: 110; /* Placed slightly over header bounds layer */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .drawer-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }
    .drawer-sidebar {
      position: fixed;
      top: 0;
      right: -500px;
      width: 100%;
      max-width: 480px;
      height: 100vh;
      background: #fefaf5;
      box-shadow: -10px 0 40px rgba(59, 46, 36, 0.15);
      z-index: 111;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    .drawer-sidebar.show {
      transform: translateX(-500px);
    }
    .drawer-close {
      position: absolute;
      top: 20px;
      right: 25px;
      background: none;
      border: none;
      font-size: 2.2rem;
      color: #5e4b3c;
      cursor: pointer;
      transition: color 0.2s;
    }
    .drawer-close:hover {
      color: #d97746;
    }
    .drawer-title {
      font-size: 1.8rem;
      color: #3b2e24;
      margin-top: 15px;
      margin-bottom: 6px;
    }
    .drawer-subtitle {
      font-size: 0.9rem;
      color: #5e4b3c;
      margin-bottom: 25px;
    }

    @media (max-width: 480px) {
      .drawer-sidebar {
        max-width: 100%;
        right: -100%;
      }
      .drawer-sidebar.show {
        transform: translateX(-100%);
      }
    }





/* Latest Stories Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin: 30px 0 40px;
    }

    .blog-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 38px rgba(217, 119, 70, 0.12);
    }

    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .blog-card:hover img {
      transform: scale(1.04);
    }

    .blog-content {
      padding: 22px 20px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      color: #b08968;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .blog-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #3b2e24;
    }

    .blog-card p {
      color: #5e4b3c;
      font-size: 0.95rem;
      margin-bottom: 18px;
      flex: 1;
    }

    .read-more {
      align-self: flex-start;
      color: #d97746;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }

    .read-more:hover {
      gap: 12px;
    }








/* Category circle styles */
.categories-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; margin-top:30px; }
.category-circle { display:flex; flex-direction:column; align-items:center; gap:16px; cursor:pointer; transition:transform 0.3s ease; }
.circle-wrapper { width:140px; height:140px; border-radius:50%; background:white; box-shadow:0 16px 36px rgba(0,0,0,0.06); display:flex; align-items:center; justify-content:center; position:relative; transition:all 0.4s ease; border:3px solid transparent; }
.circle-icon { font-size:3rem; color:#d97746; transition: transform 0.3s; }

/* Reels, booking banner and footer */
.reels-scroll-container { display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling: touch; padding:16px 0 24px; }
.reel-card { flex:0 0 280px; scroll-snap-align:start; background:white; border-radius:24px; overflow:hidden; box-shadow:0 10px 24px rgba(0,0,0,0.05); transition:transform 0.3s; }
.booking-cta-banner { background: linear-gradient(135deg, #fff3eb, #ffe4d6); border-radius:40px; padding:40px; margin:50px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
footer { background:#faeae0; padding:50px 0 25px; margin-top:60px; border-radius:60px 60px 0 0; }

.footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap:30px; margin-bottom:30px; }
.copyright { text-align:center; border-top:1px solid #ddc7b5; padding-top:20px; color:#5e4b3c; font-size:0.9rem; }



  /* Article Hero */
    .article-hero {
      position: relative;
      height: 65vh;
      min-height: 450px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      border-radius: 0 0 40px 40px;
      margin-bottom: 40px;
    }

    .article-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
      border-radius: 0 0 40px 40px;
    }

    .article-hero-content {
      position: relative;
      z-index: 5;
      color: white;
      padding: 0 24px 50px;
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
    }

    .article-category {
      display: inline-block;
      background: #d97746;
      color: white;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }

    .article-hero-content h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      line-height: 1.2;
      margin-bottom: 16px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    .article-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Article body */
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 50px;
      margin: 40px 0 60px;
      align-items: start;
    }

    .article-main {
      font-size: 1.1rem;
      color: #3b2e24;
    }

    .article-main h2 {
      font-size: 1.8rem;
      margin: 35px 0 15px;
      color: #3b2e24;
    }

    .article-main p {
      margin-bottom: 20px;
      color: #4a3b2f;
    }

    .article-main blockquote {
      border-left: 4px solid #d97746;
      padding: 20px 24px;
      margin: 30px 0;
      background: #fff3eb;
      border-radius: 0 16px 16px 0;
      font-style: italic;
      color: #5e4b3c;
      font-size: 1.2rem;
    }

    .article-main img {
      width: 100%;
      border-radius: 24px;
      margin: 25px 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .article-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid #e7d7cc;
    }

    .tag {
      background: #fae1cf;
      color: #b85f34;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* Sidebar */
    .article-sidebar {
      position: sticky;
      top: 100px;
    }

    .sidebar-card {
      background: white;
      border-radius: 24px;
      padding: 24px;
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    }

    .sidebar-card h3 {
      font-size: 1.3rem;
      margin-bottom: 16px;
      color: #3b2e24;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .author-box {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .author-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d97746, #b85f34);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .related-post {
      display: flex;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f0e3d8;
    }

    .related-post:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .related-post img {
      width: 70px;
      height: 70px;
      border-radius: 14px;
      object-fit: cover;
    }

    .related-post-content h4 {
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .related-post-content a {
      color: #d97746;
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
    }

    .booking-cta {
      background: linear-gradient(135deg, #d97746, #b85f34);
      color: white;
      text-align: center;
    }

    .booking-cta h3 {
      color: white;
    }

    .booking-cta p {
      margin-bottom: 16px;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* Share buttons */
    .share-buttons {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }

    .share-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      transition: transform 0.2s;
      text-decoration: none;
    }

    .share-btn:hover {
      transform: scale(1.1);
    }

    .share-facebook { background: #3b5998; }
    .share-twitter { background: #1da1f2; }
    .share-pinterest { background: #bd081c; }
    .share-whatsapp { background: #25d366; }

    /* Related articles grid */
    .related-section {
      margin: 60px 0;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 24px;
    }

    .story-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s;
    }

    .story-card:hover {
      transform: translateY(-6px);
    }

    .story-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .story-card-content {
      padding: 18px;
    }

    .story-card-content h4 {
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .story-card-content .read-link {
      color: #d97746;
      font-weight: 600;
      text-decoration: none;
      font-size: 0.9rem;
    }





     /* Page Banner */
    .page-banner {
      background: linear-gradient(135deg, #fff3eb, #ffe4d6);
      border-radius: 0 0 48px 48px;
      padding: 60px 24px;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-banner h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: #3b2e24;
      margin-bottom: 12px;
    }

    .page-banner p {
      color: #5e4b3c;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Category Filter Circles */
    .category-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin: 40px 0;
    }

    .filter-circle {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .filter-circle:hover {
      transform: translateY(-6px);
    }

    .filter-circle.active .circle-wrapper {
      border-color: #d97746;
      background: linear-gradient(135deg, #fff3eb, #ffe4d6);
      box-shadow: 0 16px 36px rgba(217, 119, 70, 0.2);
    }

    .circle-wrapper {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      border: 3px solid transparent;
    }

    .circle-icon {
      font-size: 2.6rem;
      color: #d97746;
      transition: transform 0.3s;
    }

    .filter-circle:hover .circle-icon {
      transform: scale(1.1);
    }

    .filter-label {
      font-weight: 600;
      font-size: 1rem;
      color: #3b2e24;
    }

    .filter-count {
      font-size: 0.8rem;
      color: #b08968;
      font-weight: 500;
      background: #fae1cf;
      padding: 3px 12px;
      border-radius: 12px;
    }

    /* Results header */
    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      margin: 30px 0 20px;
    }

    .results-header h2 {
      font-size: 1.8rem;
      color: #3b2e24;
    }

    .results-count {
      color: #b08968;
      font-weight: 500;
    }

    /* Trip Cards Grid */
    .trips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      margin: 30px 0 50px;
    }

    .trip-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0,0,0,0.04);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .trip-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 40px rgba(217, 119, 70, 0.13);
    }

    .trip-card-image {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .trip-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .trip-card:hover .trip-card-image img {
      transform: scale(1.06);
    }

    .trip-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: #d97746;
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.4px;
      box-shadow: 0 4px 12px rgba(217, 119, 70, 0.3);
    }

    .trip-price {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: white;
      color: #3b2e24;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .trip-card-content {
      padding: 20px 22px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .trip-card-content h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: #3b2e24;
    }

    .trip-meta {
      display: flex;
      gap: 16px;
      color: #b08968;
      font-size: 0.85rem;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .trip-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .trip-card-content p {
      color: #5e4b3c;
      font-size: 0.95rem;
      margin-bottom: 16px;
      flex: 1;
    }

    .trip-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #f0e3d8;
      padding-top: 14px;
    }

    .rating {
      color: #f59e0b;
      font-size: 0.9rem;
    }

    /* Enquiry Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 100;
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 28px;
      padding: 32px;
      max-width: 500px;
      width: 90%;
      position: relative;
      animation: modalIn 0.3s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #5e4b3c;
    }

    .modal-content h3 {
      margin-bottom: 8px;
    }

    .modal-content p {
      color: #5e4b3c;
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .modal-content input,
    .modal-content textarea,
    .modal-content select {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      border: 1px solid #e7d7cc;
      border-radius: 16px;
      font-family: 'Inter', sans-serif;
      background: #fefaf7;
    }



/* ==========================================================================
       AUTH DRAWER SIDEBAR & INTERACTIONS
       ========================================================================== */
    .auth-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(59, 46, 36, 0.4);
      backdrop-filter: blur(6px);
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .auth-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }
    .auth-sidebar {
      position: fixed;
      top: 0;
      right: -460px;
      width: 100%;
      max-width: 450px;
      height: 100vh;
      background: #fefaf5;
      box-shadow: -10px 0 40px rgba(59, 46, 36, 0.15);
      z-index: 101;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    .auth-sidebar.show {
      transform: translateX(-460px);
    }
    .auth-close {
      position: absolute;
      top: 20px;
      right: 25px;
      background: none;
      border: none;
      font-size: 2.2rem;
      color: #5e4b3c;
      cursor: pointer;
      transition: color 0.2s;
    }
    .auth-close:hover {
      color: #d97746;
    }
    /* Panel Engine Toggle Switching */
    .auth-panel {
      display: none;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .auth-panel.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    .auth-title {
      font-size: 2.2rem;
      color: #3b2e24;
      margin-bottom: 8px;
      margin-top: 20px;
    }
    .auth-subtitle {
      font-size: 0.95rem;
      color: #5e4b3c;
      margin-bottom: 30px;
    }
    /* Forms & Inputs styling matching site theme */
    .form-group {
      margin-bottom: 20px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: #3b2e24;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-group input, .form-group select {
      width: 100%;
      padding: 12px 16px;
      border-radius: 12px;
      border: 2px solid rgba(217, 119, 70, 0.2);
      background: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: #2e2e2e;
      transition: all 0.25s ease;
    }
    .form-group input:focus, .form-group select:focus {
      outline: none;
      border-color: #d97746;
      box-shadow: 0 0 0 4px rgba(217, 119, 70, 0.1);
    }
    .auth-link-btn {
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #b08968;
      cursor: pointer;
      transition: color 0.2s;
    }
    .auth-link-btn:hover {
      color: #d97746;
    }
    .auth-link-btn.highlight {
      color: #d97746;
      font-weight: 600;
      text-decoration: underline;
    }
    .btn-full {
      width: 100%;
      margin-top: 10px;
      padding: 14px;
    }
    .auth-footer {
      margin-top: 35px;
      text-align: center;
      font-size: 0.95rem;
      color: #5e4b3c;
      border-top: 1px solid rgba(217, 119, 70, 0.1);
      padding-top: 20px;
    }
    @media (max-width: 480px) {
      .auth-sidebar {
        max-width: 100%;
        right: -100%;
      }
      .auth-sidebar.show {
        transform: translateX(-100%);
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }



    /* ==========================================================================
       DYNAMIC AUTHOR NAVIGATION UI COMPONENT
       ========================================================================== */
    .author-nav-profile {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 6px 14px !important;
      background: rgba(217, 119, 70, 0.06);
      border: 2px solid rgba(217, 119, 70, 0.15);
      border-radius: 30px;
      text-decoration: none !important;
      transition: all 0.25s ease;
    }
    .author-nav-profile:hover {
      background: rgba(217, 119, 70, 0.12);
      border-color: #d97746;
      transform: translateY(-1px);
    }
    .author-avatar-img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #d97746;
      box-shadow: 0 2px 6px rgba(217, 119, 70, 0.2);
    }
    .author-avatar-default {
      font-size: 1.6rem;
      color: #d97746;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
    }
    .author-nav-name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      color: #3b2e24 !important;
      letter-spacing: 0.1px;
    }
    .author-nav-profile::after {
      display: none !important; /* Disables standard underline indicators */
    }





@media (max-width: 768px) {
  .hero-slider { height: 70vh; min-height:500px; border-radius:0 0 40px 40px; }
  .nav-links { display:none; flex-direction:column; width:100%; background:#fffaf5; padding:20px 0; gap:16px; margin-top:15px; border-radius:16px; }
  .nav-links.show { display:flex; }
  .mobile-menu-toggle { display:block; }
}

/* Small helper styles used by other pages */
.floating-enquiry { position: fixed; bottom: 28px; right: 28px; z-index:40; background: linear-gradient(135deg, #d97746, #b85f34); color:white; width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; box-shadow:0 8px 28px rgba(217,119,70,0.45); cursor:pointer; border:none; }



