/*
* Paradise Hotel - Main Stylesheet
* A professional hotel website with calm blue color theme
*/

/* --------- Base Styles --------- */
:root {
    /* Freshly Squeezed Color Palette */
   ---primary-color: #D3212D;        /* Blood Orange */
--primary-light: #FF492B;        /* Lighter Blood Orange */
--primary-dark: #B81A23;         /* Darker Blood Orange */
--secondary-color: #272626;      /* White */
--accent-color: #272626;         /* Very Light Orange/Pink */
--text-color: #2d2d2d;           /* Rich black for text */
--text-light: #5f5f5f;           /* Medium gray for secondary text */
--background-color: #FFFAF5;     /* Off-white background */
--white: #ffffff;
--black: #000000;
--gray-light: #4b4949;
--gray: #2c2b2b;
--gray-dark: #9e9e9e;
--hehe: #bebec2;
    
    /* Luxury Typography */
    --heading-font: 'Cormorant Garamond', serif; /* Elegant serif font */
    --body-font: 'Montserrat', sans-serif; /* Clean, modern sans-serif */
    
    /* Refined Spacing */
    --section-spacing: 6rem;
    --content-spacing: 2.5rem;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    /* Sophisticated Border Radius */
    --border-radius-sm: 2px;
    --border-radius: 3px;
    --border-radius-lg: 5px;
    
    /* Smooth Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--primary-color);
}

/* Elegant link underline animation */
a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

a:not(.btn):hover:after {
    width: 100%;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.section-title .underline {
    height: 2px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto 1.8rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Luxury Button Styles */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Gold accent button */
.btn-accent {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Clean Submit Button Base Styling */
.submit-inquiry-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    margin-top: 24px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-inquiry-btn:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

/* Form responsive enhancements */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    button[type="submit"].btn.btn-primary.btn-block {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Luxury card styling */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* Refined typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

/* Elegant divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Custom form elements */
input, textarea, select {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 191, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* --------- Header & Navigation --------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

#header.scrolled {
    padding: 0.5rem 0;
    background-color: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.mobile-menu.show {
    right: 0;
}

.close-btn {
    align-self: flex-end;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray);
}

.mobile-menu a.active {
    color: var(--primary-color);
}

/* --------- Hero Section --------- */
/* --------- Header --------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

#header.scrolled {
  padding: 0.5rem 0;
  background-color: var(--white);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Add a max-width for better centering */
  margin: 0 auto; /* Center the header content */
  padding: 0 2rem; /* Keep some side padding */
}

.logo h1 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 2rem;
  transition: right 0.3s ease-in-out;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.mobile-menu.show {
  right: 0;
}

.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray);
}

.mobile-menu a.active {
  color: var(--primary-color);
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--white);
  position: relative;
  padding-bottom: 180px;
  animation: heroSlider 15s infinite ease-in-out;
}

/* Content stays the same */
.hero-content {
  max-width: 800px;
  padding: 2rem;
  margin-bottom: 0;
  text-align: left;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroSlider 10s infinite ease-in-out;
  filter: brightness(1.5); /* Brightness applied here */
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content .btn {
  animation: fadeIn 1s ease 1s both;
}

/* Keyframes for 3-image background slideshow */
@keyframes heroSlider {
  0%, 33% {
    background-image: url('../images/hehe\ paradise.png');
  }
  34%, 66% {
    background-image: url('../images/hehe\ room.png');
  }
  67%, 100% {
    background-image:  url('../images/s.png');
  }
}


/* Booking Form Styles */
.booking-form-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(28, 54, 95, 0.9); /* Dark blue transparent background */
  padding: 20px 2rem; /* Add horizontal padding to match hero content */
  backdrop-filter: blur(10px); /* Increase blur */
  transform: translateY(0);
  animation: fadeInUp 1s ease 1.5s both;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow */
}

.booking-form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the start (top) */
  flex-wrap: wrap;
}

.booking-form-group {
  flex: 1;
  min-width: 200px; /* Adjust min-width */
  margin: 0 1rem 1rem 0; /* Add right and bottom margin for spacing */
}

.booking-form label {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-color);
  outline: none;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
  background-color: var(--white);
  box-shadow: 0 0 0 2px var(--accent-color);
}

