/* Luxury Hotel Website - Black & Golden Theme */

:root {
  --primary-gold: #C5A56F;
  --dark-gold: #A08B5A;
  --light-gold: #E6D4B8;
  --deep-black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark-gray: #2a2a2a;
  --light-gray: #8a8a8a;
  --white: #ffffff;
  --gold-gradient: linear-gradient(135deg, #C5A56F, #A08B5A);
  --black-gradient: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Philosopher", serif;
  background-color: var(--deep-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.section-title {
  font-family: "Philosopher", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}
/* Availability Check Page Styles */
.availability-page {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
}

.availability-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.availability-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.availability-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.availability-container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(197, 165, 111, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.availability-header {
  text-align: center;
  margin-bottom: 3rem;
}

.availability-title {
  font-family: "Philosopher", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.availability-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.availability-form {
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label i {
  color: var(--primary-gold);
  width: 20px;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 12px;
  color: var(--white);
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(197, 165, 111, 0.3);
  color: var(--white);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.availability-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  transition: all 0.3s ease;
}

.availability-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 165, 111, 0.4);
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(197, 165, 111, 0.3);
  border-top: 4px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}

.availability-results {
  margin-top: 2rem;
}

.results-title {
  font-family: "Philosopher", serif;
  font-size: 2rem;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 2rem;
}

.rooms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.room-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 165, 111, 0.3);
  transition: all 0.3s ease;
  display: flex;
  gap: 0;
  align-items: stretch;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 165, 111, 0.3);
  border-color: var(--primary-gold);
}

.room-image {
  width: 250px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.room-type {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.room-capacity {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.room-capacity i {
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

.room-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.room-amenities {
  margin-bottom: 1.5rem;
}

.amenity {
  display: inline-block;
  background: rgba(197, 165, 111, 0.2);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 0.2rem;
}

.book-room-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--gold-gradient);
  border: none;
  border-radius: 8px;
  color: var(--deep-black);
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-room-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

.no-results {
  text-align: center;
  padding: 3rem;
}

.no-results-content i {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.no-results-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.no-results-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .availability-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .availability-title {
    font-size: 2rem;
  }
  
  .rooms-list {
    grid-template-columns: 1fr;
  }
  
  .room-card {
    flex-direction: column;
  }
  
  .room-image {
    width: 100%;
    height: 200px;
  }
  
  .room-details {
    padding: 1rem;
  }
  
  /* Hide entire desktop complementary services grid on mobile */
  .complementary-services-grid {
    display: none !important;
  }
  
  /* Hide titles in mobile complementary services - show only icons */
  .mobile-complementary-service-title {
    display: none;
  }
}

/* Authentication Pages */
.auth-page {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
}

.auth-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.auth-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.auth-container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(197, 165, 111, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.auth-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-label i {
  font-size: 0.9rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 8px;
  color: white;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 165, 111, 0.25);
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Select dropdown styling */
.form-control option {
  background: #1a1a1a;
  color: white;
  padding: 0.5rem;
}

select.form-control {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

select.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

select.form-control option {
  background: #1a1a1a;
  color: white;
}

select.form-control option:hover {
  background: rgba(197, 165, 111, 0.2);
  color: white;
}

/* Additional select styling for better browser compatibility */
select {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(197, 165, 111, 0.3) !important;
}

select:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border-color: var(--primary-gold) !important;
  box-shadow: 0 0 0 0.2rem rgba(197, 165, 111, 0.25) !important;
}

select option {
  background: #1a1a1a !important;
  color: white !important;
}

select option:hover,
select option:checked {
  background: rgba(197, 165, 111, 0.3) !important;
  color: white !important;
}

.form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.form-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.auth-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  background: var(--gold-gradient);
  color: var(--deep-black);
}

.auth-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.auth-link-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.auth-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auth-link:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* Google Login Button */
.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(197, 165, 111, 0.3);
}

.auth-divider span {
  background: rgba(0, 0, 0, 0.8);
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.google-btn {
  width: 100%;
  background: transparent;
  border: 2px solid #db4437;
  color: #db4437;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.google-btn:hover {
  background: #db4437;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(219, 68, 55, 0.4);
  text-decoration: none;
}

.google-btn i {
  font-size: 1.1rem;
}

/* Booking Page */
.booking-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
}

.booking-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.booking-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.booking-container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(197, 165, 111, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.booking-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.form-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.section-title {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  font-size: 1.2rem;
}

.booking-summary {
  margin-bottom: 2rem;
}

.summary-card {
  background: rgba(197, 165, 111, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(197, 165, 111, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.summary-value {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.booking-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 8px;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  background: var(--gold-gradient);
  color: var(--deep-black);
}

.form-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Error Alert Styling */
.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.alert-danger h4 {
  color: #f8d7da;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.alert-danger ul {
  margin: 0;
  padding-left: 1.5rem;
}

.alert-danger li {
  margin-bottom: 0.25rem;
}

/* Booking Confirmation Page */
.confirmation-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
}

.confirmation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.confirmation-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirmation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.confirmation-container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(197, 165, 111, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.confirmation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.confirmation-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.confirmation-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.booking-details {
  margin-bottom: 3rem;
}

.booking-id-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(197, 165, 111, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.3);
}

.booking-id-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-id {
  font-family: "Philosopher", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
}

.copy-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.booking-info-section,
.guest-info-section,
.special-requests-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(197, 165, 111, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.info-value {
  color: var(--primary-gold);
  font-weight: 600;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.special-requests-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.next-steps {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: var(--deep-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  background: var(--gold-gradient);
  color: var(--deep-black);
}

/* Payment Pages */
.payment-page,
.payment-confirmation-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
}

.payment-background,
.payment-confirmation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.payment-background img,
.payment-confirmation-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-overlay,
.payment-confirmation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.payment-container,
.payment-confirmation-container {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(197, 165, 111, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.payment-header,
.payment-confirmation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.payment-title,
.payment-confirmation-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.payment-subtitle,
.payment-confirmation-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.payment-content {
  margin-bottom: 3rem;
}

.payment-summary,
.payment-instructions,
.payment-form-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.payment-method-card {
  background: rgba(197, 165, 111, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 1rem;
}

.payment-method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method-header i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.payment-method-header h4 {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin: 0;
}

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bkash-number {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.number-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.number-value {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Philosopher", serif;
}

.payment-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.payment-details {
  margin-bottom: 3rem;
}

.payment-info-section,
.booking-info-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.status-submitted {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.waiting-message {
  margin-bottom: 3rem;
}

.waiting-card {
  background: rgba(197, 165, 111, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.waiting-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.waiting-card h3 {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.waiting-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--primary-gold);
}





/* Hero Section with Drone Video */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.5));
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
}

.hero-title {
  font-family: "Philosopher", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .text-primary {
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(197, 165, 111, 0.3);
}

.hero-subtitle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-subtitle-part {
  font-family: "Philosopher", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  line-height: 1.3;
  opacity: 0;
  transform: translateX(0);
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
  position: relative;
  font-style: italic;
}

.slide-from-right {
  animation-name: slideInFromRight;
  animation-delay: 1s;
}

.slide-from-left {
  animation-name: slideInFromLeft;
  animation-delay: 1.8s;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(300px) scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: translateX(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px) scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Responsive design for animated subtitle */
@media (max-width: 768px) {
  .hero-subtitle-part {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle-part {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}

.hero-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
}

.hero-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 165, 111, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-gold);
  animation: bounce 2s infinite;
}

/* Promotional Text Animation */
.promotional-text-container {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  z-index: 10;
  text-align: left;
  animation: slideInFromLeft 1.2s ease-out 0.8s both;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.promotional-text-display {
  background: transparent;
  border: none;
  padding: 0;
  min-width: 450px;
  max-width: 650px;
  position: relative;
  text-align: center;
}

.promotional-text-display::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.8;
}

.promotional-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 250;
  font-family: "Philosopher", serif;
  letter-spacing: 1px;
  line-height: 1.5;
  min-height: 1.5em;
  display: inline-block;
  text-transform: uppercase;
}

@keyframes textGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.1);
  }
}

.typing-cursor {
  color: white;
  font-size: 1.4rem;
  font-weight: 400;
  animation: blink 1s infinite;
  margin-left: 3px;
}

@keyframes cursorPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(197, 165, 111, 0.6);
  }
  50% {
    text-shadow: 0 0 15px rgba(197, 165, 111, 0.9);
  }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Responsive Design for Promotional Text */
@media (max-width: 1200px) {
  .booking-widget {
    right: 1rem;
  }
  
  .promotional-text-container {
    left: 1rem;
  }
}

/* Mobile Hero Content Container */
.mobile-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  padding: 0 1rem;
  z-index: 10;
}

@media (min-width: 769px) {
  .mobile-hero-content {
    display: none;
  }
  
  .desktop-promotional {
    display: block;
  }
}

@media (max-width: 768px) {
  .desktop-promotional {
    display: none;
  }
}

@media (max-width: 768px) {
  .booking-widget {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    transform: none;
    margin: 0;
    order: 2; /* Booking widget comes second */
  }
  
  .promotional-text-container {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0;
    text-align: center;
    animation: slideInFromBottom 1.2s ease-out 0.8s both;
    order: 1; /* Promotional text comes first */
    transition: all 0.3s ease-in-out;
  }
  
  .promotional-text-display {
    min-width: auto;
    max-width: none;
    padding: 0;
  }
  
  .promotional-text {
    font-size: 1.2rem;
    letter-spacing: 0.8px;
  }
  
  .typing-cursor {
    font-size: 1.2rem;
  }
  
  /* Hide promotional text when booking widget is open */
  .mobile-hero-content .promotional-text-container.hidden {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    visibility: hidden !important;
    transition: all 0.3s ease-in-out !important;
  }
  
  /* Ensure promotional text is visible by default */
  .mobile-hero-content .promotional-text-container {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dynamic Booking Widget */
.booking-widget {
  position: absolute;
  bottom: 8rem;
  right: 2rem;
  z-index: 10;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.booking-container {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.6rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 420px;
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  position: relative;
}

.booking-field:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.field-icon {
  color: var(--primary-gold);
  font-size: 0.8rem;
  width: 14px;
  text-align: center;
}

.field-content {
  flex: 1;
}

.field-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.15rem;
}

.field-date {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.date-day {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Philosopher", serif;
}

.date-month {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.field-guests {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.guests-count {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Philosopher", serif;
}

.guests-text {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.field-dropdown {
  color: var(--primary-gold);
  font-size: 0.65rem;
}

.swap-icon {
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swap-icon:hover {
  color: var(--primary-gold);
  transform: scale(1.1);
}

.date-panel {
  flex: 1;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(197, 165, 111, 0.15);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.date-panel:hover {
  background: rgba(10, 10, 10, 0.6);
  border-color: rgba(197, 165, 111, 0.3);
  transform: translateY(-2px);
}

.date-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.date-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Philosopher", serif;
  margin-bottom: 0.25rem;
}

.date-month {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-btn {
  background: var(--primary-gold);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.search-btn:hover {
  background: #C5A56F;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
}

/* Dropdown Styles */
.booking-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
}

.booking-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 0.75rem;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-gold);
}

.dropdown-item.selected {
  background: rgba(197, 165, 111, 0.2);
  color: var(--primary-gold);
}

/* Date Picker Styles */
.date-picker {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  background: rgba(0, 0, 0, 1);
  border-radius: 4px;
  padding: 0.5rem;
}

.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 1);
  border-radius: 4px;
}

.date-picker-nav {
  background: rgba(0, 0, 0, 1);
  border: none;
  color: var(--primary-gold);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.date-picker-nav:hover {
  background: rgba(197, 165, 111, 0.5);
}

.date-picker-month {
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

.date-picker-day {
  padding: 0.25rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.date-picker-date {
  padding: 0.4rem;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  color: white;
}

.date-picker-date:hover {
  background: rgba(255, 255, 255, 0.1);
}

.date-picker-date.selected {
  background: var(--primary-gold);
  color: var(--deep-black);
}

.date-picker-date.disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.date-picker-date.disabled:hover {
  background: none;
}

/* Mobile Booking Toggle Button */
.mobile-booking-toggle {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.booking-toggle-btn {
  background: var(--gold-gradient);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  color: var(--deep-black);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  animation: pulse 2s infinite;
}

.booking-toggle-btn:hover {
  background: var(--dark-gold);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 35px rgba(197, 165, 111, 0.6);
}

.booking-toggle-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.booking-toggle-btn.rotated i {
  transform: rotate(180deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  }
}

/* Responsive design for booking widget */
@media (max-width: 768px) {
  .booking-widget {
    bottom: 6rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .booking-widget.show {
    opacity: 1;
    visibility: visible;
  }
  
  .booking-container {
    min-width: auto;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .booking-field {
    min-width: auto;
    padding: 0.6rem 0.8rem;
  }
  
  .field-icon {
    font-size: 0.8rem;
    width: 14px;
  }
  
  .field-label {
    font-size: 0.65rem;
  }
  
  .date-day {
    font-size: 0.9rem;
  }
  
  .date-month {
    font-size: 0.7rem;
  }
  
  .guests-count {
    font-size: 0.9rem;
  }
  
  .guests-text {
    font-size: 0.7rem;
  }
  
  .search-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .booking-dropdown {
    padding: 0.4rem;
  }
  
  .dropdown-item {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .date-picker {
    gap: 0.2rem;
  }
  
  .date-picker-date {
    padding: 0.3rem;
    font-size: 0.7rem;
  }
}

/* Booking Widget Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes datePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.date-panel:hover .date-number {
  animation: datePulse 0.6s ease-in-out;
}

.booking-widget {
  animation: fadeInUp 1s ease-out 0.5s both;
}



/* Special Offers Section */
.offers-section {
  padding: 5rem 0;
  background: var(--deep-black);
  position: relative;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(197, 165, 111, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(197, 165, 111, 0.05) 50%, transparent 70%);
  animation: backgroundShift 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(10px) translateY(-5px);
  }
  75% {
    transform: translateX(-5px) translateY(10px);
  }
}

.section-subtitle-gold {
  color: var(--primary-gold);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.offers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: block;
  overflow: hidden; /* Clearfix for floating elements */
  flex-direction: column;
  gap: 3rem;
}

/* Legacy Offer Card Styles - Replaced by Classic Design */

/* Legacy Offer Content - Replaced by Classic Design */

/* Legacy Offer Text - Replaced by Classic Design */

/* Legacy Offer Text Styles - Replaced by Classic Design */

/* Legacy Discount Styles - Replaced by Classic Design */

/* Legacy Offer Styles - Replaced by Classic Design */

/* Legacy Card Shapes - Replaced by Classic Design */

/* Facilities Section */
.facilities-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  overflow: hidden;
}

.facilities-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.facilities-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="facilitiesPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23facilitiesPattern)"/></svg>') repeat;
  animation: facilitiesFloat 20s ease-in-out infinite;
}

.facilities-golden-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(45deg, transparent, rgba(197, 165, 111, 0.1), transparent);
  animation: facilitiesWave 15s ease-in-out infinite;
}

@keyframes facilitiesFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes facilitiesWave {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(20px); }
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Center the last item in facilities grid */
.facilities-grid .facility-item:nth-child(13) {
  grid-column: 2;
}

.facility-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(197, 165, 111, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.facility-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.2);
}

@keyframes facilityCardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes facilityGoldShimmer {
  0%, 100% { background: linear-gradient(45deg, var(--primary-gold), #C5A56F, var(--primary-gold)); }
  50% { background: linear-gradient(45deg, #C5A56F, var(--primary-gold), #C5A56F); }
}

.facility-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.facility-icon-small i {
  font-size: 1.2rem;
  color: #000;
}

.facility-info h4 {
  font-family: "Philosopher", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin: 0 0 0.5rem 0;
}

.facility-info p {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* Amenity features removed for compact design */

/* Wedding Celebrations Section */
.weddings-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  overflow: hidden;
}

.weddings-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.weddings-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="weddingsPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="%23D4AF37" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23weddingsPattern)"/></svg>') repeat;
  animation: weddingsFloat 25s ease-in-out infinite;
}

.weddings-golden-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(45deg, transparent, rgba(197, 165, 111, 0.08), transparent);
  animation: weddingsWave 18s ease-in-out infinite;
}

@keyframes weddingsFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes weddingsWave {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(15px); }
}

.weddings-content {
  position: relative;
  z-index: 2;
}

.weddings-tagline {
  font-family: "Philosopher", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #C5A56F;
  margin-bottom: 2rem;
}

.weddings-description {
  margin-bottom: 3rem;
}

.weddings-description p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.weddings-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.2);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.2rem;
  color: #000;
}

.service-content h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.weddings-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.weddings-image {
  position: relative;
  z-index: 2;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.wedding-hall-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover .wedding-hall-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.overlay-content h3 {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.overlay-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-badge {
  background: rgba(197, 165, 111, 0.2);
  color: var(--primary-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(197, 165, 111, 0.3);
}

/* Guest Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.testimonials-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialsPattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.2" fill="%23D4AF37" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialsPattern)"/></svg>') repeat;
  animation: testimonialsFloat 22s ease-in-out infinite;
}

.testimonials-golden-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(45deg, transparent, rgba(197, 165, 111, 0.06), transparent);
  animation: testimonialsWave 16s ease-in-out infinite;
}

@keyframes testimonialsFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes testimonialsWave {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(12px); }
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-card {
  display: none;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(197, 165, 111, 0.3);
  position: relative;
}

.testimonial-card.active {
  display: block;
  animation: testimonialFadeIn 0.5s ease-in-out;
}

@keyframes testimonialFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F, var(--primary-gold));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.testimonial-content blockquote {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-gold);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav-btn:hover {
  background: linear-gradient(45deg, #C5A56F, var(--primary-gold));
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(197, 165, 111, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* Classic Offer Cards with Wave Shapes */
.offer-card-wave {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  margin: 3rem 0;
  position: relative;
  border: 2px solid rgba(197, 165, 111, 0.3);
  transition: all 0.3s ease;
  animation: offerCardFloat 6s ease-in-out infinite;
  width: 100%;
}

.offer-card-wave::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F, var(--primary-gold));
  z-index: -1;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.offer-card-wave:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(197, 165, 111, 0.2);
  border-color: var(--primary-gold);
}

.offer-card-wave:hover::before {
  opacity: 0.8;
  animation: offerGoldShimmer 2s ease-in-out infinite;
}

@keyframes offerCardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}

@keyframes offerGoldShimmer {
  0%, 100% { background: linear-gradient(45deg, var(--primary-gold), #C5A56F, var(--primary-gold)); }
  50% { background: linear-gradient(45deg, #C5A56F, var(--primary-gold), #C5A56F); }
}

/* Wave-shaped Corners */
.offer-card-wave {
  border-radius: 25px;
  position: relative;
}

.offer-card-wave::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, transparent, rgba(197, 165, 111, 0.1), transparent);
  border-radius: 25px;
  z-index: 1;
  pointer-events: none;
}

/* Left-Right Positioning - Whole Cards */
.offer-card-left {
  margin-right: auto !important;
  margin-left: 0 !important;
  max-width: 85% !important;
  position: relative;
  float: left;
  clear: both;
}

.offer-card-left::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-gold), #C5A56F, var(--primary-gold));
  border-radius: 2px;
  opacity: 0.7;
}

.offer-card-right {
  margin-left: auto !important;
  margin-right: 0 !important;
  max-width: 85% !important;
  position: relative;
  float: right;
  clear: both;
}

.offer-card-right::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-gold), #C5A56F, var(--primary-gold));
  border-radius: 2px;
  opacity: 0.7;
}

.offer-content {
  display: flex;
  min-height: 400px;
}

.offer-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card-wave:hover .offer-image img {
  transform: scale(1.05);
}

.offer-text {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.offer-text h3 {
  font-family: "Philosopher", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-subtitle {
  color: #C5A56F;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-validity {
  color: #C5A56F;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-description {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-item i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.feature-item span {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
}

.offer-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.offer-image-luxury {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.offer-image-luxury img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card-luxury:hover .offer-image-luxury img {
  transform: scale(1.05);
}

.offer-text-luxury {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.offer-text-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxuryPattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxuryPattern)"/></svg>') repeat;
  opacity: 0.4;
}

.offer-badge-luxury {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.offer-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.offer-subtitle {
  color: #C5A56F;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.offer-validity {
  color: #C5A56F;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.offer-description {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-features-luxury {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.feature-item-luxury {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-item-luxury i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.feature-item-luxury span {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
}

.btn-luxury {
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.3);
  position: relative;
  z-index: 1;
}

.btn-luxury:hover {
  background: linear-gradient(45deg, #C5A56F, var(--primary-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.5);
  color: #000;
}

.badge-text {
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-text-section {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.offer-text-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="offerPattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23offerPattern)"/></svg>') repeat;
  opacity: 0.4;
}

.offer-header h3 {
  font-family: "Philosopher", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-subtitle {
  color: #C5A56F;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-validity {
  color: #C5A56F;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-description {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-item i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.feature-item span {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
}

.offer-footer {
  margin-top: auto;
}

.offer-footer .btn {
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 165, 111, 0.3);
}

.offer-footer .btn:hover {
  background: linear-gradient(45deg, #C5A56F, var(--primary-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.5);
}

/* Left-Right Positioning with Staggered Animations */
.offer-card-left {
  margin-right: 0;
  margin-left: 0;
  animation-delay: 0s;
}

.offer-card-right {
  margin-left: 0;
  margin-right: 0;
  animation-delay: 2s;
}

/* Removed old offer-card-classic rules */

.offer-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Scroll Animation Classes for Wave Cards */
.offer-card-wave {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.offer-card-wave.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 165, 111, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced Image Overlay */
.offer-image-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card-classic:hover .offer-image-section::after {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .offers-container {
    gap: 2rem;
  }
  
  .offer-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .offer-text {
    padding: 2rem;
  }
  
  .offer-text h3 {
    font-size: 2rem;
  }
  
  .offer-discount {
    position: static;
    transform: none;
    width: auto;
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .discount-percentage .percentage {
    font-size: 3rem;
  }
  
  .offer-image {
    height: 250px;
  }
  
  
  
  /* Wave offer cards responsive */
  .offer-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .offer-text {
    padding: 2rem;
  }
  
  .offer-text h3 {
    font-size: 1.8rem;
  }
  
  .offer-image {
    height: 250px;
  }
  
  .offer-card-wave {
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 100%;
  }
  
  .offer-card-wave::before,
  .offer-card-wave::after {
    border-radius: 20px;
  }
  
  /* Reset positioning indicators on mobile */
  .offer-card-left::before,
  .offer-card-right::before {
    display: none;
  }
  
  .offer-card-left,
  .offer-card-right {
    margin: 2rem auto;
    max-width: 100%;
  }
  
  /* Amenities responsive */
  .amenities-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .facilities-grid {
    display: none; /* Hide facilities grid on mobile */
  }
  
  .complementary-services-grid {
    display: none; /* Hide complementary services grid on mobile */
  }
  
  .facility-item {
    padding: 1rem;
  }
  
  .facility-icon-small {
    width: 40px;
    height: 40px;
  }
  
  .facility-icon-small i {
    font-size: 1rem;
  }
  
  .facility-info h4 {
    font-size: 1rem;
  }
  
  /* Mobile Complementary Services Icons */
  .complementary-services-mobile-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .mobile-complementary-service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .mobile-complementary-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 111, 0.1);
    border: 2px solid rgba(197, 165, 111, 0.3);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-complementary-service-icon:hover {
    background: rgba(197, 165, 111, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.2);
  }
  
  .mobile-complementary-service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
  }
  
  .mobile-complementary-service-icon:hover i {
    color: var(--light-gold);
    transform: scale(1.1);
  }
  
  .mobile-complementary-service-title {
    font-family: "Philosopher", serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-top: 0.3rem;
    line-height: 1.2;
    text-align: center;
  }
  
  /* Mobile Facilities Icons */
  .facilities-mobile-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .mobile-icon-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .mobile-facility-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .mobile-facility-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 111, 0.1);
    border: 2px solid rgba(197, 165, 111, 0.3);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-facility-icon:hover {
    background: rgba(197, 165, 111, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.2);
  }
  
  .mobile-facility-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
  }
  
  .mobile-facility-icon:hover i {
    color: var(--light-gold);
    transform: scale(1.1);
  }
  
  .mobile-facility-title {
    font-family: "Philosopher", serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-top: 0.3rem;
    line-height: 1.2;
    text-align: center;
  }
}

/* Desktop styles - show facilities grid, hide mobile icons */
@media (min-width: 992px) {
  .facilities-grid {
    display: grid !important;
  }
  
  .facilities-mobile-icons {
    display: none !important;
  }
  
  .complementary-services-grid {
    display: grid !important;
  }
  
  .complementary-services-mobile-icons {
    display: none !important;
  }
}

/* Medium screens - adjust grid layouts */
@media (max-width: 1200px) and (min-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .facilities-grid .facility-item:nth-child(13) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }
  
  .complementary-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .complementary-services-grid .complementary-service-item:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }
}
  
  /* Responsive adjustments for mobile facilities */
  @media (max-width: 480px) {
    .facilities-mobile-icons {
      max-width: 320px;
      gap: 1rem;
    }
    
    .mobile-icon-row {
      gap: 0.8rem;
    }
    
    .mobile-facility-icon {
      width: 50px;
      height: 50px;
    }
    
    .mobile-facility-icon i {
      font-size: 1.5rem;
    }
    
    .mobile-facility-title {
      font-size: 0.7rem;
    }
    
    .complementary-services-mobile-icons {
      max-width: 320px;
      gap: 1rem;
    }
    
    .mobile-complementary-service-icon {
      width: 50px;
      height: 50px;
    }
    
    .mobile-complementary-service-icon i {
      font-size: 1.5rem;
    }
    
    .mobile-complementary-service-title {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 360px) {
    .facilities-mobile-icons {
      max-width: 280px;
    }
    
    .mobile-facility-icon {
      width: 45px;
      height: 45px;
    }
    
    .mobile-facility-icon i {
      font-size: 1.3rem;
    }
    
    .mobile-facility-title {
      font-size: 0.65rem;
    }
    
    .complementary-services-mobile-icons {
      max-width: 280px;
    }
    
    .mobile-complementary-service-icon {
      width: 45px;
      height: 45px;
    }
    
    .mobile-complementary-service-icon i {
      font-size: 1.3rem;
    }
    
    .mobile-complementary-service-title {
      font-size: 0.65rem;
    }
  }
  
  .facility-info p {
    font-size: 0.85rem;
  }
  
  /* Complementary Services Section */
  .complementary-services-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    overflow: hidden;
  }
  
  .complementary-services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .complementary-services-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="complementaryServicesPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23complementaryServicesPattern)"/></svg>') repeat;
    animation: complementaryServicesFloat 20s ease-in-out infinite;
  }
  
  .complementary-services-golden-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(45deg, transparent, rgba(197, 165, 111, 0.1), transparent);
    animation: complementaryServicesWave 15s ease-in-out infinite;
  }
  
  @keyframes complementaryServicesFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes complementaryServicesWave {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
  }
  
.complementary-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Center the last item in complementary services grid */
.complementary-services-grid .complementary-service-item:nth-child(7) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 400px;
}
  
  .complementary-service-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(197, 165, 111, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .complementary-service-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.2);
  }
  
  .complementary-service-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-gold), #C5A56F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .complementary-service-icon-small i {
    font-size: 1.2rem;
    color: #000;
  }
  
  .complementary-service-info h4 {
    font-family: "Philosopher", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0 0 0.5rem 0;
  }
  
  .complementary-service-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
  }
  
  
  
  /* Weddings responsive */
  .weddings-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .weddings-actions {
    flex-direction: column;
  }
  
  .weddings-actions .btn {
    width: 100%;
  }
  
  /* Testimonials responsive */
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-content blockquote {
    font-size: 1.1rem;
  }


@media (max-width: 768px) {
  .offers-container {
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .offer-text {
    padding: 1.5rem;
  }
  
  .offer-text h3 {
    font-size: 1.8rem;
  }
  
  .offer-text .description {
    font-size: 1rem;
  }
  
  .offer-discount {
    padding: 1rem;
  }
  
  .discount-percentage .percentage {
    font-size: 2.5rem;
  }
  
  .offer-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .offers-container {
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .offer-text {
    padding: 1rem;
  }
  
  .offer-text h3 {
    font-size: 1.5rem;
  }
  
  .offer-text .description {
    font-size: 0.9rem;
  }
  
  .offer-discount {
    padding: 0.8rem;
  }
  
  .discount-percentage .percentage {
    font-size: 2rem;
  }
  
  .offer-image {
    height: 180px;
  }
}


/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 600px;
  }
  
  .footer-links-section,
  .footer-services {
    flex: 1 1 200px;
    max-width: 200px;
  }
  
  .footer-contact,
  .footer-social {
    flex: 1 1 200px;
    max-width: 200px;
  }
  
  .footer-links-section,
  .footer-services {
    text-align: center;
  }
  
  .footer-contact,
  .footer-social {
    text-align: center;
  }
  
  .social-grid {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-policies {
    justify-content: center;
    gap: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  
  .offers-container {
    padding: 1rem 0;
  }
  
  /* Footer Mobile Responsive */
  .footer-section {
    padding: 2rem 0 1rem;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: center;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-social {
    flex: none;
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }
  
  /* Create a horizontal container for Quick Links and Services */
  .footer-links-services-container {
    display: flex;
    width: 100%;
    max-width: 400px;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .footer-links-section,
  .footer-services {
    flex: 1;
    width: 48%;
    max-width: none;
    min-width: auto;
  }
  
  /* Ensure desktop-only sections are hidden on mobile */
  .footer-grid > .desktop-only {
    display: none !important;
  }
  
  .footer-brand {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 165, 111, 0.2);
  }
  
  .brand-header {
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .brand-text h3 {
    font-size: 1.4rem;
  }
  
  .brand-text span {
    font-size: 0.9rem;
  }
  
  .footer-brand p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-links-section {
    text-align: center;
  }
  
  .footer-services {
    text-align: center;
  }
  
  /* Center Services title perfectly on mobile */
  .footer-links-services-container .footer-services h4 {
    text-align: center;
    padding-right: 1px;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-social {
    text-align: center;
  }
  
  .footer-links-section h4,
  .footer-services h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
  }
  
  .links-grid,
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .links-grid a,
  .services-grid a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
    min-width: 120px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .links-grid a:hover,
  .services-grid a:hover {
    background: rgba(197, 165, 111, 0.1);
    color: var(--primary-gold);
    padding-left: 0.3rem;
  }
  
  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(197, 165, 111, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(197, 165, 111, 0.2);
    min-width: 200px;
  }
  
  .contact-item i {
    font-size: 1.1rem;
    color: var(--primary-gold);
  }
  
  .social-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    background: rgba(197, 165, 111, 0.1);
    border: 2px solid rgba(197, 165, 111, 0.3);
  }
  
  .social-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 165, 111, 0.4);
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding: 1.5rem 1rem 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-policies {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .footer-policies a {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .footer-policies a:hover {
    background: rgba(197, 165, 111, 0.1);
    color: var(--primary-gold);
  }
  
  .separator {
    display: none;
  }
  
}


/* Unique Compact Footer */
.footer-section {
  padding: 2.5rem 0 1rem;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9)),
    url('image/dark-luxury-texture.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(197, 165, 111, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(197, 165, 111, 0.08) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  animation: footerParticleFloat 20s linear infinite;
}

.footer-golden-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(197, 165, 111, 0.05) 50%, transparent 70%);
  animation: footerWaveShift 15s ease-in-out infinite;
}

@keyframes footerParticleFloat {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes footerWaveShift {
  0%, 100% { opacity: 0.3; transform: translateX(-20px); }
  50% { opacity: 0.5; transform: translateX(20px); }
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

/* Hide the mobile container on desktop */
@media (min-width: 769px) {
  .footer-links-services-container {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
}

/* Hide desktop-only sections on mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.footer-brand {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-section {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-services {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact {
  flex: 1.5;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(197, 165, 111, 0.4));
}

.brand-text h3 {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Philosopher", serif;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.brand-text span {
  color: rgba(197, 165, 111, 0.8);
  font-size: 0.85rem;
  font-family: "Philosopher", serif;
  font-weight: 400;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-family: "Philosopher", serif;
}

.footer-links-section,
.footer-services,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-section h4,
.footer-services h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Philosopher", serif;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.links-grid,
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.links-grid a,
.services-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.links-grid a::before,
.services-grid a::before {
  content: '→';
  color: var(--primary-gold);
  margin-right: 0.4rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.links-grid a:hover,
.services-grid a:hover {
  color: var(--primary-gold);
  padding-left: 0.4rem;
}

.links-grid a:hover::before,
.services-grid a:hover::before {
  opacity: 1;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.contact-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.social-grid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(197, 165, 111, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 50%;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-btn:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 165, 111, 0.4);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--primary-gold);
}

.separator {
  color: rgba(197, 165, 111, 0.4);
  font-size: 0.8rem;
}

/* Enhanced Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--charcoal);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 165, 111, 0.05), rgba(26, 26, 26, 0.05));
  z-index: -1;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(42, 42, 42, 0.5);
  border-radius: 1rem;
  border-left: 4px solid var(--primary-gold);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(42, 42, 42, 0.8);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 2rem;
  margin-right: 1rem;
  width: 60px;
  height: 60px;
  background: rgba(197, 165, 111, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(197, 165, 111, 0.3);
}

.contact-item h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-family: "Philosopher", serif;
}

.contact-item p {
  color: var(--light-gray);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--black-gradient);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(42, 42, 42, 0.8);
  border: 2px solid rgba(197, 165, 111, 0.3);
  color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.contact-form .form-control:focus {
  background: rgba(42, 42, 42, 1);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 165, 111, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
  color: var(--light-gray);
}

/* Footer */
.footer-section {
  background: var(--deep-black);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.footer-description {
  color: var(--light-gray);
  margin-bottom: 2rem;
  max-width: 400px;
}

.footer-title {
  color: var(--primary-gold);
  font-family: "Philosopher", serif;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(197, 165, 111, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 165, 111, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(197, 165, 111, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--light-gray);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Room Cards for Check Availability */
.search-results-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.results-title {
  font-family: "Philosopher", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-summary {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 165, 111, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.search-summary p {
  margin: 0;
  color: var(--white);
  font-weight: 500;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.room-card {
  background: var(--charcoal);
  border: 1px solid rgba(197, 165, 111, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-gold);
}

.room-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-overlay {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 8px;
}

.room-price {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.room-content {
  padding: 1.5rem;
}

.room-name {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.room-type {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--light-gray);
  background: rgba(197, 165, 111, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.feature i {
  color: var(--primary-gold);
  font-size: 0.7rem;
}

.room-actions {
  display: flex;
  gap: 0.75rem;
}

.room-actions .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.no-results-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.no-results-content {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.no-results-content i {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1rem;
}

.no-results-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.no-results-content p {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .slide {
    padding: 2rem 1rem;
  }

  .slide-title {
    font-size: 2rem;
  }

  .circle-shape .offer-content {
    width: 250px;
    height: 250px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-actions {
    flex-direction: column;
  }
}

/* Button Styles */
.btn-primary {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(197, 165, 111, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--dark-gold);
  color: var(--deep-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  color: var(--white);
}

.loading-content h2 {
  font-family: "Philosopher", serif;
  color: var(--primary-gold);
  margin: 1rem 0;
  font-size: 2rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(197, 165, 111, 0.2);
  border-radius: 2px;
  margin: 2rem auto;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Enhanced hover effects */
.offer-card:hover .offer-content {
  border-color: var(--light-gold);
  box-shadow: 0 25px 50px rgba(197, 165, 111, 0.2);
}


/* Luxury scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

/* Water Effects for Offers Section */
.offers-section {
  position: relative;
  overflow: hidden;
}

/* Water Wave Background for Offers */
.offers-wave-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.offers-wave-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.025) 0%, transparent 45%),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.015) 0%, transparent 55%);
  border-radius: 50%;
  animation: offersWaveMotion 18s ease-in-out infinite;
}

.offers-wave-1 {
  animation-delay: 0s;
  animation-duration: 22s;
  transform: scale(0.8);
}

.offers-wave-2 {
  animation-delay: 4s;
  animation-duration: 26s;
  transform: scale(1.2);
  opacity: 0.6;
}

.offers-wave-3 {
  animation-delay: 8s;
  animation-duration: 30s;
  transform: scale(0.6);
  opacity: 0.4;
}

.offers-wave-4 {
  animation-delay: 12s;
  animation-duration: 24s;
  transform: scale(1.5);
  opacity: 0.3;
}

@keyframes offersWaveMotion {
  0%, 100% {
    transform: scale(0.8) rotate(0deg) translateX(0) translateY(0);
    opacity: 0.2;
  }
  25% {
    transform: scale(1.2) rotate(90deg) translateX(25px) translateY(-15px);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.5) rotate(180deg) translateX(-20px) translateY(20px);
    opacity: 0.3;
  }
  75% {
    transform: scale(1.1) rotate(270deg) translateX(15px) translateY(-25px);
    opacity: 0.5;
  }
}

/* Water Drops for Offers */
.offers-water-drops {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.offers-water-drop {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: offersDropFall 7s ease-in-out infinite;
}

.offers-drop-1 {
  width: 6px;
  height: 6px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 4.5s;
}

.offers-drop-2 {
  width: 8px;
  height: 8px;
  top: 25%;
  left: 80%;
  animation-delay: 1.5s;
  animation-duration: 5.5s;
}

.offers-drop-3 {
  width: 5px;
  height: 5px;
  top: 45%;
  left: 25%;
  animation-delay: 3s;
  animation-duration: 4s;
}

.offers-drop-4 {
  width: 7px;
  height: 7px;
  top: 65%;
  left: 75%;
  animation-delay: 4.5s;
  animation-duration: 5s;
}

.offers-drop-5 {
  width: 6px;
  height: 6px;
  top: 35%;
  left: 60%;
  animation-delay: 2s;
  animation-duration: 4.8s;
}

.offers-drop-6 {
  width: 9px;
  height: 9px;
  top: 80%;
  left: 40%;
  animation-delay: 5.5s;
  animation-duration: 6s;
}

@keyframes offersDropFall {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.5);
  }
  10% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }
  90% {
    opacity: 0.5;
    transform: translateY(calc(100vh - 150px)) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(100vh + 30px)) scale(0.3);
  }
}

/* Water drop trail effect for offers */
.offers-water-drop::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 1px;
  animation: offersDropTrail 7s ease-in-out infinite;
}

@keyframes offersDropTrail {
  0%, 10% {
    opacity: 0;
    height: 0;
  }
  20% {
    opacity: 0.5;
    height: 12px;
  }
  80% {
    opacity: 0.2;
    height: 6px;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}

/* Individual Glass Containers for Each Offer */
.offer-glass-container {
  width: 100%;
  max-width: 1400px;
  height: 70vh;
  margin: 0 auto 60px auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
}

/* Simple alternating layout - entire cards move left/right */
.offer-glass-container:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  width: 80%;
}

.offer-glass-container:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  width: 80%;
}

/* Glass container glow effect for offers */
.offer-glass-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(197, 165, 111, 0.3), 
    rgba(255, 215, 0, 0.2), 
    rgba(197, 165, 111, 0.3));
  border-radius: 30px;
  z-index: -1;
  animation: offerGlowPulse 4s ease-in-out infinite;
}

@keyframes offerGlowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.offer-slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Left Column - Image Container for Offers */
.offer-image-column {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.offer-image-container {
  position: relative;
  width: 85%;
  height: 85%;
  max-width: 600px;
  max-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.offer-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Water Drops Background Effect for Offers Image */
.offer-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: offerWaterDrops 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes offerWaterDrops {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) translateY(0);
  }
  25% {
    opacity: 0.6;
    transform: scale(1.1) translateY(-5px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(-10px);
  }
  75% {
    opacity: 0.4;
    transform: scale(1.15) translateY(-5px);
  }
}

.offer-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.offer-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
  z-index: 3;
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 4;
  box-shadow: 0 4px 15px rgba(197, 165, 111, 0.4);
}

.badge-text {
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Water Drops for Offers Image */
.offer-image-water-drops {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.offer-image-water-drop {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: offerImageDropFall 6s ease-in-out infinite;
}

.offer-image-drop-1 {
  width: 8px;
  height: 8px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 4s;
}

.offer-image-drop-2 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 75%;
  animation-delay: 1s;
  animation-duration: 5s;
}

.offer-image-drop-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 25%;
  animation-delay: 2s;
  animation-duration: 3.5s;
}

.offer-image-drop-4 {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 80%;
  animation-delay: 0.5s;
  animation-duration: 4.5s;
}

.offer-image-drop-5 {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 60%;
  animation-delay: 1.5s;
  animation-duration: 3.8s;
}

.offer-image-drop-6 {
  width: 9px;
  height: 9px;
  top: 70%;
  left: 40%;
  animation-delay: 2.5s;
  animation-duration: 4.2s;
}

.offer-image-drop-7 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 3.2s;
}

.offer-image-drop-8 {
  width: 11px;
  height: 11px;
  top: 80%;
  left: 65%;
  animation-delay: 1.8s;
  animation-duration: 4.8s;
}

@keyframes offerImageDropFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
  }
  10% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(calc(100vh - 100px)) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(100vh + 20px)) scale(0.3);
  }
}

/* Water drop trail effect for offers image */
.offer-image-water-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 1px;
  animation: offerImageDropTrail 6s ease-in-out infinite;
}

@keyframes offerImageDropTrail {
  0%, 10% {
    opacity: 0;
    height: 0;
  }
  20% {
    opacity: 0.6;
    height: 15px;
  }
  80% {
    opacity: 0.3;
    height: 8px;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}

/* Ripple Effects for Offers Image Box */
.offer-image-ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.offer-image-ripple {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: offerImageRippleExpand 2s ease-out forwards;
  opacity: 0;
}

.offer-image-ripple-1 {
  width: 20px;
  height: 20px;
  top: 15%;
  left: 15%;
  animation-delay: 0.5s;
}

.offer-image-ripple-2 {
  width: 25px;
  height: 25px;
  top: 20%;
  left: 75%;
  animation-delay: 1.5s;
}

.offer-image-ripple-3 {
  width: 18px;
  height: 18px;
  top: 40%;
  left: 25%;
  animation-delay: 2.5s;
}

.offer-image-ripple-4 {
  width: 22px;
  height: 22px;
  top: 60%;
  left: 80%;
  animation-delay: 3.5s;
}

.offer-image-ripple-5 {
  width: 16px;
  height: 16px;
  top: 30%;
  left: 60%;
  animation-delay: 4.5s;
}

.offer-image-ripple-6 {
  width: 24px;
  height: 24px;
  top: 70%;
  left: 40%;
  animation-delay: 5.5s;
}

@keyframes offerImageRippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}

/* Right Column - Content for Offers */
.offer-content-column {
  flex: 1;
  background: linear-gradient(135deg, 
    rgba(44, 44, 44, 0.8) 0%, 
    rgba(26, 26, 26, 0.9) 50%,
    rgba(44, 44, 44, 0.8) 100%);
  backdrop-filter: blur(15px);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content Area for Offers */
.offer-content-area {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 40px 0;
}

.offer-slide-title {
  font-family: "Philosopher", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.8),
    0 0 20px rgba(197, 165, 111, 0.4);
  background: linear-gradient(45deg, #fff, #C5A56F, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: offerTitleShimmer 3s ease-in-out infinite;
  display: block;
  width: 100%;
}

@keyframes offerTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.offer-subtitle {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  color: #C5A56F;
  margin-bottom: 15px;
  font-style: italic;
}

.offer-validity {
  font-family: "Philosopher", serif;
  font-size: 1rem;
  color: #C5A56F;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-slide-description {
  font-family: "Philosopher", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 100%;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  font-weight: 300;
  letter-spacing: 0.3px;
  display: block;
  width: 100%;
}

.offer-cta-text {
  font-family: "Philosopher", serif;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
  font-style: italic;
}

.offer-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.feature-item i {
  color: #C5A56F;
  margin-right: 10px;
  font-size: 0.9rem;
}

.offer-order-btn {
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000 !important;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 25px rgba(197, 165, 111, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-top: 20px;
  align-self: flex-start;
  text-decoration: none !important;
  min-width: 180px;
  text-align: center;
  z-index: 10;
  font-family: "Philosopher", serif;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for offers section */
@media (max-width: 768px) {
  .offer-glass-container {
    width: 95%;
    height: auto;
    margin: 0 auto 40px auto;
    flex-direction: column;
  }
  
  .offer-slider-container {
    flex-direction: column !important;
  }
  
  .offer-image-column,
  .offer-content-column {
    flex: none;
    width: 100%;
    padding: 20px;
    overflow: visible;
  }
  
  .offer-image-container {
    width: 100%;
    height: 250px;
    max-height: 250px;
  }
  
  .offer-slide-title {
    font-size: 2.5rem !important;
    margin-bottom: 20px;
  }
  
  .offer-slide-description {
    font-size: 1rem !important;
    margin-bottom: 25px;
  }
  
  .offer-order-btn {
    padding: 14px 30px;
    font-size: 1rem;
    min-width: 160px;
    width: 100%;
    max-width: 200px;
  }
  
  .offer-floating-balls {
    display: none;
  }
  
  .offer-glass-container:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }
  
  .offer-glass-container:nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .offer-glass-container {
    width: 98%;
    margin: 0 auto 30px auto;
  }
  
  .offer-slide-title {
    font-size: 2rem !important;
  }
  
  .offer-order-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    min-width: 140px;
  }
}

.offer-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.offer-order-btn:hover::before {
  left: 100%;
}

.offer-order-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(197, 165, 111, 0.7),
    0 0 40px rgba(255, 215, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
  text-decoration: none;
  color: #000;
}

/* Glossy Effects for Offers */
.offer-glossy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 25%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.05) 75%, 
    transparent 100%);
  animation: offerGlossyMove 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes offerGlossyMove {
  0%, 100% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(100%) skewX(-15deg); }
}

