 :root {
    --gold: #c8a96e;
    --gold-light: #e8d5a8;
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --navy-light: #243b55;
    --cream: #f9f4ed;
    --white: #ffffff;
    --text-muted: #8a9bb0;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .topbar a { color: var(--gold-light); text-decoration: none; }
  .topbar a:hover { color: var(--gold); }
  .topbar-left { display: flex; gap: 24px; align-items: center; }
  .topbar-right { display: flex; gap: 20px; align-items: center; }
  .topbar-divider { color: var(--gold); opacity: 0.4; }

  /* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: all 0.4s var(--transition);
  background: rgb(13 27 42 / 53%);
}

nav.scrolled {
  top: 0;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.nav-logo img:hover { opacity: 0.8; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}

/* Base state pseudo line */
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}

/* Active State & Hover Effect ke lie CSS */
.nav-links a:hover::after,
.nav-links a.active::after { 
  width: 100%; 
}

/* Text colour turns gold when active */
.nav-links a.active {
  color: var(--gold); 
}

.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 12px 30px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover { 
  background: var(--gold-light); 
  transform: translateY(-1px); 
  box-shadow: 0 8px 24px rgba(200,169,110,0.35); 
}

.hamburger { 
  display: none; flex-direction: column; gap: 5px; cursor: pointer; 
}

.hamburger span { 
  width: 26px; height: 2px; background: var(--white); transition: all 0.3s; display: block; 
}

/* --- ACTIVE STYLING FOR MOBILE MENU (Add your exact mobile css around it) --- */
.mobile-menu a.active {
  color: var(--gold);
  font-weight: 700;
}

  /* ── SLIDESHOW / HERO ── */
  .hero {
    position: relative; height: 100vh; min-height: 600px;
    overflow: hidden; display: flex; align-items: flex-end;
  }
  .slides-wrapper {
    position: absolute; inset: 0;
  }
  .slide {
    position: absolute; inset: 0;
    background-size: cover; 
	background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.2s var(--transition), transform 7s linear;
  }
  .slide.active {
    opacity: 1; transform: scale(1);
  }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.35) 50%, rgba(13,27,42,0.1) 100%);
  }

  /* Actual hotel photos from TripAdvisor CDN */
