* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00a8a8;
  --secondary-color: #004d4d;
  --accent-color: #00ffcc;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: Georgia, "Times New Roman", serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active-nav {
  background: var(--primary-color);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 30px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
}

.hero-section,
.page-header {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-image,
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay,
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 2;
}

.hero-content,
.header-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1,
.header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle,
.header-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button,
.secondary-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 204, 0.5);
}

.secondary-button {
  background: var(--primary-color);
  color: var(--white);
}

section {
  padding: 80px 0;
}

section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  color: var(--secondary-color);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.intro-visual img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.location-feature {
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
}

.location-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.location-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.services-preview-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card,
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card h3,
.testimonial-card .testimonial-text {
  padding: 20px;
}

.service-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.testimonial-card {
  padding: 30px;
  text-align: center;
}

.testimonial-stars {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.stats-section {
  background: var(--secondary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-section {
  background: var(--bg-light);
}

.chart-wrapper {
  max-width: 900px;
  margin: 50px auto;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chart-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 20px;
}

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

.main-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.footer-reg {
  font-size: 0.9rem;
  color: #999;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.cookie-content h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.cookie-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-btn.accept-all {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-btn.customize {
  background: var(--bg-light);
  color: var(--text-dark);
}

.cookie-btn.decline {
  background: #ccc;
  color: var(--text-dark);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-detailed,
.room-categories {
  padding: 60px 0;
}

.service-detail,
.room-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.service-detail.reverse,
.room-category.reverse {
  direction: rtl;
}

.service-detail.reverse > *,
.room-category.reverse > * {
  direction: ltr;
}

.service-info h3,
.room-details h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-duration,
.room-size {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-info p,
.room-details p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.service-benefits,
.room-amenities {
  margin: 20px 0;
}

.service-benefits li,
.room-amenities li {
  padding: 8px 0;
  color: var(--text-light);
}

.facilities-grid,
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.facility-card,
.program-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility-card h3,
.program-header h3 {
  padding: 20px 20px 10px;
  color: var(--secondary-color);
}

.facility-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.facility-features {
  padding: 0 20px 20px;
}

.facility-features li {
  padding: 5px 0;
  color: var(--text-light);
}

.program-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
}

.program-duration {
  font-size: 0.9rem;
  opacity: 0.9;
}

.program-content {
  padding: 20px;
}

.program-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.program-content ul {
  list-style: disc;
  margin-left: 20px;
}

.program-content li {
  padding: 5px 0;
  color: var(--text-light);
}

.seasonal-events {
  padding: 60px 0;
}

.season-block {
  margin-bottom: 80px;
}

.season-header {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  color: var(--white);
}

.winter-theme {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.spring-theme {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.summer-theme {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: var(--text-dark);
}

.autumn-theme {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6a00 100%);
}

.events-grid {
  display: grid;
  gap: 40px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 30px;
}

.event-schedule {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.event-includes {
  margin: 20px 0;
  list-style: none;
}

.event-includes li {
  padding: 5px 0;
  color: var(--text-light);
}

.event-book {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  transition: var(--transition);
}

.event-book:hover {
  background: var(--secondary-color);
}

.themed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.themed-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.themed-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.themed-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.themed-highlights {
  text-align: left;
  margin: 20px 0;
}

.themed-highlights li {
  padding: 5px 0;
  color: var(--text-light);
}

.special-event-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.special-event-date {
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-event-date .month {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.special-event-date .day {
  font-size: 3rem;
  font-weight: 700;
}

.event-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  transition: var(--transition);
}

.event-btn:hover {
  background: var(--secondary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.4rem;
  line-height: 1.4;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.category-box {
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.category-box:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

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

.newsletter-signup {
  background: var(--secondary-color);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.newsletter-form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-btn {
  padding: 15px 30px;
  background: var(--accent-color);
  color: var(--text-dark);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.newsletter-privacy {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 15px;
}

.newsletter-privacy a {
  color: var(--accent-color);
  text-decoration: underline;
}

.blog-post {
  margin-top: 80px;
}

.post-header {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.post-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.post-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.post-header-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  width: 100%;
}

.post-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-header-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.post-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.post-content {
  padding: 80px 0;
}

.post-content .container-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
}

.post-body {
  max-width: 800px;
}

.post-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-color);
}

.post-body h2 {
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-align: left;
}

.post-body h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.post-body h4 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.post-body p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--text-light);
}

.post-body ul,
.post-body ol {
  margin: 20px 0 20px 30px;
  line-height: 1.9;
}

.post-body li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.post-body ul {
  list-style: disc;
}

.post-body ol {
  list-style: decimal;
}

.post-highlight {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 25px;
  margin: 30px 0;
  border-radius: 5px;
}

.post-highlight h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.post-image-wrapper {
  margin: 40px 0;
}

.post-image-wrapper img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

.post-quote {
  background: var(--secondary-color);
  color: var(--white);
  padding: 30px;
  margin: 30px 0;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.post-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

.post-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin: 50px 0;
}

.post-cta h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.post-cta p {
  margin-bottom: 25px;
  color: var(--white);
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.popular-posts li {
  margin-bottom: 15px;
}

.popular-posts a {
  color: var(--text-light);
  transition: var(--transition);
}

.popular-posts a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-weight: 500;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.email {
  background: var(--text-dark);
  color: white;
}

.share-btn:hover {
  opacity: 0.8;
  transform: translateX(5px);
}

.related-services {
  list-style: disc;
  margin-left: 20px;
}

.related-services li {
  margin-bottom: 10px;
}

.related-services a {
  color: var(--primary-color);
  transition: var(--transition);
}

.related-services a:hover {
  text-decoration: underline;
}

.related-posts {
  background: var(--bg-light);
  padding: 60px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.related-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card h3 {
  padding: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.related-meta {
  padding: 0 20px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.room-book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--accent-color);
  color: var(--text-dark);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.room-book-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.room-features-summary {
  background: var(--bg-light);
}

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

.feature-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.booking-info {
  background: var(--bg-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.info-card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.3rem;
}

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

.info-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: normal;
}

.booking-cta,
.booking-events-cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.booking-cta h2,
.booking-events-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.booking-cta p,
.booking-events-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .intro-grid,
  .service-detail,
  .room-category,
  .event-card,
  .special-event-card {
    grid-template-columns: 1fr;
  }
  
  .post-content .container-main {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .header-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle,
  .header-content p {
    font-size: 1.1rem;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .blog-grid,
  .services-preview-grid,
  .testimonials-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header-content h1 {
    font-size: 2rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 15px;
  }
  
  .cta-button,
  .secondary-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .hero-section,
  .page-header {
    height: 70vh;
    min-height: 500px;
  }
  
  section {
    padding: 50px 0;
  }
}