/* Ripple Effects for Offers Content Box */
.offer-content-ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.offer-content-ripple {
  position: absolute;
  border: 1px solid rgba(197, 165, 111, 0.4);
  border-radius: 50%;
  animation: offerContentRippleExpand 2.5s ease-out forwards;
  opacity: 0;
}

.offer-content-ripple-1 {
  width: 15px;
  height: 15px;
  top: 20%;
  left: 20%;
  animation-delay: 1s;
}

.offer-content-ripple-2 {
  width: 18px;
  height: 18px;
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.offer-content-ripple-3 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 30%;
  animation-delay: 3s;
}

.offer-content-ripple-4 {
  width: 20px;
  height: 20px;
  top: 80%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes offerContentRippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  30% {
    opacity: 0.3;
  }
  100% {
    transform: scale(6);
    opacity: 0;
  }
}

/* Floating Balls for Offers */
.offer-floating-balls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  pointer-events: none;
}

.offer-floating-ball {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #C5A56F, #C5A56F);
  box-shadow: 
    0 0 20px rgba(197, 165, 111, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: offerBallFloat 4s ease-in-out infinite;
  transition: all 0.8s ease;
}

.offer-floating-ball:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 3s;
}

.offer-floating-ball:nth-child(2) {
  animation-delay: 0.5s;
  animation-duration: 3.5s;
}