.slide-1  { background-image: url('../images/Hotel-exterior1_1.webp'); }
.slide-2  { background-image: url('../images/Exterior2_1.webp'); }
.slide-3  { background-image: url('../images/LobbyInterior1_1.webp'); }
.slide-4  { background-image: url('../images/LobbyInterior2_1.webp'); }
.slide-5  { background-image: url('../images/SuitesSpecialtyRooms7_1.webp'); }
.slide-6  { background-image: url('../images/StandardRoomsBedroom.avif'); }
.slide-7  { background-image: url('../images/SuitesSpecialtyRooms-1.webp'); }
.slide-8  { background-image: url('../images/BusinessCenter1_1.avif'); }
.slide-9  { background-image: url('../images/BreakfastArea1_1.avif'); }
.slide-10 { background-image: url('../images/BreakfastArea2_1.avif'); }
.slide-11 { background-image: url('../images/PoolCourtyard1_1.webp'); }


  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px 100px;
    max-width: 780px;
    animation: heroIn 1.4s var(--transition) both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    color: var(--gold); font-size: 10px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.2vw, 62px);
    color: var(--white); line-height: 1.08;
    font-weight: 300; margin-bottom: 16px;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
    color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 300;
    line-height: 1.7; margin-bottom: 32px; max-width: 460px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 15px 36px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,169,110,0.4); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 15px 36px; font-size: 12px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; background: transparent;
    transition: all 0.3s var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Slide dots */
  .slide-dots {
    position: absolute; bottom: 40px; right: 80px;
    z-index: 3; display: flex; gap: 10px;
  }
  .dot {
    width: 28px; height: 2px; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.3s;
  }
  .dot.active { background: var(--gold); width: 48px; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,0.5); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    animation: bounce 2.5s infinite;
  }
  .scroll-hint::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
  @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

  /* ── BOOKING BAR ── */
  .booking-bar {
    background: var(--navy);
    padding: 0 80px;
    position: relative; z-index: 5;
  }
  .booking-inner {
    display: flex; align-items: stretch; gap: 0;
    background: var(--navy-mid);
    border-top: 2px solid var(--gold);
  }
  .booking-field {
    flex: 1; padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 6px;
  }
  .booking-field label {
    color: var(--gold); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  }
  .booking-field input, .booking-field select {
    background: transparent; border: none; outline: none;
    color: var(--white); font-size: 15px;
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    width: 100%; cursor: pointer;
  }
  .booking-field select option { background: var(--navy-mid); }
  .booking-submit {
    background: var(--gold); padding: 0 48px;
    border: none; cursor: pointer;
    color: var(--navy); font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: all 0.3s; white-space: nowrap;
    clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .booking-submit:hover { background: var(--gold-light); }
  .booking-submit:disabled { opacity: 0.55; cursor: not-allowed; }

  /* field error highlight */
  .booking-field.has-error input,
  .booking-field.has-error select {
    border-bottom: 2px solid #e05555 !important;
    padding-bottom: 2px;
  }
  .field-error {
    font-size: 10px; color: #ff7a7a;
    letter-spacing: 0.04em; min-height: 12px;
    margin-top: 2px; display: block;
  }

  /* date inputs — colored calendar icon */
  input[type="date"] {
    color-scheme: dark;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
    cursor: pointer; opacity: 0.8;
  }
  input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

  /* toast */
  .booking-toast {
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1e3a24; border: 1px solid #4caf7a;
    color: #7dffaa; padding: 12px 28px; font-size: 13px;
    letter-spacing: 0.06em; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s, transform 0.35s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    z-index: 10;
  }
  .booking-toast.error-toast {
    background: #3a1e1e; border-color: #cf5656; color: #ffaaaa;
  }
  .booking-toast.show {
    opacity: 1; transform: translateX(-50%) translateY(0);
  }

  /* pulse on error */
  @keyframes shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-5px); }
    40%      { transform: translateX(5px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
  }
  .booking-inner.shake { animation: shake 0.45s ease; }

  /* ── SECTION SHARED ── */
  section { padding: 40px 80px; }
  .section-tag {
    color: var(--gold); font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300; line-height: 1.1;
    color: var(--navy); margin-bottom: 20px;
  }
  .section-title em { font-style: italic; }
  .section-lead {
    font-size: 16px; line-height: 1.8; color: #4a5568;
    max-width: 580px; font-weight: 300;
  }

  /* fade-in on scroll */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* ── WELCOME ── */
.welcome {
  background: var(--cream, #fdfbf7);
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px;
  align-items: center;
  padding: 60px 40px; /* Optional, just spacing logic */
}
.welcome-images {
  position: relative; 
  height: 560px;
}
.welcome-img-main {
  position: absolute; 
  top: 0; left: 0;
  width: 75%; height: 80%;
  background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/d2/hotel-exterior.jpg?w=800&h=600&s=1') center/cover;
  box-shadow: 20px 20px 60px rgba(13,27,42,0.18);
}
.welcome-img-accent {
  position: absolute; 
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/df/breakfast-room.jpg?w=600&h=400&s=1') center/cover;
  border: 6px solid var(--cream, #fdfbf7);
  box-shadow: 10px 10px 40px rgba(13,27,42,0.12);
}
.welcome-badge {
  position: absolute; 
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--gold, #C8A96E);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(200,169,110,0.4);
  z-index: 2;
}
.welcome-badge span:first-child { 
  font-size: 28px; font-weight: 700; color: var(--navy, #0D1B2A); line-height: 1; 
}
.welcome-badge span:last-child { 
  font-size: 9px; letter-spacing: 0.1em; color: var(--navy, #0D1B2A); text-transform: uppercase; 
}
.welcome-text { 
  padding: 20px 0; 
}
.welcome-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.stat-card {
  padding: 15px;
}
.stat-num {
  font-size: 28px;
  font-weight: bold;
  color: var(--navy, #0D1B2A);
}
.stat-label {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

/* ── BUTTON STYLES (Read More / Read Less) ── */
.theme-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background-color: var(--navy, #0D1B2A);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.theme-btn:hover {
  background-color: var(--gold, #C8A96E);
}
.read-less-btn {
  margin-top: 25px;
  width: 100%;
}

/* ── POPUP / MODAL CSS ── */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85); /* Dark transparent overlay */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Shows the modal when class 'active' is added via JS */
.welcome-modal.active {
  visibility: visible;
  opacity: 1;
}

.welcome-modal-content {
  background: var(--cream, #fff);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  padding: 40px 50px;
  border-radius: 8px;
  position: relative;
  overflow-y: auto; /* Scrollbaar banayega content jayda ho to */
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  font-weight: 300;
  color: #333;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--gold, #C8A96E);
}

.modal-body {
  color: #444;
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 20px;
  font-size: 16px;
}

.modal-body h3 {
  color: var(--navy, #0D1B2A);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.modal-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.modal-body ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.modal-body ul li strong {
  color: var(--navy, #0D1B2A);
}

.final-modal-text {
  font-style: italic;
  font-weight: 600;
  margin-top: 25px;
}

/* For small mobile devices */
@media screen and (max-width: 768px) {
  .welcome {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .welcome-modal-content {
    padding: 30px 20px;
  }
}
  .stat-card {
    padding: 24px; border-left: 2px solid var(--gold);
    background: var(--white);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--navy); line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label { font-size: 12px; color: #8a9bb0; letter-spacing: 0.08em; }

  /* ── AMENITIES ── */
  .amenities { background: var(--navy); }
  .amenities .section-title { color: var(--white); }
  .amenities .section-tag { color: var(--gold); }
  .amenities .section-lead { color: rgba(255,255,255,0.6); }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px; margin-top: 60px;
  }
  .amenity-card {
    background: var(--navy-mid);
    padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: all 0.4s var(--transition); cursor: default;
  }
  .amenity-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--transition);
  }
  .amenity-card:hover { background: var(--navy-light); transform: translateY(-4px); }
  .amenity-card:hover::before { transform: scaleX(1); }
  .amenity-icon {
    font-size: 36px; margin-bottom: 20px;
    display: block;
  }
  .amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--white);
    font-weight: 400; margin-bottom: 10px;
  }
  .amenity-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ── ROOMS ── */
  .rooms { background: var(--white); }
  .rooms-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 60px;
  }
  .room-card {
    background: var(--cream);
    overflow: hidden; position: relative;
    transition: transform 0.4s var(--transition), box-shadow 0.4s;
  }
  .room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(13,27,42,0.12); }
  .room-img {
    height: 240px; overflow: hidden;
  }
  .room-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--transition);
  }
  .room-card:hover .room-img img { transform: scale(1.07); }
  .room-body { padding: 28px; }
  .room-type {
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin-bottom: 10px;
  }
  .room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; color: var(--navy); font-weight: 400;
    margin-bottom: 10px;
  }
  .room-desc { font-size: 13px; color: #6b7c93; line-height: 1.7; margin-bottom: 20px; }
  .room-features {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
  }
  .room-feature {
    font-size: 11px; color: var(--navy-mid);
    letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 5px;
  }
  .room-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid rgba(13,27,42,0.08);
  }
  .room-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); }
  .room-price small { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8a9bb0; }
  .room-btn {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy); font-weight: 600; text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--navy); padding-bottom: 2px;
    transition: all 0.3s;
  }
  .room-btn:hover { color: var(--gold); border-color: var(--gold); }

  /* ── ATTRACTIONS ── */
  .attractions { background: var(--cream); }
  .attractions-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start; margin-top: 60px;
  }
  .attraction-map {
    height: 400px; background: var(--navy-mid);
    overflow: hidden; position: relative;
  }
  .attraction-map iframe {
    width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1);
  }
  .attraction-list { display: flex; flex-direction: column; gap: 0; }
  .attraction-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px 0; border-bottom: 1px solid rgba(13,27,42,0.08);
    transition: all 0.3s;
  }
  .attraction-item:hover .attraction-icon { background: var(--gold); color: var(--navy); }
  .attraction-icon {
    min-width: 48px; height: 48px;
    background: var(--white); display: flex;
    align-items: center; justify-content: center;
    font-size: 20px; transition: all 0.3s;
  }
  .attraction-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 4px;
  }
  .attraction-info p { font-size: 16px; color: #6b7c93; line-height: 1.6; }
  .attraction-dist { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; margin-top: 4px; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--navy); padding: 80px; }
  .testimonials .section-title { color: var(--white); }
  .testimonials .section-tag { color: var(--gold); }
  .testimonials-slider {
    display: flex; gap: 28px; margin-top: 60px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
    padding-bottom: 10px;
  }
  .testimonials-slider::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 360px; background: var(--navy-mid);
    padding: 40px; scroll-snap-align: start;
    border-top: 2px solid var(--gold); flex-shrink: 0;
  }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic; color: rgba(255,255,255,0.85);
    line-height: 1.6; margin-bottom: 24px;
  }
  .testimonial-author { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
  .testimonial-date { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    position: relative; padding: 120px 80px;
    text-align: center; overflow: hidden;
    background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/d2/hotel-exterior.jpg?w=1400&h=800&s=1') center/cover fixed;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(13,27,42,0.85);
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-banner .section-tag { justify-content: center; }
  .cta-banner .section-title { color: var(--white); text-align: center; margin: 0 auto 20px; }
  .cta-banner p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 40px; }
  .cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; color: var(--gold); margin-bottom: 30px;
    font-weight: 300;
  }

  /* ── FOOTER ── */
  footer {
    background: #060e18;
    padding: 60px 60px 0;
  }
  .footer-grid {
  
    display:flex; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 100px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand img {
    height: 40px; filter: brightness(0) invert(1);
    opacity: 0.8; margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 18px; color: rgba(255,255,255,0.45);
    line-height: 1.8; max-width: 300px;
  }
  .footer-col h5 {
    color: var(--gold); font-size: 24px;
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 20px;
  }
  /*.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }*/
  
  .hotel-policy ul{
    display: block;
    list-style: none;
    padding: 0;
}

.hotel-policy ul li{
    margin-bottom: 10px;
}
  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    list-style: none;
    padding: 0;
}

  .footer-col-1 ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    list-style: none;
    padding: 0;
}
  .hotel-policy ul{
    display: block;
    list-style: none;
    padding: 0;
	color: rgba(255, 255, 255, 0.45);
}

