/* ============================================
   Luxury 5-Star Hotel Navigation Bar Styles
   Inspired by: Four Seasons, Ritz-Carlton, Aman Resorts, St. Regis, The Peninsula
   ============================================ */

/* ============================================
   CSS Variables - Luxury Color Palette
   ============================================ */
:root {
  --luxury-gold: #C9A962;
  --luxury-gold-light: #D4B978;
  --luxury-gold-dark: #A68B4B;
  --luxury-charcoal: #2C2C2C;
  --luxury-charcoal-light: #3D3D3D;
  --luxury-ivory: #FAF8F5;
  --luxury-cream: #F5F2EB;
  --luxury-white: #FFFFFF;
  --luxury-gray: #8A8A8A;
  --luxury-gray-light: #B8B8B8;
  --luxury-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
  --luxury-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --luxury-shadow-elegant: 0 6px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Main Navigation Bar
   ============================================ */
.hotel-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 28px 0;
  border-bottom: 1px solid transparent;
}

.hotel-navbar.scrolled {
  background: var(--luxury-white);
  box-shadow: var(--luxury-shadow-subtle);
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   Logo Section
   ============================================ */
.hotel-navbar-brand {
  flex-shrink: 0;
}

.hotel-logo {
  display: block;
  text-decoration: none;
  position: relative;
}

.hotel-logo-img {
  display: block;
  max-height: 100px;
  height: auto;
  width: auto;
  transition: opacity 0.3s ease;
}

.hotel-logo-white {
  opacity: 1;
}

.hotel-logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hotel-navbar.scrolled .hotel-logo-white {
  opacity: 0;
}

.hotel-navbar.scrolled .hotel-logo-dark {
  opacity: 1;
}

.hotel-logo:hover {
  opacity: 0.9;
}

/* ============================================
   Center Navigation Menu
   ============================================ */
.hotel-navbar-collapse {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hotel-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.hotel-nav-item {
  position: relative;
}

.hotel-nav-link {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--luxury-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.hotel-navbar.scrolled .hotel-nav-link {
  color: var(--luxury-charcoal);
  background: rgba(201, 169, 98, 0.12);
}

.hotel-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--luxury-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.hotel-nav-link:hover::after,
.hotel-nav-link.active::after {
  width: 100%;
}

.hotel-nav-link:hover,
.hotel-nav-link.active {
  color: var(--luxury-gold);
  background: rgba(201, 169, 98, 0.25);
}

/* ============================================
   Right Actions Section
   ============================================ */
.hotel-navbar-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hotel-contact-info {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-navbar.scrolled .hotel-contact-info {
  border-right-color: rgba(0, 0, 0, 0.1);
}

.hotel-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--luxury-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hotel-navbar.scrolled .hotel-contact-item {
  color: var(--luxury-charcoal);
}

.hotel-contact-item:hover {
  color: var(--luxury-gold);
}

.hotel-contact-item i {
  font-size: 16px;
  opacity: 0.8;
}

.hotel-book-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  color: var(--luxury-white);
  text-decoration: none;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(201, 169, 98, 0.25);
  position: relative;
  overflow: hidden;
}

.hotel-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hotel-book-btn:hover::before {
  left: 100%;
}

.hotel-book-btn:hover {
  background: linear-gradient(135deg, var(--luxury-gold-light) 0%, var(--luxury-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.35);
}

/* ============================================
   Mobile Toggle Button
   ============================================ */
.hotel-navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hotel-toggle-icon {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--luxury-white);
  transition: all 0.3s ease;
}

.hotel-navbar.scrolled .hotel-toggle-icon {
  background: var(--luxury-charcoal);
}

.hotel-navbar-toggle:hover .hotel-toggle-icon {
  background: var(--luxury-gold);
}

.hotel-navbar-toggle.active .hotel-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hotel-navbar-toggle.active .hotel-toggle-icon:nth-child(2) {
  opacity: 0;
}

.hotel-navbar-toggle.active .hotel-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Mobile Menu
   ============================================ */
@media (max-width: 992px) {
  .hotel-navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--luxury-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 100px 40px 40px;
    overflow-y: auto;
  }

  .hotel-navbar-collapse.show {
    right: 0;
  }

  .hotel-nav {
    flex-direction: column;
    gap: 0;
  }

  .hotel-nav-item {
    border-bottom: 1px solid var(--luxury-cream);
  }

  .hotel-nav-link {
    display: block;
    padding: 18px 20px;
    color: var(--luxury-charcoal);
    font-size: 14px;
    background: rgba(201, 169, 98, 0.08);
    border-radius: 4px;
    margin: 8px 0;
  }

  .hotel-nav-link::after {
    display: none;
  }

  .hotel-nav-link:hover,
  .hotel-nav-link.active {
    color: var(--luxury-gold);
    padding-left: 28px;
    background: rgba(201, 169, 98, 0.15);
  }

  .hotel-contact-info {
    display: none;
  }

  .hotel-navbar-toggle {
    display: flex;
  }

  .hotel-book-btn {
    display: none;
  }

  .hotel-navbar-inner {
    gap: 30px;
    padding: 0 30px;
  }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn i {
  font-size: 28px;
  transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn:hover i {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 20px;
  }

  .whatsapp-float-btn i {
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float-btn {
    bottom: 70px;
    right: 15px;
  }
}

/* ============================================
   Gallery Grid Styling
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Mobile responsive gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
}

/* ============================================
   Lightbox Popup Styling
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 20px;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease, transform 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--luxury-gold);
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease, transform 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-nav:hover {
  color: var(--luxury-gold);
  transform: translateY(-50%) scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  z-index: 10001;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .lightbox-prev {
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .lightbox-next {
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 80vh;
  }

  .lightbox-counter {
    bottom: 20px;
    font-size: 14px;
    padding: 6px 15px;
  }
}

/* ============================================
   Contact Information Styling
   ============================================ */
.contact-info {
  padding: 20px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.contact-icon i {
  color: var(--luxury-white);
  font-size: 20px;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin: 0 0 8px 0;
}

.contact-text {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--luxury-white);
  margin: 0;
  line-height: 1.6;
}

.contact-link {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--luxury-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--luxury-gold);
}

/* Mobile responsive contact styling */
@media (max-width: 768px) {
  .contact-item {
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-label {
    font-size: 13px;
  }

  .contact-text,
  .contact-link {
    font-size: 15px;
  }
}

/* ============================================
   Classic Contact Card Styling
   ============================================ */
.classic-contact-card {
  background: var(--luxury-white);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.classic-contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.classic-contact-header {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  padding: 30px;
  text-align: center;
}

.classic-contact-header h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--luxury-white);
  margin: 0;
  letter-spacing: 1px;
}

.classic-contact-divider {
  width: 60px;
  height: 2px;
  background: var(--luxury-white);
  margin: 15px auto 0;
  opacity: 0.8;
}

.classic-contact-body {
  padding: 40px 30px;
}

.classic-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  transition: transform 0.3s ease;
}

.classic-contact-item:last-child {
  margin-bottom: 0;
}

.classic-contact-item:hover {
  transform: translateX(5px);
}

.classic-contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

.classic-contact-icon i {
  color: var(--luxury-white);
  font-size: 22px;
}

.classic-contact-details h4 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--luxury-charcoal);
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.classic-contact-details p {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--luxury-gray);
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.classic-contact-link {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--luxury-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.classic-contact-link.large {
  font-size: 18px;
  font-weight: 500;
}

.classic-contact-link:hover {
  color: var(--luxury-gold-dark);
}

.classic-contact-link i {
  font-size: 14px;
}

.classic-contact-divider-alt {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
  margin: 25px 0;
}

/* ============================================
   Classic Map Card Styling
   ============================================ */
.classic-map-card {
  background: var(--luxury-white);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.classic-map-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.classic-map-header {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  padding: 30px;
  text-align: center;
}

.classic-map-header h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--luxury-white);
  margin: 0;
  letter-spacing: 1px;
}

.classic-map-container {
  position: relative;
  background: var(--luxury-cream);
}

.classic-map-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.classic-map-footer {
  background: var(--luxury-cream);
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.classic-map-link {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--luxury-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border: 1px solid var(--luxury-gold);
  border-radius: 4px;
  background: var(--luxury-white);
}

.classic-map-link:hover {
  background: var(--luxury-gold);
  color: var(--luxury-white);
  border-color: var(--luxury-gold);
}

/* Mobile responsive classic styling */
@media (max-width: 768px) {
  .classic-contact-header h3,
  .classic-map-header h3 {
    font-size: 24px;
  }

  .classic-contact-body {
    padding: 30px 20px;
  }

  .classic-contact-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .classic-contact-icon i {
    font-size: 18px;
  }

  .classic-contact-details h4 {
    font-size: 16px;
  }

  .classic-contact-details p,
  .classic-contact-link {
    font-size: 14px;
  }

  .classic-contact-link.large {
    font-size: 16px;
  }

  .classic-map-footer {
    padding: 15px 20px;
  }

  .classic-map-link {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* ============================================
   Elegant Contact Form Styling
   ============================================ */
.elegant-contact-form {
  background: var(--luxury-white);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  padding: 50px;
  margin: 30px 0;
}

.elegant-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.elegant-form-header h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--luxury-charcoal);
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
}

.elegant-form-header p {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--luxury-gray);
  margin: 0;
  line-height: 1.6;
}

.elegant-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.elegant-form-group {
  margin-bottom: 25px;
}

.elegant-form-group label {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--luxury-charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.elegant-input {
  width: 100%;
  padding: 15px 20px;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--luxury-charcoal);
  background: var(--luxury-cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.elegant-input:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: var(--luxury-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.elegant-input::placeholder {
  color: var(--luxury-gray-light);
}

.elegant-textarea {
  width: 100%;
  padding: 15px 20px;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--luxury-charcoal);
  background: var(--luxury-cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  resize: vertical;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.elegant-textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: var(--luxury-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.elegant-textarea::placeholder {
  color: var(--luxury-gray-light);
}

.elegant-form-submit {
  text-align: center;
  margin-top: 30px;
}

.elegant-submit-btn {
  padding: 16px 50px;
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--luxury-white);
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.25);
}

.elegant-submit-btn:hover {
  background: linear-gradient(135deg, var(--luxury-gold-light) 0%, var(--luxury-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 169, 98, 0.35);
}

.elegant-submit-btn:active {
  transform: translateY(0);
}

/* Mobile responsive elegant form */
@media (max-width: 768px) {
  .elegant-contact-form {
    padding: 30px 20px;
    margin: 20px 0;
  }

  .elegant-form-header h2 {
    font-size: 26px;
  }

  .elegant-form-header p {
    font-size: 15px;
  }

  .elegant-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .elegant-input,
  .elegant-textarea {
    padding: 12px 15px;
    font-size: 15px;
  }

  .elegant-submit-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

/* ============================================
   Contact Form Success/Error Messages
   ============================================ */
.elegant-success-message .alert,
.elegant-error-message .alert {
  border-radius: 6px;
  padding: 20px 25px;
  margin-top: 25px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.elegant-success-message .alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border-left: 4px solid #28a745;
}

.elegant-success-message .alert-success h4 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #155724;
}

.elegant-success-message .alert-success p {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.elegant-error-message .alert-danger {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.elegant-error-message .alert-danger h4 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #721c24;
}

.elegant-error-message .alert-danger p {
  font-family: "Mukta Mahee", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 992px) {
  .hotel-logo-img {
    max-height: 48px;
  }
}

@media (max-width: 768px) {
  .hotel-navbar {
    padding: 20px 0;
  }

  .hotel-navbar.scrolled {
    padding: 15px 0;
  }

  .hotel-logo-img {
    max-height: 45px;
  }

  .hotel-navbar-collapse {
    width: 280px;
    padding: 80px 30px 30px;
  }

  .hotel-navbar-inner {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hotel-logo-img {
    max-height: 38px;
  }

  .hotel-navbar-collapse {
    width: 100%;
    right: -100%;
  }

  .hotel-navbar-collapse.show {
    right: 0;
  }

  .hotel-navbar-inner {
    gap: 20px;
  }
}

/* ============================================
   Hero Section Adjustment
   ============================================ */
.site-hero {
  padding-top: 90px;
}

@media (max-width: 992px) {
  .site-hero {
    padding-top: 80px;
  }
}

/* ============================================
   Accessibility
   ============================================ */
.hotel-nav-link:focus,
.hotel-book-btn:focus,
.hotel-navbar-toggle:focus {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .hotel-navbar {
    position: static;
    background: white;
    box-shadow: none;
  }

  .hotel-navbar-collapse,
  .hotel-contact-info,
  .hotel-book-btn,
  .hotel-navbar-toggle {
    display: none;
  }

  .hotel-logo {
    color: black;
  }
}