.offer-floating-ball:nth-child(3) {
  animation-delay: 1s;
  animation-duration: 4s;
}

.offer-floating-ball:nth-child(4) {
  animation-delay: 1.5s;
  animation-duration: 3.2s;
}

@keyframes offerBallFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

/* Ensure content is above water effects */
.offers-container {
  position: relative;
  z-index: 3;
}

.offers-section .container {
  position: relative;
  z-index: 3;
}

/* Two-Column Glass Container for Offers */
.offers-glass-container {
  width: 90%;
  max-width: 1400px;
  height: 80vh;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
}

/* Glass container glow effect for offers */
.offers-glass-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(197, 165, 111, 0.3), 
    rgba(255, 215, 0, 0.2), 
    rgba(197, 165, 111, 0.3));
  border-radius: 30px;
  z-index: -1;
  animation: offersGlowPulse 4s ease-in-out infinite;
}

@keyframes offersGlowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.offers-slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Left Column - Image Container for Offers */
.offers-image-column {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.offers-image-container {
  position: relative;
  width: 85%;
  height: 85%;
  max-width: 600px;
  max-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.offers-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Water Drops Background Effect for Offers Image */
.offers-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: offersWaterDrops 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes offersWaterDrops {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) translateY(0);
  }
  25% {
    opacity: 0.6;
    transform: scale(1.1) translateY(-5px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(-10px);
  }
  75% {
    opacity: 0.4;
    transform: scale(1.15) translateY(-5px);
  }
}

.offers-slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1) translateX(100px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.offers-slider-image.active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.offers-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
  z-index: 2;
}

