:root {
  /* Enhanced Color Palette */
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-color: #0f3460;
  --highlight-color: #e94560;
  --light-color: #f5f5f5;
  
  /* Sophisticated Neutrals */
  --ivory: #fefefe;
  --pearl: #f8f9fa;
  --silver: #e9ecef;
  --slate: #6c757d;
  --charcoal: #2d3748;
  
  /* Elegant Accents */
  --soft-coral: #ff7b89;
  --gold: #d4af37;
  --soft-lavender: #e2d9f3;
  --mint: #c8f4de;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --accent-gradient: linear-gradient(135deg, var(--highlight-color) 0%, var(--soft-coral) 100%);
  --card-gradient: linear-gradient(145deg, #ffffff 0%, var(--pearl) 100%);
}

/* Base Typography & Layout */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

/* Elegant Navigation */
.navbar {
  background: var(--hero-gradient);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 30px rgba(26, 26, 46, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.75rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--ivory) !important;
  background: rgba(233, 69, 96, 0.15);
  transform: translateY(-1px);
}

/* Hero Section */
/* .hero-section {
  background: 
    radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%),
    url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover, cover, cover;
  background-position: center;
  color: var(--ivory);
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
} */

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(26, 26, 46, 0.85); */
}

.hero-section h1 {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  color: var(--ivory);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Refined Buttons */
.btn-primary {
  background: var(--accent-gradient);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
}

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

.btn-primary:hover::before {
  left: 100%;
}

/* Section Styling */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.about-section,
.facilities-section,
.gallery-section,
.events-section,
.contact-section {
  padding: 100px 0;
}

.about-section,
.gallery-section,
.contact-section {
  background: var(--pearl);
}

/* Elegant Cards */
.facility-card,
.event-card {
  background: var(--card-gradient);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.facility-card::before,
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.facility-card:hover::before,
.event-card:hover::before {
  transform: scaleX(1);
}

.facility-card:hover,
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.facility-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gallery Enhancement */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(26, 26, 46, 0.8), rgba(233, 69, 96, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.gallery-overlay i {
  color: var(--ivory);
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

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

/* Calendar & Date Styling */
.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

.month-block {
  background: var(--ivory);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.month-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.date-tile {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.date-tile.available {
  background: linear-gradient(135deg, #e8f5e8, #c8f4de);
  color: #0a6e0a;
  border-color: #a8e6cf;
}

.date-tile.booked {
  background: linear-gradient(135deg, #ffeaea, #ffd6d6);
  color: #b80000;
  border-color: #ffafbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.date-tile.available:hover {
  background: linear-gradient(135deg, #d4f5d4, #b4f2b4);
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Sophisticated Modal */
.enquiry-modal {
  background: var(--card-gradient);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.enquiry-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 0 0;
  padding: 1.5rem 2rem;
}

.enquiry-modal .modal-title {
  font-weight: 600;
  color: var(--ivory);
  font-size: 1.4rem;
}

.form-floating > .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--silver);
  border-radius: 12px;
  color: var(--charcoal);
  transition: all 0.3s ease;
  padding: 1rem 1.25rem;
}

.form-floating > .form-control:focus {
  background: var(--ivory);
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

/* Footer Elegance */
footer {
  background: linear-gradient(135deg, var(--primary-color), var(--charcoal));
  color: var(--ivory);
  padding: 5rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
}

.footer-links h5 {
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--highlight-color);
  transform: translateX(5px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--ivory);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: var(--highlight-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .facility-card,
  .event-card {
    padding: 2rem 1.5rem;
  }
  
  .calendar {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .btn-primary {
    padding: 0.875rem 2rem;
  }
  
  .month-block {
    padding: 1.5rem;
  }
}
/* contact form */
.contact-section {
    background: linear-gradient(135deg, var(--pearl) 0%, #ffffff 50%, var(--pearl) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(22, 33, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--ivory);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.contact-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--slate);
    margin: 0;
}

/* Contact Items */
.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.contact-item:hover {
    background: rgba(233, 69, 96, 0.05);
    transform: translateX(8px);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

/* Social Section */
.social-section {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-section h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--pearl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--ivory);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    height: 100%;
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--slate);
    margin: 0;
}

/* Elegant Form Styling */
.elegant-form .form-group {
    margin-bottom: 1.5rem;
}

.floating-label {
    position: relative;
}

.floating-label .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--silver);
    border-radius: 12px;
    padding: 1.25rem 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.floating-label .form-control:focus {
    background: white;
    border-color: var(--highlight-color);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
    transform: translateY(-2px);
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--slate);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
}

.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
    top: 0.75rem;
    transform: translateY(0);
    font-size: 0.8rem;
    color: var(--highlight-color);
    font-weight: 500;
}

.floating-label textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.floating-label textarea.form-control + label {
    top: 1.25rem;
    transform: none;
}

.floating-label textarea.form-control:focus + label,
.floating-label textarea.form-control:not(:placeholder-shown) + label {
    top: 0.75rem;
    transform: none;
}

.focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.floating-label .form-control:focus ~ .focus-line {
    width: 100%;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-shine {
    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.5s;
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-wrapper {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}

/* gallery style */
.gallery-section {
    background: linear-gradient(135deg, var(--pearl) 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(22, 33, 62, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Gallery Filter */
.gallery-filter {
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--slate);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-card {
    background: var(--ivory);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(233, 69, 96, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.action-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Load More Button */
.btn-load-more {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-load-more:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.btn-load-more:hover::before {
    left: 0;
}

.btn-load-more:hover .btn-icon {
    transform: translateY(2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

/* Enhanced Modal */
.gallery-modal .modal-content {
    background: var(--ivory);
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px 20px 0 0;
    color: white;
    padding: 1.5rem 2rem;
}

.gallery-modal .modal-title {
    font-weight: 600;
    color: white;
}

.gallery-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.modal-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.modal-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.modal-caption {
    text-align: center;
    padding: 1rem;
}

.modal-caption h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .gallery-desc {
        font-size: 0.8rem;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
    }
}

/* gallery modal */

/* Gallery Modal Styles */
.gallery-modal {
    backdrop-filter: blur(10px);
}

.gallery-modal .modal-dialog {
    max-width: 95vw;
    margin: 1rem auto;
}

.gallery-modal .modal-content {
    background: linear-gradient(135deg, var(--ivory) 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Modal Header */
.gallery-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.modal-title-content .modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-action-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-action-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
}

.btn-close-custom {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    margin-left: 0.5rem;
}

.btn-close-custom:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/* Modal Body */
.gallery-modal .modal-body {
    padding: 0;
    position: relative;
}

.modal-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: 
        radial-gradient(circle at 30% 70%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(22, 33, 62, 0.05) 0%, transparent 50%);
}

.image-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: imageFadeIn 0.5s ease;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-img.zoomed {
    cursor: grab;
    transform: scale(1.5);
}

.modal-img.zoomed:active {
    cursor: grabbing;
}

/* Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
}

.modal-nav-btn:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(233, 69, 96, 0.3);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Image Loader */
.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--slate);
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--silver);
    border-top: 3px solid var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Footer Content */
.modal-footer-content {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid var(--silver);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.image-meta {
    flex: 1;
}

.image-counter {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.image-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.image-description {
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

.image-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--silver);
    border-radius: 12px;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.2);
}

/* Thumbnails */
.modal-thumbnails {
    padding: 1rem 2rem;
    background: var(--pearl);
    border-top: 1px solid var(--silver);
}

.thumbnails-container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--highlight-color);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-modal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .gallery-modal .modal-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-actions {
        order: -1;
        width: 100%;
        justify-content: center;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .modal-footer-content {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-thumbnails {
        padding: 1rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .modal-title-content .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-action-btn,
    .btn-close-custom {
        width: 40px;
        height: 40px;
    }
    
    .modal-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

/* facilities */


.facilities-section {
    background: linear-gradient(135deg, var(--pearl) 0%, #ffffff 50%, var(--pearl) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.facilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(22, 33, 62, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.facility-card {
    perspective: 1000px;
    height: 320px;
}

.facility-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.facility-card:hover .facility-card-inner {
    transform: rotateY(180deg);
}

.facility-front,
.facility-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.facility-front {
    background: var(--ivory);
    color: var(--charcoal);
}

.facility-back {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

/* Facility Icon */
.facility-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.facility-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

/* Facility Content */
.facility-front h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.facility-front p {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facility-hover {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--highlight-color);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.facility-card:hover .facility-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Back Side Styling */
.facility-back h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.facility-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    width: 100%;
}

.facility-back li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.facility-back li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.facility-back li:last-child {
    border-bottom: none;
}

.facility-detail-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    width: 100%;
}

.facility-detail-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* CTA Section */
.facilities-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.facilities-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: whitesmoke;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facilities-section {
        padding: 60px 0;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facility-card {
        height: 280px;
    }
    
    .facility-front,
    .facility-back {
        padding: 2rem 1.5rem;
    }
    
    .facilities-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .facility-front h4,
    .facility-back h4 {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 0.875rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

/* No hover support for touch devices */
@media (hover: none) {
    .facility-card-inner {
        transform: none !important;
    }
    
    .facility-back {
        display: none;
    }
    
    .facility-hover {
        opacity: 1;
        transform: none;
    }
}

/* hero section */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Background Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.background-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    animation: zoomOut 20s linear infinite;
}

.background-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(22, 33, 62, 0.75) 50%,
        rgba(233, 69, 96, 0.3) 100%
    );
    backdrop-filter: blur(2px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

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

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(233, 69, 96, 0.3),
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: rotate 4s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleLineIn 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }

@keyframes titleLineIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-text {
    background: linear-gradient(135deg, #e94560, #ff7b89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #e94560, #ff7b89);
    border-radius: 2px;
    transform: scaleX(0);
    animation: highlightExpand 1s ease 1.5s forwards;
}

@keyframes highlightExpand {
    to {
        transform: scaleX(1);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e94560, #ff7b89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #e94560, #ff7b89);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-shine {
    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.5s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Music Toggle */
.music-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.music-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.music-btn:hover {
    background: rgba(233, 69, 96, 0.3);
    transform: scale(1.1);
}

.music-wave {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-btn.active .music-wave {
    opacity: 1;
    animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { height: 2px; }
    50% { height: 8px; }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (Desktops, 992px to 1199px) */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    /* Navbar */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    /* Facilities */
    .facility-card {
        margin-bottom: 25px;
    }
    
    /* Gallery */
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    /* Carousel */
    .carousel-item {
        height: 450px;
    }
}

/* Small Devices (Landscape Phones, 576px to 767px) */
@media (max-width: 767px) {
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 600px;
        padding: 120px 0 60px;
    }
    
    .hero-section h1,
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .title-line {
        display: block;
        margin: 0.3rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .music-toggle {
        bottom: 1rem;
        right: 1rem;
    }
    
    .music-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Sections */
    .about-section,
    .facilities-section,
    .gallery-section,
    .events-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 35px;
    }
    
    /* About Section */
    .about-section .row {
        flex-direction: column-reverse;
    }
    
    .about-section .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    /* Facilities */
    .facility-icon {
        font-size: 2.5rem;
    }
    
    .facility-card h4 {
        font-size: 1.1rem;
    }
    
    .facility-card p {
        font-size: 0.9rem;
    }
    
    /* Gallery */
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    /* Calendar */
    .month-block {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .month-block h4 {
        font-size: 1.3rem;
    }
    
    .date-tile {
        padding: 8px 5px;
        font-size: 0.8rem;
        margin: 3px;
    }
    
    /* Contact */
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    /* Footer */
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .footer-links h5 {
        font-size: 1.1rem;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 15px;
        bottom: 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
    /* Hero Section */
    .hero-section {
        min-height: 550px;
        padding: 100px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title:after {
        width: 60px;
        height: 3px;
    }
    
    /* Facilities */
    .facility-card {
        padding: 20px 15px;
    }
    
    .facility-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .facility-card h4 {
        font-size: 1rem;
    }
    
    .facility-card p {
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    /* Calendar */
    .month-block {
        padding: 15px 10px;
    }
    
    .month-block h4 {
        font-size: 1.1rem;
    }
    
    .date-tile {
        padding: 6px 3px;
        font-size: 0.75rem;
        margin: 2px;
    }
    
    .legend span {
        margin: 0 8px;
        font-size: 0.85rem;
    }
    
    .legend .available-box,
    .legend .booked-box {
        width: 15px;
        height: 15px;
    }
    
    /* Contact */
    .contact-section .container {
        padding: 0 15px;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer {
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
    
    /* Modal */
    .modal-title {
        font-size: 1.1rem;
    }
    
    .form-floating > label {
        font-size: 0.9rem;
    }
    
    .carousel-item {
        height: 280px;
    }
}

/* Very Small Devices (320px and below) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn-hero {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .date-tile {
        font-size: 0.7rem;
        padding: 5px 2px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .carousel-item {
        height: 250px;
    }
}

/* Landscape Mode for Small Devices */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 500px;
        padding: 100px 0 50px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-hero {
        width: auto;
        min-width: 180px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-hero,
    .facility-card,
    .gallery-item,
    .date-tile.available {
        transition: transform 0.2s ease;
    }
    
    .nav-link {
        padding: 1rem !important;
        margin: 0.3rem 0;
    }
    
    .gallery-overlay {
        opacity: 0.3;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .music-toggle,
    .hero-actions,
    footer,
    .modal {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
/* about style */


/* ============================================
   PROFESSIONAL CALENDAR STYLES
   ============================================ */

.calendar-section {
    background: linear-gradient(135deg, var(--pearl) 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(22, 33, 62, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.calendar-wrapper {
    background: var(--ivory);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.calendar-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

/* FullCalendar Professional Overrides */
.fc {
    --fc-border-color: rgba(0, 0, 0, 0.08);
    --fc-today-bg-color: rgba(233, 69, 96, 0.05);
    --fc-neutral-bg-color: rgba(108, 117, 125, 0.05);
    --fc-page-bg-color: transparent;
    --fc-list-event-hover-bg-color: rgba(233, 69, 96, 0.05);
    font-family: 'Inter', 'Montserrat', sans-serif;
}

/* Header Toolbar - Professional Style */
.fc .fc-toolbar {
    padding: 1.5rem 0;
    margin-bottom: 1rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fc .fc-toolbar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem !important;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin: 0;
}

/* Navigation Buttons - Premium Style */
.fc .fc-button {
    background: transparent !important;
    border: 2px solid var(--silver) !important;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
}

.fc .fc-button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.15);
}

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

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.2);
}

.fc .fc-button:focus {
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1) !important;
}

/* View Buttons Group */
.fc .fc-button-group {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--silver);
}

.fc .fc-button-group .fc-button {
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.fc .fc-button-group .fc-button:first-child {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.fc .fc-button-group .fc-button:last-child {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

/* Calendar Header - Professional */
.fc .fc-col-header {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.fc .fc-col-header-cell {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 0.5rem;
}

.fc .fc-col-header-cell-cushion {
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Day Grid - Modern Styling */
.fc .fc-daygrid-body {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.fc .fc-scrollgrid {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fc .fc-daygrid-day-frame {
    padding: 0.75rem 0.5rem;
    min-height: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.fc .fc-daygrid-day:hover .fc-daygrid-day-frame {
    background: rgba(233, 69, 96, 0.02);
    transform: translateY(-1px);
}

/* Date Numbers - Elegant Styling */
.fc .fc-daygrid-day-number {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.fc .fc-daygrid-day:hover .fc-daygrid-day-number {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.1);
}

.fc .fc-day-today .fc-daygrid-day-number {
    background: var(--accent-gradient) !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* Other Month Dates */
.fc .fc-day-other .fc-daygrid-day-number {
    color: rgba(108, 117, 125, 0.4) !important;
    font-weight: 400;
}

/* Event Styling - Premium */
.fc-event {
    border: none !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    margin: 0.1rem 0.2rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
    border-left: 4px solid transparent !important;
}

.fc-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.fc-event-available {
    background: linear-gradient(135deg, #e8f5e8, #c8f4de) !important;
    color: #0a6e0a !important;
    border-left-color: #51cf66 !important;
}

.fc-event-booked {
    background: linear-gradient(135deg, #ffeaea, #ffd6d6) !important;
    color: #b80000 !important;
    border-left-color: #ff6b6b !important;
    cursor: not-allowed !important;
    opacity: 0.8;
}

.fc-event-booked:hover {
    transform: none !important;
}

.fc-event-tentative {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7) !important;
    color: #856404 !important;
    border-left-color: #ffd43b !important;
}

.fc-event-content {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

/* Today Highlight */
.fc .fc-day-today {
    background: rgba(233, 69, 96, 0.05) !important;
    position: relative;
}

.fc .fc-day-today::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

/* Calendar Legend - Professional */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-color.available {
    background: linear-gradient(135deg, #51cf66, #40c057);
}

.legend-color.booked {
    background: linear-gradient(135deg, #ff6b6b, #fa5252);
}

.legend-color.today {
    background: var(--accent-gradient);
}

.legend-color.tentative {
    background: linear-gradient(135deg, #ffd43b, #fcc419);
}

.legend-text {
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
    white-space: nowrap;
}

/* Calendar Navigation - Modern */
.calendar-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.calendar-navigation .btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.calendar-navigation .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.calendar-navigation .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.15);
}

.calendar-navigation .btn-outline-secondary {
    border: 2px solid var(--slate);
    color: var(--slate);
    background: transparent;
}

.calendar-navigation .btn-outline-secondary:hover {
    background: var(--slate);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.15);
}

/* Week View Styling */
.fc .fc-timegrid-slots {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.fc .fc-timegrid-slot {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    height: 2.5em;
}

.fc .fc-timegrid-axis {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
}

/* List View Styling */
.fc .fc-list {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fc .fc-list-day-cushion {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.fc .fc-list-event:hover td {
    background: rgba(233, 69, 96, 0.05) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .fc .fc-toolbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .fc .fc-toolbar-title {
        font-size: 1.5rem !important;
    }
    
    .fc .fc-daygrid-day-frame {
        min-height: 80px;
        padding: 0.5rem 0.25rem;
    }
    
    .fc .fc-daygrid-day-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .legend-item {
        padding: 0.5rem 0.75rem;
    }
    
    .calendar-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .calendar-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .calendar-section {
        padding: 60px 0;
    }
    
    .calendar-wrapper {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .fc .fc-daygrid-day-frame {
        min-height: 60px;
        padding: 0.25rem;
    }
    
    .fc .fc-daygrid-day-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .fc-event {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
    
    .legend-text {
        font-size: 0.75rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading State */
.calendar-loading {
    position: relative;
}

.calendar-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--silver);
    border-top: 3px solid var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Print Styles */
@media print {
    .calendar-navigation,
    .calendar-legend {
        display: none;
    }
    
    .calendar-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .fc-event {
        background: #f8f9fa !important;
        color: #000 !important;
        border-left: 4px solid #ddd !important;
    }
}
