/*
Theme Name: Sharm Hotel Theme
Theme URI: https://www.sharmhotel.nl
Author: Sharm Hotel
Author URI: https://www.sharmhotel.nl
Description: A custom WordPress theme for Sharm Hotel, designed to match the original website design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sharmhotel
Tags: hotel, booking, custom, responsive
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff;
  --secondary-color: #d4a574;
  --text-color: #333;
  --light-bg: #f8f8f8;
  --white: #ffffff;
  --dark: #1a1a1a;
  --hero-bg: #1a0d3d;
  --accent-glow: #ffa500;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

body.home .site-main {
  margin-top: 0;
}

/* Header Styles */
.site-header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  width: 100%;
}

/* Header with background on non-home pages */
body:not(.home) .site-header {
  background: rgba(26, 13, 61, 0.95);
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 1001;
}

.site-logo a {
  text-decoration: none;
  color: var(--white);
}

.site-logo h1 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.site-logo img {
  max-height: 40px;
  width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Header Actions - Mobile First */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0;
}

.main-navigation ul a {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 0.95rem;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.main-navigation a:hover {
  opacity: 0.8;
}

.header-book-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-book-btn:hover {
  background: #0056b3;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Styles (default) */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 0 16px;
  }

  .header-actions {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 13, 61, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .header-actions.active {
    right: 0;
  }

  .main-navigation {
    flex: 0;
    width: 100%;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-navigation ul a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
  }

  .header-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-book-btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Tablet and Desktop Styles */
@media (min-width: 769px) {
  .header-container {
    padding: 0 40px;
  }

  .site-logo {
    font-size: 1.5rem;
  }

  .site-logo h1 {
    font-size: 1.5rem;
  }

  .site-logo img {
    max-height: 50px;
  }

  .header-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .main-navigation {
    flex: 1;
    justify-content: center;
  }

  .main-navigation ul {
    gap: 2.5rem;
  }

  .main-navigation ul a {
    font-size: 1rem;
  }

  .header-book-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero-section {
  background: var(--hero-bg);
  color: var(--white);
  padding: 0;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: var(--hero-bg);
  /* Optioneel: gebruik een achtergrondafbeelding als deze bestaat */
  /* background-image: url('images/hero-background.jpg'); */
  /* background-size: cover; */
  /* background-position: center; */
}

.hero-background.has-bg-image {
  background-size: cover;
  background-position: center;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px 150px;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: var(--white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage enhancements */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 13, 61, 0.82) 0%,
    rgba(26, 13, 61, 0.65) 70%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-background {
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  opacity: 0.95;
}

.hero-content .btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* (Removed hero decorative elements for cleaner hero background) */

/* Quick highlights */
.quick-highlights {
  padding: 0 !important;
  background: var(--light-bg) !important;
}

.quick-highlights .site-content > div {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 32px !important;
  max-width: 1100px;
  margin: 0 auto;
}

.quick-highlights .site-content > div > div {
  background: var(--white);
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.quick-highlights .site-content > div > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 123, 255, 0.18);
}

.quick-highlights h3 {
  font-size: 1.35rem;
  color: var(--text-color);
  margin-bottom: 12px;
  font-weight: 700;
}

.quick-highlights p {
  color: #666;
  line-height: 1.7;
}

.quick-highlights p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive tweaks for homepage */
@media (max-width: 1024px) {
  .hero-content {
    padding: 160px 20px 120px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 140px 18px 100px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    width: 100%;
    text-align: center;
  }

  .quick-highlights {
    padding: 70px 16px !important;
  }

  .quick-highlights .site-content > div {
    gap: 20px !important;
  }
}

.hero-decorative-elements {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #0056b3;
}

.btn-primary {
  background: var(--primary-color);
}

.btn-primary:hover {
  background: #0056b3;
}

/* Content Area */
.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Rooms Section */
.rooms-section {
  padding: 60px 20px;
  background: var(--light-bg);
}

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

.room-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Room Carousel */
.room-carousel {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-indicators .indicator.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.room-content {
  padding: 20px;
}

.room-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.room-gallery img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.room-gallery img:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.room-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.room-price {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-widget h3 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-widget a {
  color: var(--white);
  text-decoration: none;
}

.footer-widget a:hover {
  color: var(--secondary-color);
}

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

/* Booking Form */
.booking-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

/* Page Header Section */
.page-header-section {
  background: var(--hero-bg);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

/* About Page Styles */
.about-content {
  padding: 60px 20px;
}

.about-featured-image {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-intro .lead-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.about-features {
  margin: 80px 0;
  padding: 60px 20px;
  background: var(--light-bg);
  border-radius: 10px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.about-location {
  margin: 80px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.location-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.location-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.location-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.location-image {
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-image iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 10px;
}

.location-placeholder {
  color: #999;
  font-size: 1.1rem;
  text-align: center;
  padding: 40px;
}

/* Contact Page Map */
.contact-map-section {
  margin-top: 80px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.about-cta {
  margin: 80px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a6ba0 100%);
  border-radius: 10px;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .btn {
  background: var(--white);
  color: var(--primary-color);
}

.cta-content .btn:hover {
  background: var(--light-bg);
}

/* Contact Page Styles */
.contact-info,
.contact-form-wrapper {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-message {
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   MODERN CONTACT PAGE ENHANCEMENTS
   ============================================ */

/* Modern Page Header */
.modern-header {
  position: relative;
  padding: 100px 20px 80px;
  overflow: hidden;
}

.modern-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 165, 0, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.modern-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Page Content */
.contact-page-content {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

/* Modern Card Styles */
.modern-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 123, 255, 0.2);
}

.modern-card:hover::before {
  transform: scaleX(1);
}

/* Section Headers */
.section-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title-large {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
  font-weight: 300;
}

.icon-wrapper {
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Contact Items */
.modern-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.03) 0%,
    rgba(212, 165, 116, 0.03) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.modern-contact-item:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.08) 0%,
    rgba(212, 165, 116, 0.08) 100%
  );
  border-color: rgba(0, 123, 255, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.contact-content h3 {
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-content p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
}

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

.contact-form-intro {
  color: #666;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.modern-form {
  margin-top: 25px;
}

.wpforms-container {
  margin-top: 20px;
}

/* Modern Alerts */
.modern-alert {
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  border-left: 4px solid;
  animation: slideIn 0.4s ease-out;
}

.contact-message.warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  border-left-color: #ffc107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
}

.contact-message.warning strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-message.warning ol {
  margin-left: 20px;
  margin-top: 10px;
  line-height: 1.8;
}

.contact-message.warning code {
  display: block;
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
}

.contact-message.warning p:last-child {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* Modern FAQ Section */
.modern-section {
  padding: 0;
  margin: 0;
  position: relative;
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.modern-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.modern-faq-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.modern-faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.modern-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 123, 255, 0.3);
}

.modern-faq-card:hover::before {
  transform: scaleY(1);
}

.faq-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.modern-faq-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.modern-faq-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Modern Policies Section */
.policies-section {
  background: var(--white);
}

.modern-policies-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.modern-policy-card {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.05) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(0, 123, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.modern-policy-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-policy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.08) 0%,
    rgba(212, 165, 116, 0.08) 100%
  );
}

.modern-policy-card:hover::after {
  opacity: 1;
}

.policy-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.modern-policy-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
}

.modern-policy-card p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Entry Content */
.contact-entry-content {
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.modern-content {
  line-height: 1.8;
  color: #555;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .main-navigation ul {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .main-navigation a {
    font-size: 0.9rem;
  }

  .header-book-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 180px 20px 120px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 20px;
  }

  .modern-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modern-card {
    padding: 25px;
  }

  .modern-header {
    padding: 60px 20px 50px;
  }

  .contact-page-content {
    padding: 50px 15px;
  }

  .modern-section {
    padding: 40px 15px;
  }

  .section-title-large {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .modern-policies-grid,
  .modern-faq-grid {
    grid-template-columns: 1fr;
  }

  .modern-contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 15px;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .quick-highlights > div > div {
    grid-template-columns: 1fr !important;
  }

  .about-features .features-grid {
    grid-template-columns: 1fr;
  }

  .room-content ul {
    grid-template-columns: 1fr !important;
  }
}

.cta-banner {
  background: linear-gradient(90deg, #4a90e2 0%, #2a5d9e 100%);
  color: var(--white);
  padding: 80px 20px 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.cta-banner-text {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner-btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid rgba(74, 144, 226, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.cta-banner-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #2a5d9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Trust Indicators */
.trust-indicators {
  padding: 60px 20px;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  min-width: 120px;
}

.trust-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.trust-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.trust-badge p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Room Preview Section */
.room-preview-section {
  padding: 0;
  background: var(--light-bg);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.room-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.room-preview-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.room-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-preview-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.room-preview-card:hover .room-preview-image img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-preview-card:hover .room-overlay {
  opacity: 1;
}

.room-preview-content {
  padding: 25px;
}

.room-preview-content h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.room-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.room-link:hover {
  color: var(--secondary-color);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Quick Highlights */
.quick-highlights {
  padding: 0;
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-score {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 0;
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.testimonial-author strong {
  display: block;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #999;
  font-size: 0.9rem;
}

/* Local Area Section */
.local-area-section {
  padding: 0;
  background: var(--white);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.attraction-card {
  background: var(--light-bg);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.attraction-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.attraction-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.attraction-card h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.attraction-card p {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.attraction-card span {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .trust-badges {
    gap: 40px;
  }

  .room-preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 50px 10px 40px 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
  }
  .cta-banner-title {
    font-size: 1.7rem;
  }
  .cta-banner-text {
    font-size: 1rem;
  }
  .cta-banner-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
