@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #060606;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

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

/* Sticky State */
header.sticky {
  background-color: #060606;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
header.sticky nav a {
  color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(6, 6, 6, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
header .logo img {
  width: 120px;
  transition: all 0.3s ease;
}
header nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
header nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}
header nav a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5c76a;
  transition: all 0.3s ease;
}
header nav a:hover {
  color: #f5c76a;
}
header nav a:hover:after {
  width: 100%;
}
header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
header .menu-close {
  display: none;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slider .slider-container {
  position: relative;
  height: 100%;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-slider .slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 6, 6, 0.7) 0%, rgba(6, 6, 6, 0.4) 100%);
}
.hero-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}
.hero-slider .slide-content h1 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #f5c76a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-slider .slide-content p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 199, 106, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #f5c76a;
  color: #f5c76a;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.hero-slider .slider-btn:hover {
  background: #f5c76a;
  color: #060606;
  transform: translateY(-50%) scale(1.1);
}
.hero-slider .slider-btn.prev {
  left: 30px;
}
.hero-slider .slider-btn.next {
  right: 30px;
}
.hero-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.hero-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider .slider-dots .dot.active {
  background: #f5c76a;
  width: 40px;
  border-radius: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #f5c76a;
  color: #060606;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #f5c76a;
}
.btn-primary:hover {
  background: transparent;
  color: #f5c76a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 199, 106, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #f5c76a;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #f5c76a;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #f5c76a;
  color: #060606;
  transform: translateY(-3px);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .subtitle {
  display: block;
  color: #f5c76a;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #060606;
  margin-bottom: 15px;
}
.section-header .divider {
  width: 80px;
  height: 3px;
  background: #f5c76a;
  margin: 20px auto;
}
.section-header p {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-section .about-text .lead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #060606;
}
.about-section .about-text p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
}
.about-section .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-section .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.about-section .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(245, 199, 106, 0.2);
}
.about-section .feature-item i {
  font-size: 24px;
  color: #f5c76a;
}
.about-section .feature-item span {
  font-weight: 500;
  color: #060606;
}
.about-section .about-image {
  position: relative;
}
.about-section .about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.about-section .about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #f5c76a;
  color: #060606;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 199, 106, 0.4);
}
.about-section .about-image .experience-badge .number {
  display: block;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.about-section .about-image .experience-badge .text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
}

.hall-section {
  padding: 100px 0;
  background: #ffffff;
}
.hall-section .hall-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hall-section .hall-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.hall-section .hall-info h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #060606;
}
.hall-section .hall-info p {
  color: #555;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hall-section .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.hall-section .spec-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #f5c76a;
  transition: all 0.3s ease;
}
.hall-section .spec-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(245, 199, 106, 0.2);
}
.hall-section .spec-item .spec-icon i {
  font-size: 32px;
  color: #f5c76a;
}
.hall-section .spec-item .spec-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #060606;
}
.hall-section .spec-item .spec-content p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
}

.rooms-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.rooms-section .rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rooms-section .room-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.rooms-section .room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(245, 199, 106, 0.2);
}
.rooms-section .room-card .room-image {
  position: relative;
  overflow: hidden;
}
.rooms-section .room-card .room-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.rooms-section .room-card .room-image:hover img {
  transform: scale(1.1);
}
.rooms-section .room-card .room-image .room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f5c76a;
  color: #060606;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.rooms-section .room-card .room-content {
  padding: 30px;
}
.rooms-section .room-card .room-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #060606;
}
.rooms-section .room-card .room-content .room-price {
  font-size: 32px;
  font-weight: 500;
  color: #f5c76a;
  margin-bottom: 20px;
}
.rooms-section .room-card .room-content .room-price span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
.rooms-section .room-card .room-content .room-features {
  list-style: none;
  margin-bottom: 25px;
}
.rooms-section .room-card .room-content .room-features li {
  padding: 10px 0;
  color: #555;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.rooms-section .room-card .room-content .room-features li i {
  color: #f5c76a;
  font-size: 14px;
}
.rooms-section .room-card .room-content .room-features li:last-child {
  border-bottom: none;
}