.hotel-policy ul li{
    margin-bottom: 10px;
}
  
  
  .footer-col ul a {
    color: rgba(255,255,255,0.45);     font-size: 18px;
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  
  .footer-contact h5{
    color: #d4af6d;
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 600;
}


  .footer-contact-item {
     /* display: flex;*/
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }
  
  .contact-icon{
    color: #ff4f8b;
    font-size: 18px;
    min-width: 22px;
    margin-top: 4px;
}


  .footer-contact-item span:first-child { color: var(--gold); font-size: 16px; min-width: 20px; }
  .footer-contact-item p {   
  margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400; 
	}
  .footer-contact-item a {    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: 0.3s ease; }
  .footer-contact-item a:hover {     color: #d4af6d; }
  /*.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0;
  }*/

  .footer-bottom{
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}


.footer-bottom p{
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
  
  .footer-bottom a{
    color: #d4af6d;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom a:hover{
    color: #fff;
}
  

  
  .footer-socials { display: flex;
    gap: 18px;
    margin-top: 0px; }
  .social-btn {
width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.35s ease;;
  }
  .social-btn:hover {     border-color: #d4af6d;
    color: #d4af6d;
    transform: translateY(-4px); }

  /* ── MOBILE NAV MENU ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--navy); z-index: 2000;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--white); text-decoration: none;
    font-size: 28px; font-family: 'Cormorant Garamond', serif;
    font-style: italic; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute; top: 24px; right: 28px;
    color: var(--gold); font-size: 32px; cursor: pointer;
    background: none; border: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    section { padding: 80px 48px; }
    nav { padding: 18px 48px; }
    .hero-content { padding: 0 48px 80px; }
    .booking-bar { padding: 0 48px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cta-banner { padding: 100px 48px; }
    .footer { padding: 60px 48px 0; }
  }

  @media (max-width: 800px) {
    .topbar { padding: 8px 24px; font-size: 11px; display: block; }
	.topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    display: block;
}

.footer-grid {
    display: block!important;
	
	
	}
 
 

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 24px 80px; }
    .slide-dots { right: 24px; }
    .booking-bar { padding: 0 24px; }
    .booking-inner { flex-direction: column; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .booking-submit { padding: 18px; clip-path: none; }
    section { padding: 60px 24px; }
    .welcome { grid-template-columns: 1fr; }
    .welcome-images { height: 320px; }
    .welcome-stats { grid-template-columns: 1fr 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .attractions-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    footer { padding: 60px 24px 0; }

    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-banner { padding: 80px 24px; }
    .testimonials { padding: 60px 24px; }
    .testimonial-card { min-width: 280px; }
    .cta-phone { font-size: 30px; }
  }
  
  
  .footer-business-info{
    margin-top: 10px;
}

.footer-hotel-name{
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.footer-hotel-desc{
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact-row{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0px;
}

.footer-icon{
    color: #d4af6d;
    font-size: 18px;
    min-width: 22px;
    margin-top: 2px;
}

.footer-contact-row p{
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 16px;
}

.footer-contact-row a{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact-row a:hover{
    color: #d4af6d;
}

/* Mobile Responsive */
@media(max-width:768px){

 .footer-contact h5{
        font-size: 18px;
        letter-spacing: 4px;
    }

    .footer-hotel-name{
        font-size: 18px;
    }

    .footer-contact-row p{
        font-size: 15px;
    }
	
	    .footer-contact-item p{
        font-size: 15px;
        line-height: 1.8;
    }

    .social-btn{
        width: 42px;
        height: 42px;
    }

}




  /* ── COOKIE BANNER ── */
  .cookie-bar {
       position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: 0.4s;
    z-index: 9999;
  }
  .cookie-bar.visible { transform: translateY(0); }
  .cookie-bar p { margin: 0; flex: 1; }
  .cookie-bar a { color: var(--gold); text-decoration: underline; }
  .cookie-accept {
    background: var(--gold); color: var(--navy);
    border: none; cursor: pointer; white-space: nowrap;
    padding: 10px 28px; font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.3s var(--transition); flex-shrink: 0;
  }
  .cookie-accept:hover { background: var(--gold-light); }
  @media (max-width: 600px) {
    .cookie-bar { flex-direction: column; padding: 16px 24px; text-align: center; }
  }
  
  /* Back To Top */
#backToTop{
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,#d4af6d,#b9924c);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Show Button */
#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Effect */
#backToTop:hover{
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* Floating Animation */
@keyframes floatBtn{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
    100%{ transform: translateY(0); }
}

#backToTop.show{
    animation: floatBtn 2s ease-in-out infinite;
}










/* New Facility Section */
.new-facility-section {
    text-align: center;
    color: #0d1b2af7; 
}

.new-facility-container {
    margin: 0 auto;
}

.new-facility-title {
    color: #c8a96e; 
    margin-bottom: 40px;
    position: relative;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #0d1b2af7; 
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.15);
}

/* Icon Background */
.icon-background {
    background: #0d1b2af7; 
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid #c8a96e; 
}

/* ----- FIX APPLIED HERE ----- */
.icon-background i {
    font-size: 2.5em; /* Set icon size to medium */
}
/* --------------------------- */

.facility-box-creative:hover .icon-background {
    background: #0d1b2af7; 
}

/* Facility Information */
.facility-info {
    padding: 25px 20px;
    text-align: center;
}

.facility-info h3 {
    color: #c8a96e; 
    margin-bottom: 12px;
}

.facility-info p {
    color: #0d1b2af7; 
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #0d1b2af7; 
    color: #ffffff;
    text-align: center;
}

.features-title {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 35px;
}

.features-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #c8a96e; 
    margin: 10px auto;
}