/* Decorative Coffee Beans for Offers */
.offers-coffee-beans {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.offers-bean {
  width: 8px;
  height: 12px;
  background: #8B4513;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  animation: offersFloatBean 6s ease-in-out infinite;
}

.offers-bean:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.offers-bean:nth-child(2) {
  top: 15px;
  left: 20px;
  animation-delay: 1s;
}

.offers-bean:nth-child(3) {
  top: 30px;
  left: 10px;
  animation-delay: 2s;
}

@keyframes offersFloatBean {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Water Drops for Offers Image */
.offers-image-water-drops {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.offers-image-water-drop {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: offersImageDropFall 6s ease-in-out infinite;
}

.offers-image-drop-1 {
  width: 8px;
  height: 8px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 4s;
}

.offers-image-drop-2 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 75%;
  animation-delay: 1s;
  animation-duration: 5s;
}

.offers-image-drop-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 25%;
  animation-delay: 2s;
  animation-duration: 3.5s;
}

.offers-image-drop-4 {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 80%;
  animation-delay: 0.5s;
  animation-duration: 4.5s;
}

.offers-image-drop-5 {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 60%;
  animation-delay: 1.5s;
  animation-duration: 3.8s;
}

.offers-image-drop-6 {
  width: 9px;
  height: 9px;
  top: 70%;
  left: 40%;
  animation-delay: 2.5s;
  animation-duration: 4.2s;
}

.offers-image-drop-7 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 3.2s;
}