.booking-form button {
  margin: 1rem 0 0 0; /* Add top margin */
  padding: 1rem 2rem;
  align-self: flex-start; /* Align button to the start (left) */
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: var(--primary-light);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .hero {
    padding-bottom: 220px; /* Adjust for smaller screen height */
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-form-group {
    margin: 0 0 1rem 0;
    min-width: auto;
  }

  .booking-form button {
    width: 100%;
    margin-top: 1rem;
  }
}

/* --------- Introduction Section --------- */
.intro {
  background-color: var(--white);
}

.intro-content {
  text-align: center;
}

.intro-content p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.intro-features {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  width: 100%;
  gap: 20px; /* Added gap property */
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--background-color);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 0;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.feature p {
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1200px) {
    .feature {
        padding: 1rem;
    }

    .feature i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .intro-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .feature {
        padding: 1.2rem 1rem;
        min-width: 0;
    }
    .feature i {
        font-size: 1.7rem;
    }
    .feature h3 {
        font-size: 1.1rem;
    }
    .feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .intro-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .feature {
        padding: 1rem 0.5rem;
    }
    .feature i {
        font-size: 1.3rem;
    }
    .feature h3 {
        font-size: 1rem;
    }
    .feature p {
        font-size: 0.9rem;
    }
}

/* --------- Rooms Section --------- */
/* Hotel Room Grid Layout Styles */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font, Arial, sans-serif);
    line-height: 1.7;
    color: var(--text-color, #333);
    background-color: var(--background-color, #f9f9f9);
    letter-spacing: 0.3px;
    font-weight: 300;
}

/* Rooms grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 2.5rem;
}

/* Centered last two cards container */
.room-row-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    grid-column: 1 / -1; /* Span all columns in grid */
    margin-top: 25px;
    width: calc(2 * (100% / 3) - (25px / 3)); /* Width of 2 cards from the 3-column grid */
    margin-left: auto;
    margin-right: auto;
}
/* Responsive for smaller screens */
@media (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 18px;
        max-width: 100%;
    }

    .room-row-center {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .room-card {
        min-width: 0;
        width: 100%;
    }

    .room-image {
        height: 180px;
    }

    .room-content {
        padding: 18px 12px;
    }
}

@media (max-width: 480px) {
    .room-grid,
    .room-row-center {
        padding: 0 6px;
        gap: 12px;
    }
    .room-image {
        height: 120px;
    }
    .room-content {
        padding: 12px 6px;
    }
}

/* Room card styles */
.room-card {
    background-color: var(--white, #fff);
    box-shadow: var(--shadow, 0 2px 8px rgba(0,0,0,0.1));
    overflow: hidden;
    border-radius: var(--border-radius, 8px);
    transition: var(--transition, all 0.3s ease);
    border: none;
}

.room-card:hover {
    box-shadow: var(--shadow-lg, 0 6px 20px rgba(0,0,0,0.15));
    transform: translateY(-5px);
}

/* Room image container */
.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    z-index: 1;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition, all 0.3s ease);
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

/* Room content */
.room-content {
    padding: 28px 25px;
    background-color: var(--white, #fff);
    text-align: center;
    position: relative;
}

.room-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color, #FF7900);
}

.room-title {
    font-family: var(--heading-font, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary-color, #FF7900);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.room-description {
    font-size: 0.95rem;
    color: var(--text-light, #666);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-price {
    font-size: 1.25rem;
    color: var(--primary-color, #FF7900);
    font-weight: 500;
    margin-bottom: 18px;
}

.room-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light, #666);
    font-size: 0.9rem;
}

.room-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: var(--secondary-color, #FF7900);
    border: 1px solid var(--secondary-color, #FF7900);
    border-radius: var(--border-radius, 8px);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition, all 0.3s ease);
    font-weight: 500;
    cursor: pointer;
}

.room-button:hover {
    background-color: var(--secondary-color, #FF7900);
    color: var(--white, #fff);
    transform: translateY(-2px);
}


/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .room-grid {
        grid-template-columns: 1fr;
    }
}

/* --------- Facilities Section --------- */
.facilities {
    background-color: var(--white);
}

.facilities-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.facility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.facility:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-image {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility:hover .facility-image img {
    transform: scale(1.05);
}

.facility-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.facility-details {
    padding: 2rem;
}

.facility-details h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.facility-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.facility-features i {
    color: var(--primary-color);
}

/* --------- Amenities Section --------- */
.amenities {
    background-color: var(--background-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.amenity {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.amenity:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.amenity i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.amenity h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.amenity p {
    color: var(--text-light);
}

/* --------- About Section --------- */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-content:hover .about-image img {
    transform: scale(1.03);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text .section-title .underline {
    margin: 1rem 0;
}

.about-text p {
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* --------- Testimonials Section --------- */
.testimonials {
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonials .section-title .underline {
    background-color: var(--white);
}

.testimonials .section-title p {
    color: var(--accent-color);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* --------- Contact Section --------- */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-item h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.social-media {
    margin-top: 1rem;
}

.social-media h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Enhanced Contact Form Styling */
.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(211, 33, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.contact-form h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Add subtitle */
.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(211, 33, 45, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--body-font);
}

/* Enhanced Select Styling */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

/* Input Icons */
.form-group.has-icon {
    position: relative;
}

.form-group.has-icon input {
    padding-left: 3rem;
}

.form-group.has-icon::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    opacity: 0.5;
    z-index: 1;
}

/* Required field indicator */
.form-group label.required::after {
    content: ' *';
    color: var(--primary-color);
    font-weight: bold;
}

/* Form validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
    background-color: #f0fff4;
}

/* --------- Map Section --------- */
.map {
    padding: 0;
    background-color: var(--white);
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------- Footer Section --------- */
.footer {
    background-color: var(--hehe);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* --------- Back to Top Button --------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}


/* Room Amenities Section Styling */
.room-amenities-section {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--background-color);
    border-radius: 8px;
    
}

.room-amenities-section h3 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.room-amenities-section h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-light);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenities-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--white);
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.amenity-item span {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-amenities-section {
        padding: 20px 15px;
    }
}