.features-subtitle {
    opacity: 0.9;
}

/* Cards Container */
.features-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Base */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    padding: 30px;
    color: #0d1b2af7; 
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.1);
    box-sizing: border-box;
    flex-grow: 1;
}

/* Special wider style for the Room Types card */
.feature-card.card-red {
    max-width: 450px;
    min-width: 380px;
}

/* Card Colors */
.card-blue .card-icon {
    background: #0d1b2af7; 
}

.card-red .card-icon {
    background: #c8a96e; 
}

.card-purple .card-icon {
    background: #0d1b2af7; 
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(13, 27, 42, 0.2);
}

/* Card Heading */
.card-heading {
    margin-bottom: 20px;
    color: #0d1b2af7; 
}

/* Card List */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-list li {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.1);
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

/* Dot Style (for blue card) */
.dot {
    width: 8px;
    height: 8px;
    background: #0d1b2af7; 
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Number Style (for red card) */
.number {
    background: #c8a96e; 
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Minus Style (for purple card) */
.minus {
    width: 20px;
    height: 4px;
    background: #0d1b2af7; 
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-card.card-red {
        max-width: 380px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
    }

    .feature-card.card-red {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .icon-background {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Main Amenities Section */
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
    background-color: #ffffff;
}

.roosevelt-amenities-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.roosevelt-category-section {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.roosevelt-category-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.1); 
}

.roosevelt-category-title {
    font-size: 2.2rem; 
    color: #0d1b2af7; 
    margin-top: 0;
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%;
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #c8a96e; 
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.roosevelt-category-image {
    width: 100%;
    height: 250px;
    border-radius: 12px; 
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(13, 27, 42, 0.08);
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.roosevelt-category-image:hover img {
    transform: scale(1.08); 
}

.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0;
    background: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
}

.roosevelt-amenities-feature-column:hover {
    transform: none;
    box-shadow: none;
}

.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(200, 169, 110, 0.1); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: #c8a96e; 
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: #0d1b2af7; 
    font-size: 1.15rem; 
    font-weight: 500;
}

.roosevelt-amenities-divider {
    display: none; 
}

/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .roosevelt-amenities-container { padding: 0 1.5rem; }
    .roosevelt-category-title { font-size: 2rem; }
}
@media (max-width: 992px) {
    .roosevelt-amenities { padding: 4rem 0; }
    .roosevelt-categories-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .roosevelt-category-section { padding: 2rem; }
    .roosevelt-category-image { height: 220px; margin-bottom: 1.5rem; }
    .roosevelt-category-title { font-size: 1.8rem; }
}
@media (max-width: 900px) {
    .attractions-container { grid-template-columns: 1fr; }
    .category { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .roosevelt-amenities-container { padding: 0 1rem; }
    .roosevelt-category-section { padding: 1.8rem; }
    .roosevelt-category-image { height: 200px; }
    .roosevelt-category-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .roosevelt-amenities-feature-list li { padding: 0.8rem 0; }
    .roosevelt-amenities-feature-icon { font-size: 1.4rem; min-width: 24px; margin-right: 1rem; }
    .roosevelt-amenities-feature-text { font-size: 1rem; }
}
@media (max-width: 576px) {
    .roosevelt-amenities { padding: 3rem 0; }
    .roosevelt-categories-grid { gap: 2rem; }
    .roosevelt-category-section { padding: 1.5rem; }
    .roosevelt-category-title { font-size: 1.5rem; }
    .roosevelt-category-title:after { width: 50px; height: 3px; margin-top: 0.5rem; }
    .roosevelt-category-image { height: 180px; margin-bottom: 1rem; }
}

/* ── INNER ABOUT (Properly Centered & 100% Full Width) ── */
.inner.about {
  max-width: 100% !important; 
  width: 100%;
  grid-column: 1 / -1;
  padding: 20px 20px;         
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.inner.about .section-tag,
.inner.about .section-title,
.inner.about .section-lead {
  text-align: center !important;
  max-width: 1400px;            
  width: 100%;
  margin-left: auto;           
  margin-right: auto;
}

/* ====== New Attraction Section ====== */
/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }

    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */

/* Card Styles */
.New-attraction-card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(13, 27, 42, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(200, 169, 110, 0.25);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0d1b2af7;
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #0d1b2af7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #0d1b2af7;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

.New-attraction-card-details i {
    color: #c8a96e;
    font-size: 16px;
    width: 16px; 
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.New-attraction-card-details a {
    color: inherit; 
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #c8a96e;
}

/* ===================================================================
   --- 3. NEARBY ATTRACTIONS SECTION ---
   =================================================================== */

.attractions-section {
  background: #ffffff; 
  padding: 39px 8% 80px 8%;
  color: #0d1b2af7; 
}

/* Header */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #0d1b2af7;
  margin: 0;
  position: relative;
}

.attractions-title span {
  color: #c8a96e; 
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c8a96e; 
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

/* Attractions Grid */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0; 
    max-width: 1500px;
}

.attractions-container .category {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(13, 27, 42, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13, 27, 42, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #c8a96e;
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #0d1b2af7; 
    color: #ffffff; 
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    color: #ffffff; 
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(13, 27, 42, 0.1); 
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}
.attractions-container .attraction-details {
    flex-grow: 1;
    padding-right: 15px;
}
.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #0d1b2af7;
}

.attractions-container .attraction-type {
    color: #0d1b2af7;
}

.attractions-container .attraction-distance {
    background-color: #c8a96e; 
    color: #ffffff; 
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    background-color: #0d1b2af7; 
    transform: scale(1.05);
    color: #ffffff; 
}

/* ===== Responsive for Nearby Attractions ===== */
@media (max-width: 992px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .attractions-section {
        padding: 40px 15px;
    }
    .attractions-header {
        justify-content: center;
        text-align: center;
    }
    .attractions-title {
        font-size: 2.2rem;
    }
    .attractions-title::after {
        margin: 12px auto 0;
    }
    .attractions-container {
        gap: 30px;
    }
}


/* ====== Gallery and Lightbox ====== */

/* Gallery Grid Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(13, 27, 42, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.85); 
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    text-align: center;
    color: #ffffff;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    transition: opacity 0.4s ease-in-out; 
    max-width: 80vw;
}

/* Navigation & Close Buttons */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    user-select: none; 
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #c8a96e;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ===== Responsive for Gallery and Lightbox ===== */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
        margin-top: -20px;
    }
    #lightbox-img {
        max-width: 95vw;
        max-height: 75vh;
    }
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    .prev-btn, .next-btn {
        font-size: 24px;
        padding: 10px;
    }
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
     #lightbox-caption {
        font-size: 1em;
    }
}