.gallery-section {
  padding: 100px 0;
  background: #ffffff;
}
.gallery-section .gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.gallery-section .gallery-filter .filter-btn {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid rgba(245, 199, 106, 0.2);
  color: #060606;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.gallery-section .gallery-filter .filter-btn:hover, .gallery-section .gallery-filter .filter-btn.active {
  background: #f5c76a;
  color: #060606;
  border-color: #f5c76a;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.9) 0%, transparent 100%);
  color: #ffffff;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item .gallery-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #f5c76a;
}
.gallery-section .gallery-grid .gallery-item .gallery-overlay p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.gallery-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-section .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-section .gallery-grid .gallery-item.hide {
  display: none;
}

.packages-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}
.packages-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.packages-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.packages-section .section-header .subtitle {
  display: inline-block;
  color: #F5C76A;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.packages-section .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #5A3E2B;
  margin-bottom: 20px;
}
.packages-section .section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F5C76A, transparent);
  margin: 0 auto 20px;
}
.packages-section .section-header p {
  color: #666;
  font-size: 18px;
}
.packages-section .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .packages-section .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (max-width: 768px) {
  .packages-section .packages-grid {
    grid-template-columns: 1fr;
  }
}
.packages-section .package-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
  overflow: hidden;
}
.packages-section .package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #F5C76A, rgb(248.2075471698, 216.9622641509, 153.7924528302));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.packages-section .package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(245, 199, 106, 0.25);
  border-color: #F5C76A;
}
.packages-section .package-card:hover::before {
  transform: scaleX(1);
}
.packages-section .package-card.featured {
  border-color: #F5C76A;
  box-shadow: 0 15px 50px rgba(245, 199, 106, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}
.packages-section .package-card.featured::before {
  transform: scaleX(1);
  height: 6px;
}
.packages-section .package-card.featured .package-badge {
  position: absolute;
  top: -15px;
  right: 35px;
  background: linear-gradient(135deg, #F5C76A 0%, rgb(242.4339622642, 184.6301886792, 67.7660377358) 100%);
  color: #5A3E2B;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(245, 199, 106, 0.4);
}
.packages-section .package-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5A3E2B;
  line-height: 1.3;
}
.packages-section .package-card .package-subtitle {
  color: #666;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.packages-section .package-card .package-price {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e5e5e5;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.packages-section .package-card .package-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: #555;
  margin-right: 5px;
}
.packages-section .package-card .package-price .price {
  font-size: 48px;
  font-weight: 700;
  color: #F5C76A;
  line-height: 1;
  letter-spacing: -1px;
}
.packages-section .package-card .package-price .separator {
  font-size: 28px;
  font-weight: 600;
  color: #555;
  margin-left: 3px;
}
.packages-section .package-card .package-details {
  margin-bottom: 30px;
}
.packages-section .package-card .package-details .detail-group {
  margin-bottom: 28px;
}
.packages-section .package-card .package-details .detail-group:last-child {
  margin-bottom: 0;
}
.packages-section .package-card .package-details .detail-group h4 {
  font-size: 16px;
  font-weight: 700;
  color: #5A3E2B;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.packages-section .package-card .package-details .detail-group h4 i {
  color: #F5C76A;
  font-size: 18px;
}
.packages-section .package-card .package-details .detail-group ul {
  list-style: none;
  padding-left: 28px;
}
.packages-section .package-card .package-details .detail-group ul li {
  padding: 8px 0;
  color: #555;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.packages-section .package-card .package-details .detail-group ul li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: #F5C76A;
  font-weight: 700;
  font-size: 18px;
}
.packages-section .package-card .package-note {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #F5C76A;
}
.packages-section .package-card .package-note i {
  color: rgb(241.7924528302, 181.0377358491, 58.2075471698);
  font-size: 16px;
  flex-shrink: 0;
}
.packages-section .package-card .package-note span {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
}
.packages-section .package-card .btn-primary,
.packages-section .package-card .btn-secondary {
  display: block;
  width: 100%;
  padding: 16px 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
}
.packages-section .package-card .btn-primary {
  background: linear-gradient(135deg, #F5C76A 0%, rgb(242.4339622642, 184.6301886792, 67.7660377358) 100%);
  color: #5A3E2B;
  box-shadow: 0 5px 20px rgba(245, 199, 106, 0.3);
}
.packages-section .package-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 199, 106, 0.5);
  background: linear-gradient(135deg, rgb(243.3962264151, 190.0188679245, 82.1037735849) 0%, rgb(241.1509433962, 177.4452830189, 48.6490566038) 100%);
}
.packages-section .package-card .btn-secondary {
  background: #ffffff;
  color: #5A3E2B;
  border: 2px solid #F5C76A;
}
.packages-section .package-card .btn-secondary:hover {
  background: #F5C76A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 199, 106, 0.3);
}
.packages-section .additional-package {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.packages-section .additional-package .corporate-card {
  background: linear-gradient(135deg, #5A3E2B 0%, rgb(55.4887218045, 38.2255639098, 26.5112781955) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(90, 62, 43, 0.3);
  position: relative;
  overflow: hidden;
}
.packages-section .additional-package .corporate-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 199, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.packages-section .additional-package .corporate-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.packages-section .additional-package .corporate-card .corporate-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}
.packages-section .additional-package .corporate-card .corporate-details .corporate-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(245, 199, 106, 0.2);
  transition: all 0.3s ease;
}
.packages-section .additional-package .corporate-card .corporate-details .corporate-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 199, 106, 0.4);
  transform: translateY(-5px);
}
.packages-section .additional-package .corporate-card .corporate-details .corporate-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #F5C76A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.packages-section .additional-package .corporate-card .corporate-details .corporate-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.packages-section .additional-package .corporate-card .corporate-pricing {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.packages-section .additional-package .corporate-card .corporate-pricing p {
  color: #F5C76A;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
}
.packages-section .additional-package .corporate-card .btn-secondary {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  background: #F5C76A;
  color: #5A3E2B;
  border: 2px solid #F5C76A;
  position: relative;
  z-index: 1;
  text-align: center;
}
.packages-section .additional-package .corporate-card .btn-secondary:hover {
  background: rgb(246.6037735849, 207.9811320755, 129.8962264151);
  border-color: rgb(246.6037735849, 207.9811320755, 129.8962264151);
}
.packages-section .packages-footer-note {
  text-align: center;
  color: #666;
  font-weight: 400;
  font-style: italic;
  margin-top: 40px;
  font-size: 14px;
  padding: 20px;
  background: rgba(245, 199, 106, 0.08);
  border-radius: 10px;
  border: 1px dashed rgba(245, 199, 106, 0.3);
}
@media (max-width: 768px) {
  .packages-section {
    padding: 60px 0;
  }
  .packages-section .section-header h2 {
    font-size: 36px;
  }
  .packages-section .package-card {
    padding: 35px 25px;
  }
  .packages-section .package-card h3 {
    font-size: 22px;
  }
  .packages-section .package-card .package-price .price {
    font-size: 38px;
  }
  .packages-section .additional-package .corporate-card {
    padding: 35px 25px;
  }
  .packages-section .additional-package .corporate-card h3 {
    font-size: 26px;
  }
  .packages-section .additional-package .corporate-card .corporate-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-section {
  padding: 100px 0;
  background: #ffffff;
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-section .contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #5A3E2B;
}
.contact-section .contact-info .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #F5C76A;
  transition: all 0.3s ease;
}
.contact-section .contact-info .info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(245, 199, 106, 0.2);
}
.contact-section .contact-info .info-item i {
  font-size: 28px;
  color: #F5C76A;
  margin-top: 5px;
}
.contact-section .contact-info .info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5A3E2B;
}
.contact-section .contact-info .info-item p {
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}
.contact-section .contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}
.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group select,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group select:focus,
.contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #F5C76A;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
}
.contact-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