.offers-image-drop-8 {
  width: 11px;
  height: 11px;
  top: 80%;
  left: 65%;
  animation-delay: 1.8s;
  animation-duration: 4.8s;
}

@keyframes offersImageDropFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
  }
  10% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(calc(100vh - 100px)) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(100vh + 20px)) scale(0.3);
  }
}

/* Water drop trail effect for offers image */
.offers-image-water-drop::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 1px;
  animation: offersImageDropTrail 6s ease-in-out infinite;
}

@keyframes offersImageDropTrail {
  0%, 10% {
    opacity: 0;
    height: 0;
  }
  20% {
    opacity: 0.6;
    height: 15px;
  }
  80% {
    opacity: 0.3;
    height: 8px;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}

/* Ripple Effects for Offers Image Box */
.offers-image-ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.offers-image-ripple {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: offersImageRippleExpand 2s ease-out forwards;
  opacity: 0;
}

.offers-image-ripple-1 {
  width: 20px;
  height: 20px;
  top: 15%;
  left: 15%;
  animation-delay: 0.5s;
}

.offers-image-ripple-2 {
  width: 25px;
  height: 25px;
  top: 20%;
  left: 75%;
  animation-delay: 1.5s;
}

.offers-image-ripple-3 {
  width: 18px;
  height: 18px;
  top: 40%;
  left: 25%;
  animation-delay: 2.5s;
}

.offers-image-ripple-4 {
  width: 22px;
  height: 22px;
  top: 60%;
  left: 80%;
  animation-delay: 3.5s;
}

.offers-image-ripple-5 {
  width: 16px;
  height: 16px;
  top: 30%;
  left: 60%;
  animation-delay: 4.5s;
}

.offers-image-ripple-6 {
  width: 24px;
  height: 24px;
  top: 70%;
  left: 40%;
  animation-delay: 5.5s;
}

@keyframes offersImageRippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}

/* Right Column - Content for Offers */
.offers-content-column {
  flex: 1;
  background: linear-gradient(135deg, 
    rgba(44, 44, 44, 0.8) 0%, 
    rgba(26, 26, 26, 0.9) 50%,
    rgba(44, 44, 44, 0.8) 100%);
  backdrop-filter: blur(15px);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Icons for Offers */
.offers-social-icons {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.offers-social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A56F;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.offers-social-icon:hover {
  background: #C5A56F;
  color: #000;
  transform: translateY(-2px);
}

/* Content Area for Offers */
.offers-content-area {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.offers-slide-content {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  overflow: visible;
}

.offers-slide-content.active {
  opacity: 1;
  transform: translateY(0);
}

.offers-slide-title {
  font-family: "Philosopher", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.8),
    0 0 20px rgba(197, 165, 111, 0.4);
  background: linear-gradient(45deg, #fff, #C5A56F, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: offersTitleShimmer 3s ease-in-out infinite;
  display: block;
  width: 100%;
}

@keyframes offersTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.offers-slide-description {
  font-family: "Philosopher", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 100%;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  font-weight: 300;
  letter-spacing: 0.3px;
  display: block;
  width: 100%;
}

.offers-order-btn {
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
  border: none;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-top: 10px;
  align-self: flex-start;
}

.offers-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.offers-order-btn:hover::before {
  left: 100%;
}

.offers-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 165, 111, 0.5);
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
}

/* Next Item Preview for Offers */
.offers-next-item {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: #666;
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.6;
  z-index: 10;
}

/* Navigation Arrows for Offers */
.offers-nav-arrows {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.offers-nav-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 165, 111, 0.3);
  color: #C5A56F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.offers-nav-arrow:hover {
  background: #C5A56F;
  color: #000;
  transform: scale(1.1);
}

/* Glossy Effects for Offers */
.offers-glossy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 25%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.05) 75%, 
    transparent 100%);
  animation: offersGlossyMove 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes offersGlossyMove {
  0%, 100% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(100%) skewX(-15deg); }
}

/* Ripple Effects for Offers Content Box */
.offers-content-ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.offers-content-ripple {
  position: absolute;
  border: 1px solid rgba(197, 165, 111, 0.4);
  border-radius: 50%;
  animation: offersContentRippleExpand 2.5s ease-out forwards;
  opacity: 0;
}

.offers-content-ripple-1 {
  width: 15px;
  height: 15px;
  top: 20%;
  left: 20%;
  animation-delay: 1s;
}

.offers-content-ripple-2 {
  width: 18px;
  height: 18px;
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.offers-content-ripple-3 {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 30%;
  animation-delay: 3s;
}

.offers-content-ripple-4 {
  width: 20px;
  height: 20px;
  top: 80%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes offersContentRippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  30% {
    opacity: 0.3;
  }
  100% {
    transform: scale(6);
    opacity: 0;
  }
}

/* Floating Balls for Offers */
.offers-floating-balls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  pointer-events: none;
}

.offers-floating-ball {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #C5A56F, #C5A56F);
  box-shadow: 
    0 0 20px rgba(197, 165, 111, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: offersBallFloat 4s ease-in-out infinite;
  transition: all 0.8s ease;
}

.offers-floating-ball:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 3s;
}

.offers-floating-ball:nth-child(2) {
  animation-delay: 0.5s;
  animation-duration: 3.5s;
}

.offers-floating-ball:nth-child(3) {
  animation-delay: 1s;
  animation-duration: 4s;
}

.offers-floating-ball:nth-child(4) {
  animation-delay: 1.5s;
  animation-duration: 3.2s;
}