/* ===== Location Section Hero ===== */
.location-section-hero {
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #0d1b2af7;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #0d1b2af7;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ===== Coordinates & Directions Panels ===== */
.coordinates-area,
.directions-area {
  background: #ffffff;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-left: 5px solid #c8a96e; 
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(13, 27, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(200, 169, 110, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #0d1b2af7;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #0d1b2af7;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== Form Styling ===== */
.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.3);
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #0d1b2af7, #c8a96e);
  color: #ffffff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(13, 27, 42, 0.1);
}

.directions-area form button:hover {
  background: linear-gradient(90deg, #c8a96e, #0d1b2af7);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(13, 27, 42, 0.25);
}

/* ===== Map Box (Right Side) ===== */
.location-map-box {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-left: 3px solid #c8a96e;
  min-height: 400px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-info-box {
    padding: 30px 25px;
  }
  
  .location-map-box {
    height: 350px;
    min-height: auto;
    border-left: none;
    border-top: 3px solid #c8a96e;
  }

  .location-info-box h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
    .location-section-hero {
        padding: 40px 15px;
    }
    .location-info-box h2 {
        font-size: 2rem;
    }
    .location-info-box p {
        font-size: 1rem;
    }
    .location-map-box {
        height: 300px;
    }
}


/* ===== Contact Header Section (Oxford Theme) ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #ffffff;
}

/* ===== Title Styling ===== */
.custom-contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0d1b2af7; 
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Elegant orange-gold underline accent */
.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d1b2af7, #c8a96e);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Description Text ===== */
.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #0d1b2af7;
  max-width: 1100px;
  margin: 30px auto 0;
  font-weight: 400;
}

/* Highlighted text emphasis */
.custom-contact-description strong {
  color: #c8a96e;
  font-weight: 600;
}

/* ===== Inline Links ===== */
.custom-contact-description a {
  color: #0d1b2af7;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #c8a96e;
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 767px) {
  .custom-contact-header {
    padding: 40px 15px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ===== Main Contact Info Section (Oxford Theme) ===== */
.contact-section-hero {
  padding: 20px 20px;
}

/* Wrapper Box */
.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #0d1b2af7; 
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #0d1b2af7;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== Contact Details Box ===== */
.contact-details-area {
  background: #ffffff; 
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-left: 5px solid #c8a96e;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(13, 27, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(200, 169, 110, 0.25);
}

.contact-details-area h4 {
  color: #0d1b2af7;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #0d1b2af7;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Links ===== */
.contact-details-area a {
  color: #0d1b2af7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #c8a96e;
  text-decoration: underline;
}

/* ===== Right Side Image ===== */
.contact-image-box {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-left: 3px solid #c8a96e;
  min-height: 400px;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 30px 25px;
  }

  .contact-image-box {
    height: 350px;
    min-height: auto;
    border-left: none;
    border-top: 3px solid #c8a96e;
  }

  .contact-info-box h2 {
    font-size: 2.2rem;
  }

  .contact-info-box p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
    .contact-image-box {
        height: 300px;
    }
     .contact-info-box h2 {
        font-size: 2rem;
    }
}


/* ===== Comfort Inn & Suites, Oxford Sitemap Section ===== */
.sitemap-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* ===== Container ===== */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Title ===== */
.sitemap-title {
  font-size: 3rem;
  color: #0d1b2af7; 
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d1b2af7, #c8a96e);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Subtitle ===== */
.sitemap-subtitle {
  font-size: 1.2rem;
  color: #0d1b2af7;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sitemap Links Grid ===== */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Sitemap Blocks ===== */
.sitemap-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.5);
  text-align: left;
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.2); 
}

/* ===== Headings ===== */
.sitemap-block h2 {
  font-size: 1.8rem;
  color: #0d1b2af7;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== List Styles ===== */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

/* ===== Link Styles ===== */
.sitemap-block ul li a {
  font-size: 18px;
  color: #0d1b2af7;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a em { 
  margin-right: 10px;
  font-size: 1.2rem;
  color: #c8a96e;
  transition: color 0.3s ease;
}
.sitemap-block ul li a i { 
    margin-right: 10px;
    font-size: 1rem;
    color: #c8a96e;
    transition: color 0.3s ease;
    width: 20px;
    text-align: center;
}

.sitemap-block ul li a:hover {
  color: #c8a96e;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover em,
.sitemap-block ul li a:hover i {
  color: #0d1b2af7;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }
  .sitemap-subtitle {
      font-size: 1rem;
      margin-bottom: 30px;
  }

  .sitemap-block {
      padding: 30px;
  }

  .sitemap-block h2 {
    font-size: 1.4rem;
  }

  .sitemap-block ul li a {
    font-size: 16px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: -40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #0d1b2af7;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0d1b2af7, #c8a96e);
    border-radius: 2px;
}

.faq-header p {
    color: #0d1b2af7;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.faq-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(13, 27, 42, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #c8a96e;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.12);
}

.faq-question {
    padding: 25px;
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.05);
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #0d1b2af7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b2af7;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13, 27, 42, 0.1), transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #0d1b2af7;
}

.faq-answer a {
    color: #c8a96e;
    font-weight: 600;
    text-decoration: underline;
    transition: color .3s ease;
}

.faq-answer a:hover {
    color: #0d1b2af7;
    text-decoration: none;
}

.faq-answer .fa-caret-right {
    color: #c8a96e;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }

     .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }

     .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}

/* ── INNER HERO SECTION ── */
  .inner-hero-section {
    position: relative; height: 85vh; min-height: 400px;
    overflow: hidden; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
  }
  .inner-slides-wrapper {
    position: absolute; inset: 0;
  }
  .inner-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; 
    transform: scale(1);
    transition: transform 7s linear;
  }
  .inner-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.35) 100%, rgba(13,27,42,0.1) 100%);
    z-index: 1;
  }

  .inner-hero-content {
    position: relative; z-index: 2;
    padding: 0 20px 100px; 
    width: 100%;
    max-width: 780px;
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    animation: innerHeroIn 1.4s ease-out both;
  }
  @keyframes innerHeroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  .inner-hero-eyebrow {
    color: #c8a96e; font-size: 10px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 12px; 
    display: flex; align-items: center; justify-content: center; 
    gap: 12px;
  }
  
  .inner-hero-eyebrow::before,
  .inner-hero-eyebrow::after {
    content: ''; width: 32px; height: 1px; background: #c8a96e;
  }

  .inner-hero-title {
    font-size: clamp(32px, 4.2vw, 62px);
    color: #ffffff; line-height: 1.08;
    font-weight: 300; margin-bottom: 16px;
  }
  .inner-hero-title em { font-style: italic; color: #c8a96e; }
  
  .inner-hero-subtitle {
    color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 300;
    line-height: 1.7; max-width: 460px;
    margin: 0 auto 32px auto; 
  }

  /* Buttons center */
  .inner-hero-btns { 
    display: flex; gap: 16px; flex-wrap: wrap; 
    justify-content: center; 
  }
  
  .btn-primary {
    background: #c8a96e; color: #ffffff;
    padding: 15px 36px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover { background: #0d1b2af7; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,27,42,0.4); }
  
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.5); color: #ffffff;
    padding: 15px 36px; font-size: 12px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; background: transparent;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-outline:hover { border-color: #c8a96e; color: #c8a96e; }

  /* Scroll indicator */
  .inner-scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,0.5); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    animation: innerBounce 2.5s infinite;
  }
  .inner-scroll-hint::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
  @keyframes innerBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }


  .ada-st {
    padding: 1em;
    text-align: center;
      background: #0d1b2af7;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.phone-ada
{
    padding: 1em;
    text-align: center;
   
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}