/* Base Variables - Light Theme */
:root{
  --bg: #ffffff;
  --surface: #f8fafc;
  --muted-surface: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --primary: #3b82f6;
  --primary-600: #2563eb;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* Base Styles */
*{
  box-sizing:border-box;
}

html,body{
  height:100%;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}

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

a{
  color:inherit;
  text-decoration:none;
}

/* Layout */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.site-main{
  padding:0;
}

/* Components */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:48px;
  padding:0 20px;
  border-radius:12px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
  color:var(--text);
  font-weight:600;
  transition:all .2s ease;
  box-shadow:0 0 0 rgba(0,0,0,0);
  font-size: 15px;
}

.hero .button{
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.hero .button:hover{
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.button:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.button:active{
  transform:translateY(0);
}

.button-primary{
  background:linear-gradient(180deg, var(--primary), var(--primary-600));
  border-color:transparent;
  color:#ffffff;
}

.hero .button-primary{
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  color: #ffffff;
}

.hero .button-primary:hover{
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero{
  position:relative;
  overflow:hidden;
  background-image: url('/assets/images/gallery/gallery_1757527321_68c1bd19c9bea.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}

.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-particles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle{
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  top: 40%;
  left: 60%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 400px);
}

.hero-content{
  max-width: 900px;
  animation: heroFadeIn 1.2s ease-out;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text-group{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content::before{
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 20px;
  z-index: -1;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-location{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  animation: fadeInUp 1s ease-out 0.9s both;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}

.hero-location i{
  font-size: 18px;
  color: #ef4444;
  animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  max-width: 320px;
  margin: 0;
}

.hero-feature{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  animation: featureSlideIn 0.6s ease-out both;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);

}

.hero-feature:nth-child(1) { animation-delay: 1.2s; }
.hero-feature:nth-child(2) { animation-delay: 1.4s; }
.hero-feature:nth-child(3) { animation-delay: 1.6s; }
.hero-feature:nth-child(4) { animation-delay: 1.8s; }

.hero-feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

/* Hover Colors */
.hero-feature:nth-child(1):hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.hero-feature:nth-child(2):hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.hero-feature:nth-child(3):hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.hero-feature:nth-child(4):hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.hero-feature i{
  font-size: 16px;
  opacity: 0.9;
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
}

/* Icon Colors */
.hero-feature:nth-child(1) i { color: #22c55e; } /* Users - Green */
.hero-feature:nth-child(2) i { color: #3b82f6; } /* Bath - Blue */
.hero-feature:nth-child(3) i { color: #f59e0b; } /* Bed - Amber */
.hero-feature:nth-child(4) i { color: #06b6d4; } /* Pool - Cyan */

.hero-feature:hover i{
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(1.2);
}

@keyframes featureSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero h1{
  margin: 0;
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: titleSlideIn 1s ease-out 0.3s both;
  position: relative;
  padding-bottom: 12px;
}

.hero h1::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
  animation: lineExpand 1s ease-out 1.3s both;
}

@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero p{
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.6s both;
  max-width: 600px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Responsive */
@media (max-width: 720px){
  .hero{
    height: 100vh;
    padding-bottom: 140px;
  }
  
  .hero-inner{
    padding: 0 16px;
  }
  
  .hero-content::before{
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border-radius: 16px;
  }
  
  .hero-content{
    gap: 20px;
  }
  
  .hero-text-group{
    gap: 12px;
  }
  
  .hero h1{
    font-size: 38px;
    padding-bottom: 8px;
  }
  
  .hero h1::after{
    width: 40px;
    height: 2px;
    bottom: -4px;
  }
  
  .hero p{
    font-size: 16px;
  }
  
  .hero-location{
    font-size: 14px;
    padding: 8px 14px;
  }
  
  .hero-features{
    gap: 12px 24px;
    max-width: 300px;
  }
  
  .hero-feature{
    font-size: 14px;
    padding: 6px 8px;
  }
  
  .hero-feature i{
    font-size: 14px;
    width: 16px;
  }
  
  /* Mobile Icon Colors Preserved */
  .hero-feature:nth-child(1) i { color: #22c55e; }
  .hero-feature:nth-child(2) i { color: #3b82f6; }
  .hero-feature:nth-child(3) i { color: #f59e0b; }
  .hero-feature:nth-child(4) i { color: #06b6d4; }
  
  /* Mobile Scroll Indicator */
  .hero-scroll-indicator{
    bottom: 30px;
  }
  
  .scroll-icon{
    width: 36px;
    height: 36px;
  }
  
  .scroll-icon i{
    font-size: 14px;
  }
  
  .hero-scroll-indicator span{
    font-size: 11px;
  }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 2.5s both;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover{
  transform: translateX(-50%) translateY(-5px);
}

.scroll-icon{
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-icon i{
  font-size: 16px;
  color: #ffffff;
  animation: chevronPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

@keyframes chevronPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}

/* Features Section */
.features-section{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}



.features-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.feature-category{
  background: var(--bg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-category:hover{
  background: var(--surface);
}

.category-header{
  margin-bottom: 32px;
}

.category-icon{
  display: none;
}

.category-header h3{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 16px;
}

.category-header h3::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

.feature-list{
  display: grid;
  gap: 20px;
}

.feature-item{
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
  position: relative;
}

.feature-item:hover{
  transform: translateX(4px);
}

.feature-item i{
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 20px;
  margin-top: 10px;
  font-size: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.feature-item:hover i{
  background: var(--primary);
  transform: scale(1.2);
}

.feature-item span{
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

/* Features Responsive */
@media (max-width: 768px){
  .features-section{
    padding: 80px 0;
  }
  
  .features-section .section-header{
    margin-bottom: 60px;
  }
  
  .features-section .section-header h2{
    font-size: 32px;
  }
  
  .features-grid{
    grid-template-columns: 1fr;
    gap: 1px;
  }
  
  .feature-category{
    padding: 32px 24px;
  }
  
  .category-header h3{
    font-size: 18px;
  }
  
  .feature-item i{
    width: 5px;
    height: 5px;
    margin-right: 16px;
    margin-top: 8px;
  }
  
  .feature-item span{
    font-size: 15px;
  }
}

@media (max-width: 480px){
  .features-section{
    padding: 60px 0;
  }
  
  .features-section .section-header h2{
    font-size: 28px;
  }
  
  .feature-category{
    padding: 24px 20px;
  }
  
  .category-header{
    margin-bottom: 24px;
  }
  
  .category-header h3{
    font-size: 16px;
    padding-left: 12px;
  }
  
  .category-header h3::before{
    width: 2px;
    height: 16px;
  }
  
  .feature-list{
    gap: 16px;
  }
  
  .feature-item span{
    font-size: 14px;
  }
}

/* Rooms Section */
.rooms-section{
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}



.rooms-slider{
  position: relative;
  width: 100%;
}

.rooms-container{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.room-slide{
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--surface);
}

.room-slide.active{
  display: grid;
}

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

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

.room-slide:hover .room-image img{
  transform: scale(1.02);
}

.room-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, transparent 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.room-number{
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.room-content{
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.room-header h3{
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.room-size{
  font-size: 14px;
  color: var(--text-muted);
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.room-description{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.room-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.room-feature{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 6px;
}

.room-feature i{
  width: 28px;
  height: 28px;
  background: #3b82f6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.room-feature span{
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.slider-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.slider-btn{
  width: 50px;
  height: 50px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover{
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.slider-btn i{
  font-size: 16px;
  color: var(--text);
  transition: color 0.3s ease;
}

.slider-btn:hover i{
  color: white;
}

.slider-dots{
  display: flex;
  gap: 12px;
}

.dot{
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active{
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover{
  background: var(--primary);
  opacity: 0.8;
}

/* Rooms Responsive */
@media (max-width: 768px){
  .rooms-section{
    padding: 80px 0;
  }
  
  .rooms-section .section-header{
    margin-bottom: 60px;
  }
  
  .rooms-section .section-header h2{
    font-size: 32px;
  }
  
  .rooms-slider{
    width: 100%;
  }
  
  .rooms-container{
    border-radius: 0;
  }
  
  .room-slide{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .room-image{
    height: 300px;
  }
  
  .room-overlay{
    padding: 20px;
  }
  
  .room-number{
    font-size: 36px;
  }
  
  .room-content{
    padding: 32px 24px;
  }
  
  .room-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .room-header h3{
    font-size: 24px;
  }
  
  .room-features{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .room-feature i{
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .room-feature span{
    font-size: 14px;
  }
  
  .slider-controls{
    gap: 30px;
    margin-top: 40px;
  }
  
  .slider-btn{
    width: 44px;
    height: 44px;
  }
  
  .slider-btn i{
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .rooms-section{
    padding: 60px 0;
  }
  
  .rooms-section .section-header h2{
    font-size: 28px;
  }
  
  .room-content{
    padding: 24px 20px;
  }
  
  .room-header h3{
    font-size: 22px;
  }
  
  .room-description{
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .slider-controls{
    gap: 20px;
    margin-top: 30px;
  }
  
  .slider-btn{
    width: 40px;
    height: 40px;
  }
  
  .dot{
    width: 10px;
    height: 10px;
  }
}

/* Pool Section */
.pool-section{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.pool-section .section-header{
  margin-bottom: 80px;
}

.pool-section .section-header h2{
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pool-section .section-header h2::after{
  content: none;
}

.pool-section .section-header p{
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto;
}

.pool-content{
  display: grid;
  gap: 60px;
}

.pools-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pool-info-card{
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.pool-info-card:hover{
  border-color: rgba(0, 0, 0, 0.1);
}

.pool-info-card.disabled{
  opacity: 0.6;
  background: #f8fafc;
}

.pool-info-card h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  text-align: left;
}

.pool-info-card.disabled h3{
  color: #9ca3af;
}

.pool-specs-table{
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.spec-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 6px;
}

.spec-label{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value{
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.pool-info-card.disabled .spec-value{
  color: #9ca3af;
}

.pool-status{
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 8px 12px;
  background: #fef3c7;
  border-radius: 6px;
  border-left: 3px solid #f59e0b;
}

.status-label{
  font-size: 13px;
  color: #92400e;
  font-weight: 600;
}

.status-value{
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}

.status-value.available{
  color: #92400e;
}

.status-text{
  font-size: 13px;
  color: #92400e;
}

.status-unavailable{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
  background: #fef2f2;
  border-left-color: #dc2626;
}

.status-unavailable i{
  font-size: 12px;
}



/* Pool Responsive */
@media (max-width: 768px){
  .pool-section{
    padding: 80px 0;
  }
  
  .pool-section .section-header{
    margin-bottom: 60px;
  }
  
  .pool-section .section-header h2{
    font-size: 32px;
  }
  
  .pool-content{
    gap: 40px;
  }
  
  .pools-grid{
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  
  .pool-info-card{
    padding: 24px 20px;
  }
  
  .pool-info-card h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  

}

@media (max-width: 480px){
  .pool-section{
    padding: 60px 0;
  }
  
  .pool-section .section-header h2{
    font-size: 28px;
  }
  
  .pool-content{
    gap: 40px;
  }
  
  .pools-grid{
    gap: 12px;
  }
  
  .pool-info-card{
    padding: 20px 16px;
  }
  
  .pool-info-card h3{
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .pool-specs-table{
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .spec-row{
    padding-bottom: 8px;
  }
  
  .spec-label{
    font-size: 13px;
  }
  
  .spec-value{
    font-size: 15px;
  }
  

}

/* Info Section */
.info-section{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}



.info-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-card{
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.info-card:hover{
  border-color: rgba(0, 0, 0, 0.1);
}

.info-header{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon{
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i{
  font-size: 18px;
  color: #64748b;
}

.info-header h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.service-item{
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}

.deposit-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fef3c7;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 16px;
  border-left: 3px solid #f59e0b;
}

.deposit-label{
  font-size: 14px;
  color: #92400e;
  font-weight: 600;
}

.deposit-amount{
  font-size: 16px;
  color: #92400e;
  font-weight: 700;
}

.rules-section .info-header h3{
  color: #1f2937;
}

.rules-description{
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 16px;
}

.detail-link{
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 24px;
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.detail-link:hover{
  color: #2563eb;
}

.checkin-times{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.time-item{
  display: flex;
  align-items: center;
  gap: 12px;
}

.time-icon{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon.checkin{
  background: #10b981;
  color: white;
}

.time-icon.checkout{
  background: #f59e0b;
  color: white;
}

.time-icon i{
  font-size: 14px;
}

.time-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.time-label{
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.time-value{
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
}

.restrictions{
  grid-column: 1 / -1;
}

.restrictions-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.restriction-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 8px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.restriction-item:hover{
  background: #f1f5f9;
  transform: translateY(-1px);
}

.restriction-icon{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.restriction-item:nth-child(1) .restriction-icon{
  background: #dc2626;
  color: white;
}

.restriction-item:nth-child(2) .restriction-icon{
  background: #dc2626;
  color: white;
}

.restriction-item:nth-child(3) .restriction-icon{
  background: #10b981;
  color: white;
}

.restriction-item:nth-child(4) .restriction-icon{
  background: #10b981;
  color: white;
}

.restriction-item span{
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* Info Responsive */
@media (max-width: 768px){
  .info-section{
    padding: 80px 0;
  }
  
  .info-section .section-header{
    margin-bottom: 60px;
  }
  
  .info-section .section-header h2{
    font-size: 32px;
  }
  
  .info-content{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .info-card{
    padding: 24px;
  }
  
  .services-grid{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .checkin-times{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .restrictions-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .restriction-icon{
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px){
  .info-section{
    padding: 60px 0;
  }
  
  .info-section .section-header h2{
    font-size: 28px;
  }
  
  .info-content{
    gap: 20px;
  }
  
  .info-card{
    padding: 20px;
  }
  
  .info-header{
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .info-icon{
    width: 40px;
    height: 40px;
  }
  
  .info-icon i{
    font-size: 16px;
  }
  
  .info-header h3{
    font-size: 20px;
  }
  
  .deposit-info{
    padding: 12px 16px;
  }
  
  .deposit-label{
    font-size: 14px;
  }
  
  .deposit-amount{
    font-size: 18px;
  }
  
  .restrictions-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .restriction-item{
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  
  .restriction-icon{
    width: 44px;
    height: 44px;
    font-size: 18px;
    flex-shrink: 0;
  }
}

/* Rules Modal */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active{
  display: flex;
}

.modal-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-container{
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideIn{
  from{
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.modal-header h3{
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.modal-close{
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover{
  background: #e5e7eb;
  transform: scale(1.1);
}

.modal-close i{
  font-size: 16px;
  color: #6b7280;
}

.modal-content{
  padding: 0 24px 24px;
  flex: 1 1 auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.modal-content::-webkit-scrollbar{
  width: 6px;
}

.modal-content::-webkit-scrollbar-track{
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb{
  background: #d1d5db;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover{
  background: #9ca3af;
}

.rules-section{
  margin-bottom: 32px;
}

.rules-section h4{
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3b82f6;
  display: inline-block;
}

.rules-section ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.rules-section li{
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.rules-section li::before{
  content: '•';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 18px;
}

.agreement-note{
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  padding: 20px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid #f59e0b;
}

.agreement-note p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #92400e;
}

.agreement-note strong{
  color: #78350f;
}

.modal-footer{
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
}

.btn-primary{
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover{
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Modal Responsive */
@media (max-width: 768px){
  .modal{
    padding: 10px;
  }
  
  .modal-container{
    max-height: 95vh;
  }
  
  .modal-header{
    padding: 20px 20px 0;
    margin-bottom: 20px;
  }
  
  .modal-header h3{
    font-size: 20px;
  }
  
  .modal-content{
    padding: 0 20px 20px;
    flex: 1 1 auto;
    overflow-y: auto;
  }
  
  .rules-section{
    margin-bottom: 24px;
  }
  
  .rules-section h4{
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .rules-section li{
    font-size: 14px;
    padding: 6px 0;
  }
  
  .agreement-note{
    padding: 16px;
    margin-top: 20px;
  }
  
  .modal-footer{
    padding: 20px;
  }
  
  .btn-primary{
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* Location Section */
.location-section{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.location-section .section-header{
  margin-bottom: 80px;
}

.location-section .section-header h2{
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.location-section .section-header h2::after{
  content: none;
}

.location-section .section-header p{
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

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

.distances-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.distance-item{
  display: flex;
  align-items: center;
  background: var(--surface);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.distance-item:hover{
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.distance-icon{
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.distance-icon i{
  font-size: 20px;
  color: #64748b;
}

.distance-info{
  flex: 1;
}

.distance-info h4{
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.distance-value{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.info-btn{
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.info-btn:hover{
  background: #e2e8f0;
  transform: scale(1.1);
}

.info-btn i{
  font-size: 12px;
  color: #64748b;
}

.map-container{
  position: relative;
}

.map-placeholder{
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 2px dashed #bbf7d0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content{
  max-width: 300px;
}

.map-icon{
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.map-icon i{
  font-size: 32px;
  color: white;
}

.map-content h4{
  font-size: 20px;
  font-weight: 600;
  color: #166534;
  margin: 0 0 12px;
}

.map-content p{
  font-size: 14px;
  color: #16a34a;
  line-height: 1.6;
  margin: 0 0 24px;
}

.map-btn{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.map-btn:hover{
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.map-btn i{
  font-size: 12px;
}

/* Location Responsive */
@media (max-width: 768px){
  .location-section{
    padding: 80px 0;
  }
  
  .location-section .section-header{
    margin-bottom: 60px;
  }
  
  .location-section .section-header h2{
    font-size: 32px;
  }
  
  .location-content{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .distances-grid{
    grid-template-columns: 1fr;
  }
  
  .distance-item{
    padding: 16px;
  }
  
  .distance-icon{
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .distance-icon i{
    font-size: 16px;
  }
  
  .distance-info h4{
    font-size: 15px;
  }
  
  .distance-value{
    font-size: 13px;
  }
  
  .info-btn{
    width: 28px;
    height: 28px;
  }
  
  .info-btn i{
    font-size: 10px;
  }
  
  .map-placeholder{
    padding: 30px 20px;
    min-height: 300px;
  }
  
  .map-icon{
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .map-icon i{
    font-size: 24px;
  }
  
  .map-content h4{
    font-size: 18px;
  }
  
  .map-content p{
    font-size: 13px;
  }
  
  .map-btn{
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px){
  .location-section{
    padding: 60px 0;
  }
  
  .location-section .section-header h2{
    font-size: 28px;
  }
  
  .location-content{
    gap: 30px;
  }
  
  .distances-grid{
    gap: 12px;
  }
  
  .distance-item{
    padding: 14px;
  }
  
  .distance-icon{
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  
  .distance-icon i{
    font-size: 14px;
  }
  
  .distance-info h4{
    font-size: 14px;
  }
  
  .distance-value{
    font-size: 12px;
  }
  
  .map-placeholder{
    padding: 24px 16px;
    min-height: 250px;
  }
  
  .map-icon{
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .map-icon i{
    font-size: 20px;
  }
  
  .map-content h4{
    font-size: 16px;
  }
  
  .map-content p{
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .map-btn{
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Calendar Section */
.calendar-section{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}



.calendar-container{
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.calendar-header-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-navigation{
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-nav{
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f8fafc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-nav:hover{
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.15);
}

.calendar-nav i{
  font-size: 12px;
  color: #64748b;
}

.date-selection-info{
  text-align: center;
}

.date-selection-info h3{
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.selected-dates{
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.date-badge{
  background: #f8fafc;
  color: #64748b;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dual-calendar{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.month-container{
  min-width: 0;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.month-header{
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.month-header h4{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.calendar-grid{
  margin-bottom: 0;
}

.calendar-weekdays{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.weekday{
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 3px;
}

.calendar-days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar-day{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  min-height: 50px;
  padding: 4px 3px;
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

.day-number{
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.day-price{
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.6;
}

.calendar-day:not(.other-month):not(.past):not(.reserved):hover{
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.1);
}

.calendar-day.other-month{
  color: #cbd5e1;
  cursor: default;
  opacity: 0.4;
}

.calendar-day.today{
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.calendar-day.available{
  background: white;
  color: #059669;
  border-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.calendar-day.available:hover{
  background: #f0fdf4;
  border-color: #a7f3d0;
}

.calendar-day.reserved{
  background: #dc2626;
  color: white;
  cursor: default;
}

.calendar-day.reserved .day-price{
  opacity: 0.9;
}

.calendar-day.checkout{
  background: #d97706;
  color: white;
  cursor: pointer;
}

.calendar-day.checkout:hover{
  background: #b45309;
}

.calendar-day.blocked{
  background: #6b7280;
  color: white;
  cursor: not-allowed;
}

.calendar-day.blocked .day-price{
  opacity: 0.7;
}

.calendar-day.checkout .day-price{
  opacity: 0.9;
}

.calendar-day.past{
  background: #f8fafc;
  color: #94a3b8;
  cursor: default;
  opacity: 0.6;
}

.calendar-day.selected{
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}

.calendar-day.in-range{
  background: #eef2ff;
  color: #4338ca;
  border-color: #c7d2fe;
}

.calendar-day.range-start,
.calendar-day.range-end{
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}

.pricing-info{
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-item{
  text-align: center;
}

.price-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.price-value span{
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.calendar-legend{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-item{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.legend-dot{
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-dot.available{
  background: #16a34a;
}

.legend-dot.reserved{
  background: #dc2626;
}

.legend-dot.checkout{
  background: #d97706;
}

.legend-dot.blocked{
  background: #6b7280;
}

.calendar-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
}

.calendar-btn{
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary{
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.btn-primary:hover{
  background: #2563eb;
  border-color: #2563eb;
}

.btn-primary:disabled{
  background: #e2e8f0;
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
}

.btn-secondary{
  background: white;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover{
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Reservation Modal */
.reservation-modal{
  max-width: 600px;
  max-height: 80vh;
}

.reservation-summary{
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
}

.date-summary{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.date-item{
  text-align: center;
}

.date-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-value{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 16px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  min-width: 120px;
}

.date-separator{
  color: #64748b;
  font-size: 16px;
}

.stay-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.info-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.total-price{
  color: #059669;
  font-size: 20px;
}

.guest-info h4{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.reservation-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea{
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea{
  resize: vertical;
  min-height: 80px;
}

.modal-footer{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid #e5e7eb;
}

.modal-footer .btn-primary,
  .modal-footer .btn-secondary{
    flex: 1;
    justify-content: center;
  }

/* Tabs System */
.tabs-container{
  margin-top: 32px;
}

.tabs-nav{
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 32px;
}

.tab-btn{
  padding: 12px 24px;
  border: none;
  background: none;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.tab-btn:hover{
  color: #374151;
  background: #f9fafb;
}

.tab-btn.active{
  color: #3b82f6;
  border-bottom-color: #3b82f6;
  background: none;
}

.tabs-content{
  position: relative;
}

.tab-content{
  display: none;
}

.tab-content.active{
  display: block;
}

/* Calendar Responsive */
@media (max-width: 768px){
  .calendar-section{
    padding: 80px 0;
  }
  
  .calendar-section .section-header{
    margin-bottom: 60px;
  }
  
  .calendar-section .section-header h2{
    font-size: 32px;
  }
  
  .calendar-container{
    padding: 24px;
  }
  
  .dual-calendar{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .month-header h4{
    font-size: 16px;
  }
  
  .calendar-weekdays{
    gap: 2px;
    margin-bottom: 6px;
  }
  
  .weekday{
    font-size: 11px;
    padding: 6px 2px;
  }
  
  .calendar-days{
    gap: 2px;
  }
  
  .calendar-day{
    min-height: 50px;
    padding: 4px 2px;
  }
  
  .day-number{
    font-size: 12px;
  }
  
  .day-price{
    font-size: 9px;
  }
  
  .pricing-info{
    gap: 20px;
    padding: 16px;
  }
  
  .price-label{
    font-size: 11px;
  }
  
  .price-value{
    font-size: 16px;
  }
  
  .price-value span{
    font-size: 11px;
  }
  
  .calendar-legend{
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
  }
  
  .legend-item{
    font-size: 12px;
  }
  
  .legend-dot{
    width: 10px;
    height: 10px;
  }
  
  .calendar-actions{
    margin-top: 20px;
  }
  
  .calendar-btn{
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .calendar-section{
    padding: 60px 0;
  }
  
  .calendar-section .section-header h2{
    font-size: 28px;
  }
  
  .calendar-container{
    padding: 20px;
  }
  
  .dual-calendar{
    gap: 24px;
  }
  
  .month-header{
    margin-bottom: 16px;
  }
  
  .month-header h4{
    font-size: 15px;
  }
  
  .calendar-weekdays{
    gap: 1px;
    margin-bottom: 4px;
  }
  
  .weekday{
    font-size: 10px;
    padding: 4px 1px;
  }
  
  .calendar-days{
    gap: 1px;
  }
  
  .calendar-day{
    min-height: 40px;
    padding: 3px 1px;
  }
  
  .day-number{
    font-size: 11px;
  }
  
  .day-price{
    font-size: 8px;
  }
  
  .pricing-info{
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  
  .pricing-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .price-label{
    font-size: 10px;
    margin-bottom: 0;
  }
  
  .price-value{
    font-size: 14px;
  }
  
  .price-value span{
    font-size: 10px;
  }
  
  .calendar-legend{
    gap: 12px;
    padding: 10px;
  }
  
  .legend-item{
    font-size: 11px;
  }
  
  .legend-dot{
    width: 8px;
    height: 8px;
  }
  
  .calendar-btn{
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Gallery Section */
.gallery-section{
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}

/* General Section Header */
.section-header{
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2{
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-header h2::after{
  content: none;
}

.section-header p{
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}



.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
  margin-bottom: 50px;
}

.gallery-item{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item.large{
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-more{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-more-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}

.gallery-more-content{
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.gallery-more-content i{
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
  opacity: 0.9;
}

.more-count{
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.more-text{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-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;
}

.gallery-overlay i{
  font-size: 32px;
  color: #ffffff;
  background: rgba(255,255,255,0.2);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.gallery-item:hover img{
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay{
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i{
  transform: scale(1);
}

.gallery-more:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.gallery-more:hover .gallery-more-overlay{
  background: rgba(0, 0, 0, 0.5);
}

.gallery-more:hover .gallery-more-content i{
  transform: scale(1.1);
  opacity: 1;
}

.gallery-more:hover .more-count{
  transform: scale(1.05);
}

.gallery-actions{
  text-align: center;
}

.gallery-load-more{
  padding: 12px 32px;
  font-size: 16px;
}

/* Gallery Responsive */
@media (max-width: 768px){
  .gallery-section{
    padding: 60px 0;
  }
  
  .section-header{
    margin-bottom: 40px;
  }
  
  .section-header h2{
    font-size: 32px;
  }
  
  .section-header h2::after{
    width: 50px;
  }
  
  .section-header p{
    font-size: 16px;
  }
  
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 12px;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .gallery-item.large{
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-overlay i{
    font-size: 24px;
    width: 48px;
    height: 48px;
  }
  
  .gallery-more-content i{
    font-size: 24px;
  }
  
  .more-count{
    font-size: 20px;
  }
  
  .more-text{
    font-size: 12px;
  }
}

/* Lightbox */
.lightbox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active{
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.lightbox-container{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.lightbox-main{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  min-height: 0;
  max-height: calc(100vh - 140px);
}

.lightbox-image{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.lightbox-thumbnails{
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.thumbnail-container{
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 20px;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.thumbnail-container::-webkit-scrollbar{
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,0.5);
}

.lightbox-thumb{
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.lightbox-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb:hover{
  opacity: 0.8;
  transform: scale(1.05);
}

.lightbox-thumb.active{
  opacity: 1;
  border-color: #3b82f6;
  transform: scale(1.1);
}

.lightbox-close{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close:hover{
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-prev{
  left: 30px;
}

.lightbox-next{
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover{
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* Tablet ekranlar için */
@media (max-width: 1024px) and (min-width: 769px){
  .lightbox-main{
    max-height: calc(100vh - 120px);
  }
  
  .lightbox-thumbnails{
    height: 120px;
    padding: 15px;
  }
  
  .lightbox-thumb{
    width: 70px;
    height: 52px;
  }
}

/* Küçük ekranlar için */
@media (max-width: 768px){
  .lightbox-main{
    padding: 10px;
    max-height: calc(100vh - 100px);
  }
  
  .lightbox-thumbnails{
    height: 100px;
    padding: 10px;
  }
  
  .thumbnail-container{
    gap: 6px;
    padding: 0 10px;
    justify-content: flex-start;
  }
  
  .lightbox-thumb{
    width: 50px;
    height: 38px;
  }
  
  .lightbox-close{
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .lightbox-prev,
  .lightbox-next{
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .lightbox-prev{
    left: 15px;
  }
  
  .lightbox-next{
    right: 15px;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px){
  .lightbox-main{
    padding: 5px;
    max-height: calc(100vh - 80px);
  }
  
  .lightbox-thumbnails{
    height: 80px;
    padding: 8px 5px;
  }
  
  .thumbnail-container{
    gap: 4px;
    padding: 0 5px;
    justify-content: flex-start;
  }
  
  .lightbox-thumb{
    width: 45px;
    height: 34px;
    flex-shrink: 0;
  }
  
  .lightbox-close{
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .lightbox-prev,
  .lightbox-next{
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .lightbox-prev{
    left: 10px;
  }
  
  .lightbox-next{
    right: 10px;
  }
}

/* About Tab Styles */
.about-content{
  display: grid;
  gap: 24px;
}

.about-card{
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.about-card:hover{
  border-color: rgba(0, 0, 0, 0.1);
}

.about-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-icon{
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 16px;
  flex-shrink: 0;
}

.about-header h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.villa-specs{
  display: grid;
  gap: 8px;
}

.spec-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 6px;
}

.spec-label{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value{
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.location-info{
  display: grid;
  gap: 16px;
}

.location-description{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.location-highlights{
  display: grid;
  gap: 8px;
}

.highlight-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 6px;
}

.highlight-item i{
  width: 24px;
  height: 24px;
  background: #3b82f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
}

.highlight-item span{
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.advantages-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.advantage-item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.advantage-item:hover{
  background: #f1f5f9;
  transform: translateY(-1px);
}

.advantage-item i{
  width: 28px;
  height: 28px;
  background: #10b981;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.advantage-item span{
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* About Tab Responsive */
@media (max-width: 768px){
  .about-content{
    gap: 16px;
  }
  
  .about-card{
    padding: 16px;
  }
  
  .about-header{
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .about-icon{
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .about-header h3{
    font-size: 16px;
  }
  
  .advantages-grid{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .advantage-item{
    padding: 8px 10px;
  }
  
  .advantage-item i{
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .advantage-item span{
    font-size: 12px;
  }
}

/* Section Header Responsive */
@media (max-width: 768px){
  .section-header{
    margin-bottom: 60px;
    padding: 0 16px;
  }
  
  .section-header h2{
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .section-header p{
    font-size: 16px;
    max-width: 90%;
  }
}

@media (max-width: 480px){
  .section-header h2{
    font-size: 28px;
  }
  
  .section-header p{
    font-size: 15px;
  }
}

/* Database Content Styling */
.database-content {
  padding: 20px;
  line-height: 1.7;
}

.database-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.database-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

.database-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.database-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.database-content li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.database-content blockquote {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-muted);
}

.database-content strong {
  color: var(--text);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .database-content {
    padding: 16px;
  }
  
  .database-content h2 {
    font-size: 20px;
  }
  
  .database-content h3 {
    font-size: 18px;
  }
  
  .database-content p,
  .database-content li {
    font-size: 14px;
  }
}

/* Alert Styles */
.alert {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.alert-success {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-success i {
  color: #22c55e;
}

.alert-danger {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-danger i {
  color: #ef4444;
}

/* Pricing Details Styles */
.pricing-details {
  margin: 20px 0;
}

.pricing-details h4 {
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 600;
}

.pricing-breakdown {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item.subtotal {
  border-top: 1px solid #cbd5e1;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 500;
}

.pricing-item.total {
  border-top: 2px solid #3b82f6;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 600;
  font-size: 16px;
}

.pricing-label {
  color: #374151;
  font-size: 14px;
}

.pricing-value {
  color: #1f2937;
  font-weight: 500;
  font-size: 14px;
}

.pricing-item.total .pricing-value {
  color: #3b82f6;
  font-size: 16px;
}



.pricing-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  background: #eff6ff;
  border-radius: 8px;
  border: 1px solid #dbeafe;
}

.pricing-note i {
  color: #3b82f6;
  font-size: 14px;
}

.pricing-note span {
  color: #1e40af;
  font-size: 13px;
}

/* Reservation Modal - Extra Wide */
.reservation-modal {
  max-width: 1000px !important;
}

/* Modal Columns Layout */
.modal-columns {
  display: flex;
  gap: 32px;
  margin: 20px 0;
}

.modal-column {
  flex: 1;
  min-width: 0; /* Allow columns to shrink */
}

.modal-column .pricing-details,
.modal-column .guest-info {
  margin: 0;
}

.modal-column .guest-info h4,
.modal-column .pricing-details h4 {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
  .reservation-modal {
    max-width: 90vw !important;
  }
}

@media (max-width: 768px) {
  .modal-columns {
    flex-direction: column;
    gap: 16px;
  }
  
  .modal-column {
    flex: none;
  }
  
  .reservation-modal {
    max-width: 95vw !important;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.toast {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease-out;
  min-width: 320px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(100%);
  opacity: 0;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.toast-message {
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
}

.toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s ease;
  font-size: 12px;
}

.toast-close:hover {
  color: #6b7280;
  background: #f3f4f6;
}

/* Toast Success */
.toast-success {
  border-left: 4px solid #10b981;
}

.toast-success .toast-content i {
  color: #10b981;
  font-size: 16px;
}

/* Toast Error */
.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-error .toast-content i {
  color: #ef4444;
  font-size: 16px;
}

/* Mobile Toast */
@media (max-width: 768px) {
  .toast-container {
    left: 16px;
    right: 16px;
    max-width: none;
  }
  
  .toast {
    min-width: auto;
  }
  
  .toast-message {
    font-size: 13px;
  }
}
 