footer {
  background: #5A3E2B;
  color: #ffffff;
  padding: 60px 0 30px;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer .footer-section h3 {
  color: #F5C76A;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
footer .footer-section p,
footer .footer-section li {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 10px;
}
footer .footer-section ul {
  list-style: none;
}
footer .footer-section ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}
footer .footer-section ul a:hover {
  color: #F5C76A;
  padding-left: 5px;
}
footer .footer-section .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
footer .footer-section .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 199, 106, 0.1);
  border: 2px solid #F5C76A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C76A;
  transition: all 0.3s ease;
}
footer .footer-section .social-links a:hover {
  background: #F5C76A;
  color: #5A3E2B;
  transform: translateY(-5px);
}
footer .footer-bottom {
  border-top: 1px solid rgba(245, 199, 106, 0.2);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  header .mobile-menu-btn {
    display: block;
  }
  .about-section .about-content,
  .hall-section .hall-content {
    grid-template-columns: 1fr;
  }
  .rooms-section .rooms-grid,
  .packages-section .packages-grid {
    grid-template-columns: 1fr;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section .contact-content {
    grid-template-columns: 1fr;
  }
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hero-slider .slide-content h1 {
    font-size: 36px;
    font-weight: 500;
  }
  .hero-slider .slide-content p {
    font-size: 18px;
    font-weight: 400;
  }
  .hero-slider .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .hero-slider .slider-btn.prev {
    left: 15px;
  }
  .hero-slider .slider-btn.next {
    right: 15px;
  }
  .section-header h2 {
    font-size: 32px;
    font-weight: 500;
  }
  .about-section .features-grid,
  .hall-section .specs-grid {
    grid-template-columns: 1fr;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(245, 199, 106, 0.3);
  border-radius: 50%;
  border-top-color: #F5C76A;
  animation: spin 1s linear infinite;
}

@media (max-width: 767px) {
  header .menu-close {
    display: block;
  }
  /* MOBILE MENU */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #060606;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 24px;
    transition: right 0.4s ease-in-out;
    z-index: 1001;
  }
  .main-nav.active {
    right: 0;
  }
  .main-nav a {
    color: #fff;
    font-size: 18px;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav a.active {
    color: #f5c76a;
  }
  /* CLOSE ICON */
  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }
  /* OVERLAY */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* MENU BUTTON */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 1100;
  }
  .mobile-menu-btn.active i {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  .menu-open .mobile-menu-btn {
    display: none;
  }
}
.terms-section {
  background: #f8f9fa;
  padding: 80px 20px;
  padding-top: 160px;
  /* HERO */
  /* CONTENT CARD */
  /* INTRO */
  /* LIST */
  /* HIGHLIGHT BOX */
}
@media (max-width: 767px) {
  .terms-section {
    padding: 50px 15px;
  }
}
.terms-section .terms-hero {
  text-align: center;
  margin-bottom: 50px;
}
.terms-section .terms-hero h1 {
  font-size: 42px;
  color: #5A3E2B;
  margin-bottom: 10px;
  font-weight: 700;
}
.terms-section .terms-hero p {
  font-size: 16px;
  color: rgba(90, 62, 43, 0.7);
}
@media (max-width: 767px) {
  .terms-section .terms-hero h1 {
    font-size: 30px;
  }
}
.terms-section .terms-content {
  max-width: 1000px;
  margin: 0 auto;
}
.terms-section .terms-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .terms-section .terms-card {
    padding: 25px;
  }
}
.terms-section .terms-intro {
  margin-bottom: 30px;
}
.terms-section .terms-intro h2 {
  font-size: 26px;
  color: #5A3E2B;
  margin-bottom: 10px;
}
.terms-section .terms-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(90, 62, 43, 0.75);
}
.terms-section .terms-list {
  counter-reset: term;
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
.terms-section .terms-list li {
  counter-increment: term;
  position: relative;
  padding-left: 45px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #5A3E2B;
}
.terms-section .terms-list li strong {
  color: rgb(72.7443609023, 50.1127819549, 34.7556390977);
  font-weight: 600;
}
.terms-section .terms-list li::before {
  content: counter(term);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F5C76A;
  color: #5A3E2B;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.terms-section .highlight-box {
  border: 1px solid #e5e5e5;
  background: rgba(245, 199, 106, 0.08);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terms-section .highlight-box h3 {
  font-size: 18px;
  color: #5A3E2B;
  display: flex;
  align-items: center;
  gap: 10px;
}
.terms-section .highlight-box h3 i {
  color: #F5C76A;
  font-size: 20px;
}
.terms-section .highlight-box p {
  font-size: 14px;
  color: rgba(90, 62, 43, 0.75);
  line-height: 1.6;
}/*# sourceMappingURL=custom.css.map */