* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body h1, h2, h3, h4, h5, h6{
    font-family: Cormorant;
}
body p{
    font-family: Arial;
}
/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 120px;
  background: #fff;
}
.logo img {
  max-height: 50px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    max-height: 40px;
  }
  .header {

    padding: 15px 20px !important;
}
}

@media (max-width: 480px) {
  .logo img {
    max-height: 35px;
  }
}
.menu {
  font-size: 24px;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: -260px;
  top: 0;
  width: 260px;
  height: 100%;
  background: #2d3e50;
  color: #fff;
  padding: 20px;
  transition: 0.3s;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  margin-top: 30px;
}

.sidebar ul li {
  padding: 12px 0;
  cursor: pointer;
}

/* OVERLAY */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 900;
}

.overlay-bg.active {
  display: block;
}

/* HERO */
.hero {
  height: 60vh;
  background: url('img/banner.png') top/cover;
}

.overlay {
  background: rgba(0, 0, 0, 0.24);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.hero h1{
  text-align: center;
  font-size: 40px;
}
/* CENTER WRAPPER */
.search-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* MAIN BOX */
.search-box-modern {
  width: 100%;
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
}

/* TITLE */
.search-box-modern h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* ROW */
.search-row {
  display: flex;
  gap: 12px;
}

/* SELECT */
.search-row select {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
  background: #f9fafb;
  cursor: pointer;
  transition: 0.3s;
}

.search-row select:focus {
  border-color: #aa8140;
  outline: none;
  background: #fff;
}

/* BUTTON */
.search-row button {
  flex: 1;
  width: auto;
  padding: 10px 18px;
  background: #aa8140;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.search-row button:hover {
  background: #aa8140;
}

/* ── Search Box Enhancement ── */
.search-box-modern {
  border-top: 3px solid #aa8140 !important;
  border-radius: 12px !important;
}

.search-tagline {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #aa8140;
  text-transform: uppercase;
  margin-bottom: 4px !important;
  font-family: Arial, sans-serif;
}

.search-box-modern h4 {
  font-size: 17px !important;
  color: #222 !important;
  margin-bottom: 18px !important;
}

/* ── Custom Select Dropdowns ── */
.search-wrapper,
.search-box-modern,
.search-row {
  overflow: visible !important;
}

.custom-select {
  position: relative;
  flex: 1;
  min-width: 0;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border: 1.5px solid #e0d5c4;
  border-radius: 8px;
  padding: 11px 14px;
  background: #fdfaf6;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  width: 100%;
  user-select: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.select-trigger:hover,
.select-trigger.open {
  border-color: #aa8140;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(170,129,64,0.12);
}

.trigger-inner {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trigger-icon {
  color: #aa8140;
  font-size: 13px;
  flex-shrink: 0;
}

.select-arrow {
  font-size: 10px;
  color: #aaa;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.select-trigger.open .select-arrow {
  transform: rotate(180deg);
}

/* Search button icon */
.search-row button i {
  margin-right: 5px;
}

/* ── Dropdown Panel ── */
.select-dropdown {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  background: #fff;
  border: 1px solid #e8dece;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  z-index: 99999;
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}

.select-dropdown.open {
  display: block;
  animation: dropIn 0.18s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hotel-type options with icons */
.select-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  text-align: left;
  transition: background 0.15s;
}

.select-option:hover {
  background: #fdf5e8;
  color: #aa8140;
}

.opt-icon {
  font-size: 11px;
  color: #cca870;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Location: two-panel layout (no overflow clipping) ── */
.location-dropdown {
  overflow: hidden;
  max-height: none;
  padding: 0;
  min-width: 360px;
  border-radius: 10px;
}

.location-panel {
  display: flex;
  height: 300px;
}

.loc-col {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.loc-col-head {
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #aa8140;
  background: #fdf8f0;
  border-bottom: 1px solid #f0e5d0;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.state-col {
  border-right: 1px solid #f0e5d0;
}

.state-list,
.city-list {
  overflow-y: auto;
  flex: 1;
}

.state-option {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.state-option:hover,
.state-option.active {
  background: #fdf5e8;
  color: #aa8140;
}

.state-option.active {
  font-weight: 600;
}

.state-chevron {
  font-size: 9px;
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.15s;
}

.state-option.active .state-chevron,
.state-option:hover .state-chevron {
  color: #aa8140;
}

.city-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ccc;
  font-size: 12px;
  gap: 6px;
  font-style: italic;
}

.city-option {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.city-option:hover {
  background: #fdf5e8;
  color: #aa8140;
}

.city-dot {
  font-size: 5px;
  color: #cca870;
  flex-shrink: 0;
}

/* Search result banner */
.search-result-banner {
  background: #fdf8f0;
  border: 1px solid #e8d5b0;
  border-radius: 6px;
  padding: 11px 20px;
  color: #7a5a20;
  font-size: 14px;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Mobile: stack location panel vertically */
@media (max-width: 600px) {
  .location-dropdown {
    min-width: calc(100vw - 40px);
  }

  .location-panel {
    flex-direction: column;
    height: auto;
  }

  .loc-col { width: 100%; }

  .state-list { max-height: 150px; }
  .city-list  { max-height: 150px; }
}

/* RESPONSIVE */

/* TABLET */
@media (max-width: 992px) {
  .search-box-modern {
    width: 60%;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    height: 50vh;
}
.hero h1{
  font-size: 30px;
}
  .search-box-modern {
    width: 90%;
    padding: 18px;
  }

  .search-row {
    flex-direction: column;
  }

  .search-row button {
    width: 100%;
  }
}

.top-schools {
  background: #f5f7fa;
  padding: 60px 40px;
  text-align: center;
}

.top-schools h2 {
  font-size: 28px;
  color: #aa8140;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRID */
.school-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}
.school-container-1 {
  display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
}

/* CARD */
.school-card {
  background: #fff;
  padding: 22px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.school-card img {
  width: 100px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 12px;
}

.school-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.4;
}

.school-card p {
  font-size: 11px;
  color: #777;
}

/* HOVER EFFECT */
.school-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* RESPONSIVE */

/* LAPTOP */
@media (max-width: 1200px) {
  .school-container {
    grid-template-columns: repeat(6, 1fr);
  }
  .school-container-1 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TABLET */
@media (max-width: 992px) {
  .school-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .school-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
   .school-container-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .school-card {
    padding: 18px 10px;
  }

  .school-card h4 {
    font-size: 12px;
  }

  .school-card p {
    font-size: 10px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .school-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .school-container-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.hotel-services {
  padding: 60px 20px;
  background: #f9fbfd;
  text-align: center;
}

.hotel-services h2 {
  font-size: 28px;
  color: #1a2b49;
  margin-bottom: 10px;
}

.hotel-services .subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.service-box {
  padding: 20px;
  transition: 0.3s ease;
}

.service-box img {
  width: 110px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-box h4 {
  color: #1d1d1c;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-5px);
}

.service-box:hover img {
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px;
  }

  .service-box {
    padding: 10px 5px;
  }

  .service-box img {
    width: 60px;
  }

  .service-box h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .service-box p {
    font-size: 10px;
    line-height: 1.4;
  }

  .hotel-services h2 {
    font-size: 22px;
  }
}
.city-section {
  padding: 60px 20px;
  background: #f5f7fb;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  color: #1b1b1b;
  margin-bottom: 30px;
}

/* GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* CITY CARD */
.city-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.city-card img {
  width: 100px;
  margin-bottom: 10px;
}

.city-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.city-card p {
  font-size: 12px;
  color: #888;
}

/* HOVER */
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CATEGORY BOX */
.category-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* CATEGORY GRID */
.category-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.category-card {
  width: 180px;
  padding: 25px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.category-card img {
  width: 100px;
  margin-bottom: 10px;
}

.category-card h4 {
  font-size: 14px;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-5px);
}

/* TABLET */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    flex-wrap: wrap;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    flex-direction: column;
    align-items: center;
  }
}
.form-row {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  min-height: 60vh;         /* full height (optional) */
}

.form-box {
  background: #fff;
  padding: 35px;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-box h2 {
  text-align: center;
  color: #aa8140;
  margin-bottom: 10px;
}

.form-box p {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

input:focus {
  border-color: #aa8140;
  box-shadow: 0 0 0 2px rgba(26,115,168,0.1);
}

button {
  width: 100%;
  padding: 14px;
  background: #aa8140;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #aa8140;
  color: #fff !important;
}

/* Mobile */
@media (max-width: 480px) {
  .form-box {
    padding: 25px;
  }
}

/* SECTION */
.testimonial-section {
  background: #aa8140;
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 1100px;
  margin: 60px auto;
  color: #fff;
  text-align: center;
}

/* HEADING */
.testimonial-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.testimonial-section p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* CARDS */
.testimonial-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #f2f2f2;
  color: #222;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* QUOTE ICON */
.testimonial-card::before {
  content: "“";
  font-size: 40px;
  color: #aa8140;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.6;
}

.testimonial-name {
  margin-top: 15px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 350px;
  }
}
/* SLIDER WRAPPER */
.text-slider {
  overflow: hidden;
  background: #1f2020;
  padding: 15px 0;
}

/* TRACK */
.slider-track {
  display: flex;
  width: max-content;
  animation: scrollText 30s linear infinite;
}

/* TEXT ITEMS */
.slider-track span {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 40px;
}

/* ANIMATION */
@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-track span {
    font-size: 14px;
    margin: 0 20px;
  }
}
/* SECTION */
.about-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #1c1c1c;
  background: url('img/regent-web-heroes.avif') center/cover no-repeat;
}

/* OVERLAY */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.88);
}

/* CONTENT */
.about-content {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-title span {
  color: #e63946;
}

/* SUBTITLE */
.about-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #2f4f66;
  margin-bottom: 30px;
}

/* TEXT */
.about-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333;
}

.highlight {
  color: #e63946;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-section {
    padding: 60px 15px;
  }
}

/* ===== BANNER ===== */
.contact-banner {
  position: relative;
  height: 250px;
  background: url('img/634ad71cc4605f80960754cfcf9060810e987d31-1920x930.jpg.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* overlay */
.contact-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* title */
.banner-title {
  position: relative;
  background: #e63946;
  color: #fff;
  padding: 12px 30px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 1;
}

/* ===== SECTION ===== */
.contact-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* TITLE */
.contact-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

.contact-item i {
  margin-right: 10px;
  color: #156f9b;
  margin-top: 3px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .banner-title {
    font-size: 20px;
    padding: 10px 20px;
  }

  .contact-banner {
    height: 200px;
  }
}
/* MAIN FOOTER */
.footer {
  background: #aa8140;
  color: #fff;
  padding: 50px 20px;
}

/* HEADING */
.footer-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRID */
.footer-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  min-width: 220px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #e6f4ff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* DIVIDER */
.footer-col {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 30px;
}

.footer-col:last-child {
  border-right: none;
}

/* SOCIAL */
.footer-bottom {
  background: #f4f4f4;
  text-align: center;
  padding: 20px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  color: #161616;
  font-size: 18px;
  text-decoration: none;
}

/* COPYRIGHT */
.footer-bottom p {
  font-size: 14px;
  color: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-col {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }
}

/* ===== Banner Section ===== */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('img/taj/Hotel Facade Taj Logo Evening Shot.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}


.banner-1{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/ginger ihcl/ginger hotel.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-2{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/taj/Facade Evening Close Shot.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-3{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/Fair Field dehradun/hotelpic.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-4{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/Anand kashi Hotel/c649497f.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-5{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/51110_exterior_view_1 4.47.02 PM.jpg.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-5::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-6{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/lemon-tree-hotel-port 4.47.22ΓÇ»PM.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-6::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-7{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/60ebe9b7.jpg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-7::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-8{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/Hotel Saffron Leaf Experience.jpg.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-8::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-9{
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('img/md-dedmd-aerial-26157-Pano-Hor.jpeg ') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-9::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}



.banner-10{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/Red Fox by Lemon Tree Hotels, East Delhi.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-10::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-11{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/ChatGPT Image May 29, 2026 at 04_48_24 PM.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-11::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-12{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/jw-marriott-hotel-mumbai.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-12::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-13{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/ChatGPT Image May 29, 2026 at 04_36_33 PM.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-13::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}

.banner-14{
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('img/472027041 4.47.02 PM.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Gradient */
.banner-13::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.377), #4c4c4c30);
  top: 0;
  left: 0;
}


/* Content */
.banner-content {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

/* Heading */
.banner-content h1 {
  font-size: 60px;
  font-weight: 500;
  color: #fcfcfc;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* Line before text */
.banner-content h1::before {
  content: "";
  display: inline-block;
  /* width: 60px; */
  height: 1px;
  background: #999;
  margin-right: 15px;
  vertical-align: middle;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  padding: 15px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.search-box i {
  color: #888;
  margin-right: 10px;
}

.mic {
  margin-left: auto;
  color: #aaa;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {

  .banner {
    height: 45vh;
  }
  
  .banner-content h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  /* .banner-content h1::before {
    width: 40px;
  } */

  .search-box {
    padding: 8px 10px;
  }

  .search-box input {
    font-size: 14px;
  }
}

/* ===== SECTION ===== */
.tab-section {
  padding: 60px 5%;
}

/* ===== TAB HEADER ===== */
.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.tab {
  cursor: pointer;
  padding: 10px 15px;
  color: #555;
  position: relative;
  transition: 0.3s;
}

.tab.active {
  color: #b68a5a;
}

/* underline highlight */
.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #e8c3a4, #b68a5a);
}

/* arrows */
.arrow {
  border: 1px solid #b68a5a;
  color: #b68a5a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== CONTENT ===== */
.tab-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

/* image */
.tab-image {
  width: 50%;
}

.tab-image img {
  width: 100%;
  border-radius: 6px;
}

/* right content */
.tab-text {
  width: 50%;
}

.tab-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.tab-text h2::before {
  content: "";
  width: 60px;
  height: 1px;
  background: #999;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

.tab-text p {
  color: #666;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media(max-width: 768px){

  .tabs {
    gap: 15px;
  }

  .tab-content {
    flex-direction: column;
  }

  .tab-image, .tab-text {
    width: 100%;
  }

  .tab-text h2 {
    font-size: 24px;
  }

}
.th-hotel-wrap {
  padding: 50px 5%;
  background: #fbfbfb;
}

.th-hotel-grid {
  display: flex;
  gap: 30px;
}

/* LEFT */
.th-left { width: 65%; }

.th-slider img {
  width: 100%;
  border-radius: 10px;
}

/* TABS */
.th-tabs {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
}

.th-tab-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #555;
}

.th-tab-btn.active {
  color: #b68a5a;
  border-bottom: 2px solid #b68a5a;
}

/* CONTENT */
.th-tab-content {
  display: none;
  margin-top: 20px;
}

.th-tab-content.active {
  display: block;
}

.th-gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.th-gallery img {
  width: 100%;
  border-radius: 6px;
}

/* RIGHT */
.th-right {
  width: 35%;
  background: #fbfbfb;
  padding: 25px;
  border-radius: 10px;
  position: sticky;
  top: 20px;
}
/* ── Booking Form ── */
.booking-form-wrap {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,43,73,0.13);
  border: 1px solid #e8dece;
}

.booking-form-header {
  background: linear-gradient(135deg, #1a2b49 0%, #2d4a6e 100%);
  padding: 22px 24px 18px;
  text-align: center;
}

.booking-form-header h3 {
  color: #f5c518;
  font-size: 20px;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.booking-form-header p {
  color: #c8d8ee;
  font-size: 12px;
  margin: 0;
}

.booking-form-header .bfh-stars {
  color: #f5c518;
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: 3px;
}

.booking-form-body {
  padding: 22px 20px 24px;
}

.bf-hotel-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f7fb;
  border: 1px solid #dde5f0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #1a2b49;
  font-weight: 600;
}

.bf-hotel-badge i {
  color: #aa8140;
  font-size: 14px;
}

.bf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
}

.bf-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0d5c4;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  background: #fdfaf6;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.bf-input:focus {
  border-color: #aa8140;
  box-shadow: 0 0 0 3px rgba(170,129,64,0.12);
  background: #fff;
}

.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bf-row .bf-group {
  display: flex;
  flex-direction: column;
}

.bf-group {
  margin-bottom: 0;
}

.bf-group .bf-input {
  margin-bottom: 0;
}

.bf-spacer {
  margin-bottom: 14px;
}

.bf-divider {
  height: 1px;
  background: #f0e8d8;
  margin: 4px 0 16px;
}

textarea.bf-input {
  resize: none;
  height: 80px;
}

.bf-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #1a2b49, #2d4a6e);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bf-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.bf-submit i {
  font-size: 14px;
  color: #f5c518;
}

.bf-privacy {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
}

.bf-privacy i {
  color: #aa8140;
  margin-right: 4px;
}

/* keep old .th-form for other pages */
.th-form {
  background-color: #e4e4e4;
  padding: 20px;
}
.th-form input,
.th-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.th-form button {
  width: 100%;
  padding: 12px;
  background: #b68a5a;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.th-call-btn {
  position: fixed;
  bottom: 80px; /* above WhatsApp if you have */
  right: 20px;
  background: #2da306;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.th-call-btn:hover {
  background: #a57845;
}

.th-call-icon {
  font-size: 16px;
}

/* MOBILE */
@media(max-width:768px){
  .th-call-btn {
    bottom: 70px;
    right: 15px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .list-ul{
    padding: 20px;
  }
}
/* MOBILE */
@media(max-width:768px){
  .th-hotel-grid { flex-direction: column; }
  .th-left, .th-right { width: 100%; }
  .th-right { position: static; }
}
.th-details-wrap {
  background: #ffffff;
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
}

.th-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* COLUMN */
.th-col {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.th-col:last-child {
  border-right: none;
}

/* ITEM */
.th-item {
  margin-bottom: 20px;
}

.th-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 8px;
}

.th-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

/* DIVIDER */
.th-divider {
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

/* LINKS */
.th-link {
  display: inline-block;
  margin-top: 8px;
  color: #b68a5a;
  font-size: 13px;
  text-decoration: none;
}

/* BOTTOM */
.th-bottom-links {
  margin-top: 30px;
  display: flex;
  gap: 40px;
}

.th-bottom-links a {
  color: #b68a5a;
  font-size: 14px;
  text-decoration: none;
}

/* MOBILE */
@media(max-width: 768px){

  .th-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .th-col {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }

  .th-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

}

/* ── HOTEL LISTING PAGES (5-star, 4-star, 3-star) ── */
.listing-hero {
  background: linear-gradient(135deg, #1a2b49 0%, #2d4a6e 60%, #1a2b49 100%);
  padding: 60px 20px 40px;
  text-align: center;
  color: #fff;
}

.listing-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.listing-hero p {
  font-size: 16px;
  color: #c8d8ee;
  margin-bottom: 20px;
}

.listing-stars {
  display: inline-flex;
  gap: 6px;
  font-size: 26px;
  color: #f5c518;
}

.listing-section {
  padding: 50px 40px;
  background: #f4f7fb;
  min-height: 60vh;
}

.listing-section h2 {
  text-align: center;
  font-size: 28px;
  color: #1a2b49;
  margin-bottom: 36px;
}

.hotel-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-listing-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.hotel-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.hlc-image {
  width: 100%;
  height: 175px;
  background: linear-gradient(135deg, #e8edf5, #c8d4e8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hlc-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hlc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1a2b49;
  color: #f5c518;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.hlc-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hlc-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b49;
  margin-bottom: 6px;
  font-family: Cormorant, serif;
}

.hlc-location {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hlc-stars {
  color: #f5c518;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hlc-btn {
  display: inline-block;
  background: #1a2b49;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background 0.2s;
}

.hlc-btn:hover {
  background: #2d4a6e;
}

.listing-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s;
}

.listing-back-btn:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .listing-section {
    padding: 30px 16px;
  }

  .hotel-listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }

  .listing-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hotel-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* COMFORTS SECTION */
.comforts-section {
  padding: 60px 80px;
  background: #fff;
}

.comforts-header {
  margin-bottom: 30px;
  text-align: center;
}

.comforts-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.comforts-header p {
  font-size: 15px;
  color: #555;
}

.comforts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.comfort-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s;
}

.comfort-card:hover {
  transform: translateY(-4px);
}

.comfort-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 12px;
}

.comfort-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.comfort-card:hover .comfort-img-wrap img {
  transform: scale(1.04);
}

.comfort-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.comfort-badge.guest-fav {
  background: #fff;
  color: #222;
}

.comfort-badge.superhost {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.comfort-info {
  padding: 12px 4px 0;
}

.comfort-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.comfort-location {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.comfort-rating {
  font-size: 13px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.comfort-rating i {
  font-size: 11px;
}

.rating-count {
  color: #555;
}

.comfort-name,
.comfort-beds,
.comfort-dates {
  font-size: 13px;
  color: #717171;
  margin-top: 2px;
}

.comfort-price {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-top: 6px;
}

.comfort-price s {
  color: #717171;
  font-weight: 400;
  margin-right: 4px;
}

.comfort-price span {
  font-weight: 400;
  color: #222;
}

.comforts-footer {
  margin-top: 36px;
}

.explore-more-btn {
  border: 1.5px solid #222;
  background: #fff;
  color: #222;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.explore-more-btn:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 1024px) {
  .comforts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comforts-section {
    padding: 40px 40px;
  }
}

@media (max-width: 600px) {
  .comforts-grid {
    grid-template-columns: 1fr;
  }
  .comforts-section {
    padding: 30px 20px;
  }
}

/* ── DESTINATION GALLERY ── */
.destination-gallery {
  padding: 70px 80px;
  background: linear-gradient(135deg, #f8f4ef 0%, #eef2f7 100%);
}

.gallery-header {
  text-align: center;
  margin-bottom: 45px;
}

.gallery-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aa8140;
  background: rgba(170, 129, 64, 0.12);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.gallery-header p {
  font-size: 16px;
  color: #777;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px 300px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-card.gallery-wide {
  grid-column: 2 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover img {
  transform: scale(1.09);
}

/* Dark gradient base */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 22px 26px;
  transition: background 0.45s ease;
}

/* Gold tinted overlay on hover */
.gallery-card:hover .gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(120, 76, 12, 0.92) 0%,
    rgba(170, 129, 64, 0.42) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.gallery-text h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease;
}

.gallery-card.gallery-tall .gallery-text h3 {
  font-size: 28px;
}

.gallery-card.gallery-wide .gallery-text h3 {
  font-size: 24px;
}

.gallery-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.07s, transform 0.35s ease 0.07s;
}

.gallery-card:hover .gallery-text h3 {
  transform: translateY(-5px);
}

.gallery-card:hover .gallery-text p {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer sweep on hover */
.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
  z-index: 3;
}

.gallery-card:hover::after {
  left: 160%;
}

/* Gold border glow on hover */
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-card:hover::before {
  border-color: rgba(170, 129, 64, 0.75);
  box-shadow: inset 0 0 24px rgba(170, 129, 64, 0.18);
}

@media (max-width: 1024px) {
  .destination-gallery {
    padding: 40px 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px 240px;
  }
  .gallery-card.gallery-wide {
    grid-column: 1 / 3;
  }
  .gallery-card.gallery-tall {
    grid-row: 1 / 3;
  }
}

@media (max-width: 600px) {
  .destination-gallery {
    padding: 30px 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    grid-template-rows: unset;
  }
  .gallery-card.gallery-tall,
  .gallery-card.gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-header h2 {
    font-size: 26px;
  }
}

/* ── VIDEO SECTION ── */
.video-section {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark cinematic overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-content {
  color: #fff;
  max-width: 720px;
  padding: 20px 30px;
}

.video-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0c06a;
  border: 1px solid rgba(240, 192, 106, 0.5);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-family: Arial, sans-serif;
}

.video-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
  color: #fff;
}

.video-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}

.video-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Play / Pause button */
.video-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn:hover {
  background: #aa8140;
  border-color: #aa8140;
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(170, 129, 64, 0.55);
}

.video-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .video-section {
    height: 60vh;
  }
  .video-content h2 {
    font-size: 28px;
  }
  .video-content p {
    font-size: 14px;
  }
  .video-play-btn {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .video-section {
    height: 55vh;
  }
  .video-content h2 {
    font-size: 22px;
  }
}