/* Color variations for different offers slides */
.offers-floating-ball.offers-slide-1 {
  background: radial-gradient(circle, #C5A56F, #C5A56F);
  box-shadow: 0 0 20px rgba(197, 165, 111, 0.6);
}

.offers-floating-ball.offers-slide-2 {
  background: radial-gradient(circle, #8B4513, #CD853F);
  box-shadow: 0 0 20px rgba(139, 69, 19, 0.6);
}

.offers-floating-ball.offers-slide-3 {
  background: radial-gradient(circle, #2E8B57, #90EE90);
  box-shadow: 0 0 20px rgba(46, 139, 87, 0.6);
}

.offers-floating-ball.offers-slide-4 {
  background: radial-gradient(circle, #4169E1, #87CEEB);
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.6);
}

@keyframes offersBallFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

/* Gallery Section Styles - Modern Architecture Design */
.gallery-section {
  position: relative;
  background: var(--deep-black);
  overflow: hidden;
}

/* Gallery Hero Section */
.gallery-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.gallery-hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-hero-title {
  font-family: "Philosopher", serif;
  font-size: 8rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-hero-subtitle {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  margin: 0;
  margin-top: 20px;
  letter-spacing: 0.1em;
}

/* Gallery About Section */
.gallery-about {
  padding: 120px 0;
  background: var(--deep-black);
  position: relative;
  overflow: hidden;
}

/* Gallery Cases Section */
.gallery-cases {
  padding: 120px 0;
  background: var(--deep-black);
  position: relative;
  overflow: hidden;
}

/* Water Wave Animation Background */
.water-wave-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wave-layer {
  position: absolute;
  width: 200%;
  height: 80px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(197, 165, 111, 0.6) 15%, 
    rgba(197, 165, 111, 0.9) 30%, 
    rgba(197, 165, 111, 1) 50%, 
    rgba(197, 165, 111, 0.9) 70%, 
    rgba(197, 165, 111, 0.6) 85%, 
    transparent 100%);
  border-radius: 50px;
  animation: waveFlow 6s linear infinite;
  filter: blur(2px);
  box-shadow: 0 0 20px rgba(197, 165, 111, 0.5);
}

.wave-1 {
  top: 15%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.wave-2 {
  top: 35%;
  animation-delay: 1.5s;
  animation-duration: 7s;
}

.wave-3 {
  top: 55%;
  animation-delay: 3s;
  animation-duration: 8s;
}

.wave-4 {
  top: 75%;
  animation-delay: 4.5s;
  animation-duration: 6.5s;
}

/* Wave Animation Keyframes */
@keyframes waveFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0.7;
  }
  15% {
    opacity: 0.9;
  }
  50% {
    transform: translateX(0%);
    opacity: 1;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(100%);
    opacity: 0.7;
  }
}

/* ========================================
   SPEECH PAGE STYLES
======================================== */

/* Speech Page Hero Section */
.speech-hero {
  height: 70vh;
  background: linear-gradient(135deg, 
    rgba(52, 57, 53, 0.9) 0%, 
    rgba(197, 165, 111, 0.2) 25%,
    rgba(52, 57, 53, 0.8) 50%, 
    rgba(197, 165, 111, 0.3) 75%,
    rgba(52, 57, 53, 0.95) 100%),
    radial-gradient(circle at 20% 80%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="luxury-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.5" fill="%23C5A56F" opacity="0.15"/><circle cx="15" cy="15" r="0.3" fill="%23C5A56F" opacity="0.1"/><circle cx="45" cy="45" r="0.3" fill="%23C5A56F" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23luxury-pattern)"/></svg>');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-attachment: fixed, fixed, fixed, fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.speech-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(197, 165, 111, 0.05) 25%, 
    transparent 50%, 
    rgba(197, 165, 111, 0.05) 75%, 
    transparent 100%);
  animation: luxuryShimmer 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes luxuryShimmer {
  0%, 100% { 
    opacity: 0.3; 
    transform: translateX(-100%);
  }
  50% { 
    opacity: 0.8; 
    transform: translateX(100%);
  }
}

.speech-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(197, 165, 111, 0.1) 0%, 
    transparent 50%, 
    rgba(197, 165, 111, 0.1) 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.speech-hero-content {
  text-align: center;
  color: white;
  z-index: 3;
  position: relative;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.speech-hero-title {
  font-family: "Philosopher", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(197, 165, 111, 0.5), 2px 2px 4px rgba(52, 57, 53, 0.8);
  background: linear-gradient(45deg, #C5A56F, #C5A56F, #C5A56F, #C5A56F);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
  letter-spacing: 0.05em;
}

.speech-hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C5A56F, #C5A56F, #C5A56F, transparent);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.speech-hero-subtitle {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

/* Speech Sections */
.speech-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.speech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23C5A56F" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-dots)"/></svg>');
  z-index: 1;
}

.chairman-speech {
  background: linear-gradient(135deg, 
    #343935 0%, 
    #2a2f2b 50%, 
    #343935 100%),
    radial-gradient(circle at 10% 20%, rgba(197, 165, 111, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 165, 111, 0.03) 0%, transparent 50%);
}

.md-speech {
  background: linear-gradient(135deg, 
    #2a2f2b 0%, 
    #343935 50%, 
    #2a2f2b 100%),
    radial-gradient(circle at 20% 10%, rgba(197, 165, 111, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(197, 165, 111, 0.05) 0%, transparent 50%);
}

.speech-content {
  padding: 40px;
  position: relative;
  z-index: 2;
  background: rgba(52, 57, 53, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 165, 111, 0.1);
  box-shadow: 0 20px 60px rgba(52, 57, 53, 0.3), 
              0 0 0 1px rgba(197, 165, 111, 0.05);
  animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.md-speech .speech-content {
  animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.speech-header {
  margin-bottom: 40px;
}

.speech-title {
  font-family: "Philosopher", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #C5A56F;
  margin-bottom: 20px;
  position: relative;
}

.speech-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C5A56F, #C5A56F, #C5A56F);
  margin-bottom: 30px;
  position: relative;
}

.speech-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(197, 165, 111, 0.3), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.speech-text {
  color: #e0e0e0;
  line-height: 1.8;
}

.speech-quote {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #C5A56F;
  margin-bottom: 30px;
  padding: 30px;
  border-left: 5px solid #C5A56F;
  background: linear-gradient(135deg, 
    rgba(197, 165, 111, 0.08) 0%, 
    rgba(197, 165, 111, 0.03) 50%, 
    rgba(197, 165, 111, 0.08) 100%);
  border-radius: 0 15px 15px 0;
  position: relative;
  box-shadow: inset 0 0 20px rgba(197, 165, 111, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(197, 165, 111, 0.2);
}

.speech-quote::before {
  content: '"';
  font-size: 5rem;
  color: #C5A56F;
  position: absolute;
  top: -15px;
  left: 15px;
  opacity: 0.4;
  font-family: "Philosopher", serif;
  text-shadow: 0 0 20px rgba(197, 165, 111, 0.3);
  animation: quoteGlow 3s ease-in-out infinite;
}

@keyframes quoteGlow {
  0%, 100% { 
    opacity: 0.4; 
    text-shadow: 0 0 20px rgba(197, 165, 111, 0.3);
  }
  50% { 
    opacity: 0.7; 
    text-shadow: 0 0 30px rgba(197, 165, 111, 0.5);
  }
}

.speech-quote::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 165, 111, 0.1));
  border-radius: 0 15px 15px 0;
}

.speech-paragraph {
  font-family: "Philosopher", serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: justify;
}

.speech-signature {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(197, 165, 111, 0.3);
}

.signature-name {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #C5A56F;
  margin-bottom: 5px;
}

.signature-title {
  font-family: "Philosopher", serif;
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Speech Image Container */
.speech-image-container {
  position: relative;
  padding: 40px;
  z-index: 2;
}

.speech-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(52, 57, 53, 0.4), 
              0 0 0 1px rgba(197, 165, 111, 0.2),
              inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  background: linear-gradient(135deg, 
    rgba(197, 165, 111, 0.1) 0%, 
    transparent 50%, 
    rgba(197, 165, 111, 0.05) 100%);
}

.speech-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(197, 165, 111, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(197, 165, 111, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.speech-image-wrapper:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 100px rgba(52, 57, 53, 0.5), 
              0 0 0 2px rgba(197, 165, 111, 0.3),
              inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.speech-image-wrapper:hover::before {
  opacity: 1;
}

.speech-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speech-image-wrapper:hover .speech-image {
  transform: scale(1.05);
}

.speech-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.speech-image-wrapper:hover .speech-image-overlay {
  transform: translateY(0);
}

.overlay-content h3 {
  font-family: "Philosopher", serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #C5A56F;
}

.overlay-content p {
  font-family: "Philosopher", serif;
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.speech-decoration {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  z-index: 3;
}

.decoration-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C5A56F, #C5A56F, transparent);
  margin-bottom: 25px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(197, 165, 111, 0.3);
  animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(197, 165, 111, 0.3);
  }
  50% { 
    box-shadow: 0 0 20px rgba(197, 165, 111, 0.6);
  }
}

.decoration-circle {
  width: 25px;
  height: 25px;
  border: 3px solid #C5A56F;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 111, 0.2) 0%, transparent 70%);
  animation: rotate 12s linear infinite;
  box-shadow: 0 0 15px rgba(197, 165, 111, 0.4);
  position: relative;
}

.decoration-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #C5A56F;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(197, 165, 111, 0.8);
}

/* Floating Elements */
.speech-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(197, 165, 111, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.chairman-speech::after {
  animation-delay: 0s;
}

.md-speech::after {
  top: 20%;
  left: 5%;
  right: auto;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Call to Action Section */
.speech-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, 
    rgba(197, 165, 111, 0.15) 0%, 
    rgba(52, 57, 53, 0.95) 30%,
    rgba(52, 57, 53, 0.9) 70%, 
    rgba(197, 165, 111, 0.15) 100%),
    radial-gradient(circle at 30% 30%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(197, 165, 111, 0.1) 0%, transparent 50%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.speech-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="%23C5A56F" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease-out;
}

.cta-title {
  font-family: "Philosopher", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #C5A56F;
  margin-bottom: 25px;
  text-shadow: 0 0 30px rgba(197, 165, 111, 0.4);
  background: linear-gradient(45deg, #C5A56F, #C5A56F, #C5A56F);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
}

.cta-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C5A56F, #C5A56F, #C5A56F, transparent);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.cta-subtitle {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(52, 57, 53, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 35px;
  font-family: "Philosopher", serif;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #C5A56F, #C5A56F, #C5A56F);
  background-size: 200% 200%;
  border: none;
  color: #000;
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
  animation: gradientShift 3s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #C5A56F, #C5A56F, #C5A56F);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(197, 165, 111, 0.6);
}

.btn-outline-light {
  border: 2px solid #C5A56F;
  color: #C5A56F;
  background: rgba(52, 57, 53, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(52, 57, 53, 0.3);
}

.btn-outline-light:hover {
  background: linear-gradient(45deg, #C5A56F, #C5A56F);
  color: #000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(197, 165, 111, 0.6);
  border-color: transparent;
}

/* Speech Footer */
.speech-footer {
  background: #343935;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(197, 165, 111, 0.2);
}

.footer-content p {
  color: #b0b0b0;
  font-family: "Philosopher", serif;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .speech-hero-title {
    font-size: 3.5rem;
  }
  
  .speech-title {
    font-size: 2.5rem;
  }
  
  .speech-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .speech-hero {
    height: 50vh;
  }
  
  .speech-hero-title {
    font-size: 2.5rem;
  }
  
  .speech-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .speech-section {
    padding: 80px 0;
  }
  
  .speech-title {
    font-size: 2rem;
  }
  
  .speech-content {
    padding: 20px;
  }
  
  .speech-quote {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  .speech-image {
    height: 400px;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

.gallery-about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.gallery-about-text {
  padding-right: 40px;
}

.gallery-about-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
}

.gallery-about-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.gallery-about-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-about-btn:hover {
  background: var(--white);
  color: var(--deep-black);
}

.gallery-about-images {
  position: relative;
  height: 500px;
  width: 100%;
}

.gallery-about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.gallery-about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1) contrast(1) saturate(1);
}

.gallery-about-image-overlay {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

/* Position each overlay image */
.overlay-1 {
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: 78%;
  height: 78%;
}

.overlay-2 {
  top: 20%;
  left: 20%;
  transform: translate(0%, 0%);
  width: 65%;
  height: 65%;
}

.overlay-3 {
  top: 60%;
  left: 60%;
  transform: translate(0%, 0%);
  width: 60%;
  height: 60%;
}

.gallery-about-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1) contrast(1) saturate(1);
}

/* Specific hover layout: main-left, second-right, third-middle */
.gallery-about-images:hover .gallery-about-image-main {
  transform: translateX(-200px);
  z-index: 10;
}

.gallery-about-images:hover .overlay-1 {
  transform: translateX(60px);
  z-index: 10;
  opacity: 1;
}

.gallery-about-images:hover .overlay-2 {
  transform: translateX(0px);
  z-index: 10;
  opacity: 1;
}

/* Ensure all images are fully visible - no scaling, just brightness */
.gallery-about-images:hover .gallery-about-image-main img,
.gallery-about-images:hover .gallery-about-image-overlay img {
  filter: brightness(1) contrast(1) saturate(1);
}

/* Mobile-specific hover animation: main-up, middle-stay, last-down */
@media (max-width: 768px) {
  .gallery-about-images:hover .gallery-about-image-main {
    transform: translateY(-100px);
    z-index: 10;
  }

  .gallery-about-images:hover .overlay-1 {
    transform: translateY(0px);
    z-index: 10;
    opacity: 1;
  }

  .gallery-about-images:hover .overlay-2 {
    transform: translateY(100px) translateX(-50px);
   

    z-index: 10;
    opacity: 1;
  }
}

/* Gallery Cases Section */
.gallery-cases {
  padding: 120px 0;
  background: var(--deep-black);
}

/* Destination Section */
.destination-section {
  padding: 120px 0;
  background: var(--deep-black);
  position: relative;
  overflow: hidden;
}

.destination-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.destination-header {
  text-align: center;
  margin-bottom: 80px;
}

.destination-title {
  font-family: "Philosopher", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--primary-gold), #C5A56F, var(--primary-gold));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

.destination-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent, var(--primary-gold));
  margin: 20px auto;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.destination-subtitle {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(197, 165, 111, 0.2);
}

.destination-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(197, 165, 111, 0.4);
  border-color: var(--primary-gold);
}

.destination-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-info h4 {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.destination-info p {
  font-family: "Philosopher", serif;
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 15px;
  line-height: 1.5;
}

.destination-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold);
  font-family: "Philosopher", serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.destination-distance i {
  font-size: 1rem;
}

.destination-cta {
  text-align: center;
  margin-top: 40px;
}

.destination-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--deep-black);
  padding: 18px 40px;
  font-family: "Philosopher", serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.destination-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.destination-btn:hover::before {
  left: 100%;
}

.destination-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(197, 165, 111, 0.6);
  background: linear-gradient(135deg, #C5A56F, var(--primary-gold));
}

.destination-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.destination-btn:hover i {
  transform: rotate(15deg);
}

/* Floating Elements Animation */
.destination-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.destination-section::before {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 15px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.gallery-cases-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.gallery-cases-title {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}

.gallery-cases-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-cases-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.gallery-cases-scroll-track {
  display: flex;
  gap: 30px;
  animation: scrollRightToLeft 20s linear infinite;
  width: calc(200% + 30px); /* Double width for seamless loop */
}

.gallery-cases-scroll-track:hover {
  animation-play-state: paused;
}

.gallery-case-item {
  position: relative;
  height: 300px;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-case-item:hover {
  transform: translateY(-10px);
}

.gallery-case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-case-item:hover img {
  transform: scale(1.1);
}

.gallery-case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-case-item:hover .gallery-case-overlay {
  opacity: 1;
}

.gallery-case-overlay h4 {
  font-family: "Philosopher", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scrolling Animation */
@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gallery Contact Section */
.gallery-contact {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gallery-contact-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-contact-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.gallery-contact-form {
  width: 100%;
  max-width: 400px;
}

.gallery-contact-title {
  font-family: "Philosopher", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  outline: none;
  box-shadow: 0 0 10px rgba(197, 165, 111, 0.3);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-submit-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
}

.contact-submit-btn:hover {
  background: var(--white);
  color: var(--deep-black);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-hero-content {
    padding: 0 40px;
  }
  
  .gallery-hero-title {
    font-size: 6rem;
  }
  
  .gallery-hero-subtitle {
    font-size: 2rem;
  }
  
  .gallery-about-content {
    padding: 0 40px;
    gap: 60px;
  }
  
  .gallery-cases-content {
    padding: 0 40px;
  }
  
  .gallery-case-item {
    width: 250px;
    height: 250px;
  }
  
  .gallery-cases-scroll-track {
    gap: 20px;
  }
  
  .gallery-contact-overlay {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    height: 80vh;
  }
  
  .gallery-hero-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .gallery-hero-title {
    font-size: 4rem;
  }
  
  .gallery-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .gallery-about {
    padding: 80px 0;
  }
  
  .gallery-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .gallery-about-text {
    padding-right: 0;
    text-align: center;
  }
  
  .gallery-about-title {
    font-size: 2rem;
  }
  
  .gallery-about-images {
    height: 400px;
  }
  
  .gallery-about-image-main {
    width: 80%;
    height: 80%;
  }
  
  .gallery-about-image-overlay {
    /* Base styles for all overlays */
  }
  
  .overlay-1 {
    width: 72%;
    height: 72%;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%);
  }
  
  .overlay-2 {
    width: 60%;
    height: 60%;
    top: 15%;
    left: 15%;
  }
  
  .overlay-3 {
    width: 55%;
    height: 55%;
    top: 55%;
    left: 55%;
  }
  
  .gallery-cases {
    padding: 80px 0;
  }
  
  .gallery-cases-content {
    padding: 0 20px;
  }
  
  .gallery-cases-title {
    font-size: 2rem;
  }
  
  .gallery-case-item {
    width: 200px;
    height: 200px;
  }
  
  .gallery-cases-scroll-track {
    gap: 15px;
  }
  
  .gallery-contact {
    height: 80vh;
  }
  
  .gallery-contact-overlay {
    width: 100%;
    padding: 20px;
  }
  
  .gallery-contact-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero-title {
    font-size: 3rem;
  }
  
  .gallery-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .gallery-about-title {
    font-size: 1.5rem;
  }
  
  .gallery-about-description {
    font-size: 1rem;
  }
  
  .gallery-about-images {
    height: 300px;
  }
  
  .gallery-about-image-main {
    width: 75%;
    height: 75%;
  }
  
  .gallery-about-image-overlay {
    /* Base styles for all overlays */
  }
  
  .overlay-1 {
    width: 67%;
    height: 67%;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
  }
  
  .overlay-2 {
    width: 55%;
    height: 55%;
    top: 10%;
    left: 10%;
  }
  
  .overlay-3 {
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
  }
  
  .gallery-cases-title {
    font-size: 1.5rem;
  }
  
  .gallery-case-item {
    width: 150px;
    height: 150px;
  }
  
  .gallery-cases-scroll-track {
    gap: 10px;
  }
  
  .gallery-case-overlay h4 {
    font-size: 1rem;
  }
  
  .gallery-contact-title {
    font-size: 1.2rem;
  }
  
  .contact-form .form-control {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .contact-submit-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Weather Widget Styles */
.footer-weather {
  margin-top: 1.5rem;
}

.footer-weather h4 {
  color: var(--primary-gold);
  font-family: "Philosopher", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.weather-widget {
  background: linear-gradient(135deg, 
    rgba(42, 42, 42, 0.9), 
    rgba(26, 26, 26, 0.8));
  border: 1px solid rgba(197, 165, 111, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.weather-widget:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(197, 165, 111, 0.2);
  transform: translateY(-2px);
}

.weather-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(197, 165, 111, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(197, 165, 111, 0.3);
}

.weather-info {
  flex: 1;
}

.weather-temp {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: "Philosopher", serif;
}

.weather-desc {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.weather-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--light-gray);
}

.weather-location i {
  color: var(--primary-gold);
  font-size: 0.7rem;
}

/* Weather Icon Animations */
.weather-icon i {
  transition: all 0.3s ease;
}

.weather-widget:hover .weather-icon i {
  transform: scale(1.1);
  color: var(--light-gold);
}

/* Responsive Weather Widget */
@media (max-width: 768px) {
  .footer-weather {
    margin-top: 1.5rem;
  }
  
  .weather-widget {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .weather-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .weather-temp {
    font-size: 1.5rem;
  }
  
  .weather-desc {
    font-size: 0.8rem;
  }
  
  .weather-location {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .weather-widget {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .weather-icon {
    margin-bottom: 0.5rem;
  }
}

/* Destination Section Responsive */
@media (max-width: 1200px) {
  .destination-section {
    padding: 100px 0;
  }
  
  .destination-title {
    font-size: 3.5rem;
  }
  
  .destination-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .destination-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .destination-section {
    padding: 80px 0;
  }
  
  .destination-content {
    padding: 0 15px;
  }
  
  .destination-header {
    margin-bottom: 60px;
  }
  
  .destination-title {
    font-size: 2.8rem;
  }
  
  .destination-subtitle {
    font-size: 1.1rem;
  }
  
  .destination-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .destination-image {
    height: 220px;
  }
  
  .destination-overlay {
    padding: 20px;
  }
  
  .destination-info h4 {
    font-size: 1.3rem;
  }
  
  .destination-info p {
    font-size: 0.9rem;
  }
  
  .destination-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .destination-section {
    padding: 60px 0;
  }
  
  .destination-title {
    font-size: 2.2rem;
  }
  
  .destination-subtitle {
    font-size: 1rem;
  }
  
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .destination-image {
    height: 200px;
  }
  
  .destination-overlay {
    padding: 15px;
  }
  
  .destination-info h4 {
    font-size: 1.2rem;
  }
  
  .destination-info p {
    font-size: 0.85rem;
  }
  
  .destination-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Enhanced Offers Section V2 Styles */
.offer-section-v2 {
  width: 100%;
  max-width: 1280px;
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  background: #121212;
  font-family: "Philosopher", serif;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #C5A56F;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInTop 0.8s ease-out forwards;
  animation-delay: 0.2s;
  font-family: "Philosopher", serif;
}

.section-title {
  font-family: "Philosopher", serif;
  font-size: 3.2rem;
  color: #f4f4f4;
  margin-top: 0;
  margin-bottom: 60px;
  letter-spacing: 1.5px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInTop 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #C5A56F;
  margin: 15px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  animation: scaleInX 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.offers-container-v2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offer-card-v2 {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  color: #f4f4f4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.offer-card-v2:nth-child(1) { animation-delay: 0.8s; }
.offer-card-v2:nth-child(2) { animation-delay: 1.0s; }
.offer-card-v2:nth-child(3) { animation-delay: 1.2s; }

.offer-card-v2:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.offer-card-v2 h3 {
  font-family: "Philosopher", serif;
  font-size: 2.3rem;
  color: #C5A56F;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.offer-card-v2 p {
  font-family: "Philosopher", serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.offer-card-v2 .validity {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Philosopher", serif;
}

.discover-more {
  color: #C5A56F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  font-size: 1rem;
  font-family: "Philosopher", serif;
}

.discover-more:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.card-content-left,
.card-content-right {
  flex: 1;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.card-image-left,
.card-image-right {
  flex: 1;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  background-color: rgba(197, 165, 111, 0.05);
}

.card-image-left img,
.card-image-right img.main-offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Card 1 styling */
.offer-card-v2:nth-child(1) .card-image-right {
  padding: 50px;
  background: linear-gradient(135deg, rgba(197,165,111,0.1), rgba(0,0,0,0.8));
}

.offer-card-v2:nth-child(1) .card-image-right .main-offer-img {
  max-width: 85%;
  margin-bottom: 20px;
  height: auto;
}

.offer-card-v2:nth-child(1) .discount-badge {
  position: absolute;
  top: 0px;
  right: 50px;
  background-color: #C5A56F;
  color: #000000;
  padding: 12px 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  font-family: "Philosopher", serif;
  letter-spacing: 0.8px;
  animation: bounceIn 0.6s ease-out forwards;
  animation-delay: 1.4s;
}

.offer-card-v2:nth-child(1) .discount-badge span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.offer-card-v2:nth-child(1) .discount-badge strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
}

.offer-card-v2:nth-child(1) .discount-badge small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 5px;
}

.offer-card-v2:nth-child(1) .additional-images {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.offer-card-v2:nth-child(1) .additional-images img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #C5A56F;
  transition: transform 0.3s ease-in-out;
}

.offer-card-v2:nth-child(1) .additional-images img:hover {
  transform: translateY(-5px);
}

.offer-card-v2:nth-child(1) .inclusive-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #C5A56F;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  text-shadow: 0 0 5px rgba(197,165,111,0.5);
  font-family: "Philosopher", serif;
}

/* Card 2 styling */
.offer-card-v2:nth-child(2) .card-image-left {
  padding: 0;
  position: relative;
  background-color: #000000;
}

.offer-card-v2:nth-child(2) .card-image-left .main-offer-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  min-height: 300px;
  filter: brightness(0.7) contrast(1.1);
}

.offer-card-v2:nth-child(2) .price-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(197, 165, 111, 0.9);
  color: #000000;
  padding: 20px 25px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 10;
  font-family: "Philosopher", serif;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeInScale 0.6s ease-out forwards;
  animation-delay: 1.6s;
}

.offer-card-v2:nth-child(2) .price-info .price-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.offer-card-v2:nth-child(2) .price-info strong {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.offer-card-v2:nth-child(2) .price-info strong .net {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  margin-left: 3px;
}

.offer-card-v2:nth-child(2) .price-info small {
  display: block;
  font-size: 0.85rem;
  color: #000000;
  margin-top: 8px;
  font-weight: 400;
}

.offer-card-v2:nth-child(2) .price-info .includes-text {
  font-size: 0.8rem;
  color: #000000;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.offer-card-v2 ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.offer-card-v2 ul li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  line-height: 1.4;
  font-family: "Philosopher", serif;
}

.offer-card-v2 ul li .bullet-icon {
  margin-right: 12px;
  font-size: 1.3rem;
  color: #C5A56F;
  min-width: 25px;
  text-align: center;
  text-shadow: 0 0 5px rgba(197,165,111,0.5);
}

/* Card 3 styling */
.offer-card-v2:nth-child(3) .card-image-right {
  padding: 50px;
  background: linear-gradient(-135deg, rgba(197,165,111,0.1), rgba(0,0,0,0.8));
}

.offer-card-v2:nth-child(3) .card-image-right .main-offer-img {
  max-width: 100%;
  height: 200px;
  margin-bottom: 25px;
}

.offer-card-v2:nth-child(3) .package-price-badge {
  position: absolute;
  top: 0px;
  right: 50px;
  background-color: #C5A56F;
  color: #000000;
  padding: 12px 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  font-family: "Philosopher", serif;
  letter-spacing: 0.8px;
  animation: bounceIn 0.6s ease-out forwards;
  animation-delay: 1.8s;
}

.offer-card-v2:nth-child(3) .package-price-badge span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.offer-card-v2:nth-child(3) .package-price-badge strong {
  display: block;
  font-size: 2.0rem;
  line-height: 1;
  margin-bottom: 5px;
}

.offer-card-v2:nth-child(3) .package-price-badge p {
  margin: 0;
  font-size: 1.2rem;
  color: #000000;
}

.offer-card-v2:nth-child(3) .package-price-badge p strong {
  font-size: 2.0rem;
  display: inline;
  letter-spacing: -1px;
}

.offer-card-v2:nth-child(3) .package-price-badge p span {
  font-size: 0.9rem;
  display: inline;
  vertical-align: super;
  margin-left: 3px;
}

.offer-card-v2:nth-child(3) .package-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  margin-top: 25px;
}

.offer-card-v2:nth-child(3) .package-details-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #C5A56F;
  transition: transform 0.3s ease-in-out;
}

.offer-card-v2:nth-child(3) .package-details-grid img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInTop {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleInX {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes fadeInScale {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .offer-card-v2 {
    flex-direction: row;
  }

  .card-content-left,
  .card-content-right {
    padding: 50px;
  }
  
  .card-image-left,
  .card-image-right {
    min-height: 450px;
    padding: 50px;
  }
  
  .offer-card-v2:nth-child(1) .card-image-right {
    padding: 70px 50px;
  }
  
  .offer-card-v2:nth-child(3) .card-image-right {
    padding: 70px 50px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.8rem;
  }
  
  .offer-card-v2 h3 {
    font-size: 2.8rem;
  }
  
  .card-content-left,
  .card-content-right {
    padding: 60px;
  }
  
  .card-image-left,
  .card-image-right {
    min-height: 500px;
  }
}

@media (min-width: 1440px) {
  .offer-section-v2 {
    max-width: 1400px;
  }
}

@media (max-width: 768px) {
  .offer-section-v2 {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .offer-card-v2 h3 {
    font-size: 1.5rem;
  }
  
  .card-content-left,
  .card-content-right {
    padding: 20px;
  }
  
  .card-image-left,
  .card-image-right {
    min-height: 200px;
    padding: 20px;
  }
  
  .offer-card-v2:nth-child(1) .discount-badge strong {
    font-size: 2rem;
  }
  
  .offer-card-v2:nth-child(2) .price-info strong {
    font-size: 1.8rem;
  }
  
  .offer-card-v2:nth-child(3) .package-price-badge strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .offer-section-v2 {
    padding: 30px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .offer-card-v2 h3 {
    font-size: 1.3rem;
  }
  
  .card-content-left,
  .card-content-right {
    padding: 15px;
  }
  
  .card-image-left,
  .card-image-right {
    min-height: 150px;
    padding: 15px;
  }
  
  .offer-card-v2:nth-child(1) .discount-badge {
    right: 15px;
    padding: 8px 15px;
  }
  
  .offer-card-v2:nth-child(1) .discount-badge strong {
    font-size: 1.8rem;
  }
  
  .offer-card-v2:nth-child(2) .price-info {
    bottom: 15px;
    left: 15px;
    padding: 10px 15px;
  }
  
  .offer-card-v2:nth-child(2) .price-info strong {
    font-size: 1.5rem;
  }
  
  .offer-card-v2:nth-child(3) .package-price-badge {
    right: 15px;
    padding: 8px 15px;
  }
  
  .offer-card-v2:nth-child(3) .package-price-badge strong {
    font-size: 1.3rem;
  }
}

/* Royal Dine Section Styles */
.royal-dine-section {
  position: relative;
  padding: 100px 0;
  background: var(--deep-black);
  overflow: hidden;
}

.royal-dine-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.royal-dine-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(197, 165, 111, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(197, 165, 111, 0.05) 0%, transparent 50%);
  animation: royalDineParticles 20s ease-in-out infinite;
}

.royal-dine-golden-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(197, 165, 111, 0.1) 100%);
  animation: royalDineWaves 15s ease-in-out infinite;
}

@keyframes royalDineParticles {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes royalDineWaves {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-20px) scaleX(1.1); }
}

.royal-dine-content {
  padding-right: 2rem;
}

.royal-dine-header {
  margin-bottom: 2rem;
}

.royal-dine-tagline {
  font-family: "Philosopher", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-gold);
  margin-top: 1rem;
  font-style: italic;
}

.royal-dine-description {
  margin-bottom: 3rem;
}

.royal-dine-description p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.royal-dine-features {
  margin-bottom: 3rem;
}

.royal-dine-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(197, 165, 111, 0.1);
  transition: all 0.3s ease;
}

.royal-dine-features .feature-item:hover {
  background: rgba(197, 165, 111, 0.05);
  border-color: rgba(197, 165, 111, 0.3);
  transform: translateY(-5px);
}

.royal-dine-features .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.royal-dine-features .feature-icon i {
  font-size: 1.5rem;
  color: var(--deep-black);
}

.royal-dine-features .feature-content h4 {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.royal-dine-features .feature-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.royal-dine-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Enhanced Royal Menu Button */
.royal-menu-btn {
  position: relative;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border: 2px solid var(--primary-gold);
  color: var(--deep-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.royal-menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.royal-menu-btn:hover::before {
  left: 100%;
}

.royal-menu-btn:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
  border-color: var(--light-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 165, 111, 0.5);
  color: var(--deep-black);
  text-decoration: none;
}

.royal-menu-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(197, 165, 111, 0.4);
}

.royal-menu-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.royal-menu-btn:hover i {
  transform: scale(1.1);
}

/* Pulse animation for extra visibility */
.royal-menu-btn {
  animation: royalMenuPulse 3s ease-in-out infinite;
}

@keyframes royalMenuPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(197, 165, 111, 0.6), 0 0 20px rgba(197, 165, 111, 0.3);
  }
}

.royal-dine-media {
  position: relative;
}

.royal-dine-video {
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.restaurant-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(197, 165, 111, 0.4);
}

.play-button i {
  font-size: 2rem;
  color: var(--deep-black);
  margin-left: 5px;
}

.royal-dine-gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item.main-image {
  grid-row: 1 / 3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.overlay-content h4 {
  font-family: "Philosopher", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design for Royal Dine Section */
@media (max-width: 992px) {
  .royal-dine-section {
    padding: 80px 0;
  }
  
  .royal-dine-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .royal-dine-tagline {
    font-size: 1.3rem;
  }
  
  .royal-dine-features .feature-item {
    padding: 1rem;
  }
  
  .royal-dine-features .feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  
  .royal-dine-features .feature-icon i {
    font-size: 1.2rem;
  }
  
  .royal-dine-features .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .royal-dine-section {
    padding: 60px 0;
  }
  
  .royal-dine-tagline {
    font-size: 1.2rem;
  }
  
  .royal-dine-description p {
    font-size: 1rem;
  }
  
  .royal-dine-features .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .royal-dine-features .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .royal-dine-actions {
    justify-content: center;
  }
  
  .video-container {
    height: 250px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
  }
  
  .gallery-item.main-image {
    grid-row: auto;
  }
  
  .gallery-item {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .royal-dine-section {
    padding: 40px 0;
  }
  
  .royal-dine-tagline {
    font-size: 1.1rem;
  }
  
  .royal-dine-features .feature-item {
    padding: 1rem;
  }
  
  .royal-dine-features .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .royal-dine-features .feature-icon i {
    font-size: 1rem;
  }
  
  .royal-dine-features .feature-content h4 {
    font-size: 1rem;
  }
  
  .royal-dine-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .royal-dine-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .video-container {
    height: 200px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .overlay-content {
    padding: 1rem;
  }
  
  .overlay-content h4 {
    font-size: 1rem;
  }
  
  .overlay-content p {
    font-size: 0.8rem;
  }
}
