/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 6s ease-in-out infinite;
}

.about-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Quick Actions Bar */
.quick-actions {
  background: #fff;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.actions-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  background: white;
}

.action-btn.primary {
  background: var(--primary-color);
  color: white;
}

.action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 110, 165, 0.3);
}

.action-btn.primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* About Title */
.about-title {
  padding-left: 30px;
  color: white;
  border: 1px solid orange;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: fit-content;
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #5ea2eb;
  margin-left: 100px !important;
  font-size: large !important;
}

/* Enhanced Navigation */
.about-nav {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  position: sticky;
  top: 140px;
}

.nav-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 1rem;
  text-align: center;
}

.nav-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  background: var(--secondary-color);
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.about-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-nav li {
  display: flex;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.about-nav li:last-child {
  border-bottom: none;
}

.about-nav li:hover {
  background: var(--light-color);
  padding-left: 1.5rem;
}

.about-nav li.active {
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.1), rgba(98, 182, 203, 0.1));
  border-left: 4px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.about-nav li i {
  width: 20px;
  margin-right: 0.75rem;
  color: var(--secondary-color);
}

.about-nav li span:first-of-type {
  flex: 1;
}

.nav-arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--accent-color);
}

.about-nav li:hover .nav-arrow,
.about-nav li.active .nav-arrow {
  opacity: 1;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(58, 110, 165, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-toggle::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;
}

.mobile-nav-toggle:hover::before {
  left: 100%;
}

.mobile-nav-toggle:hover {
  background: linear-gradient(135deg, var(--secondary-color), #ff7a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 150, 66, 0.3);
}

.mobile-nav-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(58, 110, 165, 0.2);
}

.mobile-nav-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sidebar Contact */
.sidebar-contact {
  background: linear-gradient(135deg, var(--light-color), #f8f9fa);
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.sidebar-contact h4 {
  margin: 0 0 1rem 0;
  color: var(--dark-color);
  font-size: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  padding-left: 0.5rem;
}

/* About Section Grid */
.about-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-section .about-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-section h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

/* About Cards */
.about-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  overflow: hidden;
}

.about-card h2 {
  background: var(--primary-color);
  color: #fff;
  padding: 1rem;
  margin: 0;
  border-bottom: none;
}

.about-content {
  padding: 1.5rem;
}

.about-text p {
  margin-bottom: 0.75rem;
}

/* Opening Hours Table */
.opening-hours {
  width: 100%;
  border-collapse: collapse;
}

.opening-hours tr {
  border-bottom: 1px solid #eee;
}

.opening-hours tr:last-child {
  border-bottom: none;
}

.opening-hours td {
  padding: 0.75rem 0;
}

.opening-hours td:first-child {
  font-weight: bold;
  width: 30%;
}

/* Lists */
.event-list li, .food-service-hours li, .facilities-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

/* Note Styling */
.note {
  background: #fef9e7;
  padding: 0.75rem;
  border-left: 3px solid var(--warning-color);
  margin-top: 1rem;
}

/* Facility Gallery */
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.facility-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

/* About Container with Ads */
.about-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.about-container .page-content.container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.main-content {
  flex: 1 1 auto;
  min-width: 0;
}

.ads-column {
  flex: 1;
}

.ads-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ad-block {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  min-height: 150px;
}

/* About Page Single-Column Layout with Sidebar Nav */
.about-page-wrapper {
  display: flex;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  align-items: flex-start;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.about-page-wrapper.container {
  margin: 0.5rem auto 0 auto;
  padding: 0 0.5rem;
}

.about-sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 100px;
  min-height: 300px;
  width: 250px;
  max-width: 250px;
}

.main-content {
  flex: 1 1 auto;
  min-width: 0;
  width: calc(100% - 250px - 1.5rem);
  max-width: calc(100% - 250px - 1.5rem);
}

/* Ensure content cards don't overflow */
.main-content .about-card {
  width: 100%;
  box-sizing: border-box;
}

/* History Timeline Styling */
.history-timeline {
  position: relative;
  padding: 1rem 0;
}

.history-period {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.history-period h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-period p {
  line-height: 1.7;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.history-period p:last-child {
  margin-bottom: 0;
}

.history-period strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Timeline connector for larger screens */
@media (min-width: 768px) {
  .history-timeline {
    position: relative;
    padding-left: 2rem;
  }
  
  .history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }
  
  .history-period::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
  }
  
  .history-period:last-child::after {
    content: '';
    position: absolute;
    left: -2.25rem;
    bottom: -1rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
  }
}

/* Family-Friendly Enhancements */
.children-activities-list,
.family-events-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.children-activities-list li,
.family-events-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.children-activities-list li:last-child,
.family-events-list li:last-child {
  border-bottom: none;
}

.children-activities-list strong,
.family-events-list strong {
  color: var(--secondary-color);
  min-width: 150px;
  margin-right: 0.5rem;
}

/* Family Dining Section */
.family-dining-info {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}

.family-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--dark-color);
  line-height: 1.6;
}

/* Gallery Styles */
.gallery-container {
  margin: 2rem 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.photo-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-placeholder {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
  color: var(--primary-color);
}

.photo-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upload-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 2px dashed var(--secondary-color);
  text-align: center;
}

.upload-instructions {
  max-width: 600px;
  margin: 1rem auto;
  text-align: left;
}

.upload-instructions ul {
  list-style-type: none;
  padding: 0;
}

.upload-instructions li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.upload-instructions li::before {
  content: "📷";
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Enhanced Membership Section */
.membership-benefits {
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
  border-radius: 12px;
  border: 1px solid rgba(98, 182, 203, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), #ff7a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.membership-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--secondary-color);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 150, 66, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-card.featured .price-header {
  background: linear-gradient(135deg, var(--secondary-color), #ff7a1a);
}

.price-header h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  opacity: 0.9;
}

.price-features {
  padding: 2rem;
}

.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.price-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  gap: 0.75rem;
}

.price-features li i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.joining-fee,
.eligibility {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
}

.membership-cta {
  background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(98, 182, 203, 0.2);
}

.membership-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-color: var(--primary-color);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), #ff7a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 150, 66, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
  background: var(--secondary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Keyboard Navigation Hint */
.keyboard-hint {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(52, 64, 85, 0.9);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.keyboard-hint:hover {
  opacity: 1;
}

/* Animation improvements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

.about-card {
  animation: fadeInUp 0.5s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .about-hero {
    padding: 2rem 0;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .quick-stats {
    gap: 1.5rem;
    justify-content: space-around;
  }
  
  .stat-item {
    min-width: 100px;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Quick Actions Mobile */
  .quick-actions {
    padding: 1rem 0;
    position: relative;
    top: auto;
    margin-bottom: 0;
  }
  
  .actions-grid {
    gap: 0.75rem;
  }
  
  .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  /* About Page Layout Mobile */
  .about-page-wrapper {
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem auto;
    padding: 0 0.5rem;
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    display: flex;
    margin-bottom: 0.25rem;
  }
  
  .about-sidebar {
    position: relative;
    top: auto;
    order: -1;
    width: 100%;
    max-width: 100%;
    flex: none;
    margin-bottom: 0;
    min-height: 0 !important;
    height: auto !important;
    padding: 0;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    flex: none;
    margin-top: 0;
  }

  .main-content .about-card {
    margin-bottom: 1rem;
  }

  .mobile-nav-toggle {
    margin-bottom: 0.25rem;
    padding: 0.75rem 1rem;
  }
  
  .about-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .about-sidebar.mobile-open .about-nav {
    display: block;
  }
  
  .about-nav ul {
    padding-top: 1rem;
  }
  
  .about-nav li {
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
  }
  
  /* Benefits Grid Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1.5rem 1rem;
  }
  
  /* Membership Pricing Mobile */
  .membership-pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  /* CTA Buttons Mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  /* Keyboard Hint Mobile */
  .keyboard-hint {
    display: none;
  }
  
  /* Location Map Mobile */
  .location-map iframe {
    height: 250px;
  }
  
  .map-links {
    flex-direction: column;
    align-items: center;
  }
  
  .map-link {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  /* Contact Details Mobile */
  .contact-details li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }
  
  .contact-details li i {
    align-self: flex-start;
  }
  
  .opening-hours td {
    display: block;
  }
  
  .opening-hours td:first-child {
    padding-bottom: 0;
  }
  
  .about-container .page-content.container {
    flex-direction: column;
  }
  
  .ads-column {
    width: 100%;
    position: relative;
    top: auto;
    margin-top: 1rem;
  }
  
  .family-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 200px;
    text-align: center;
  }
  
  .children-activities-list strong,
  .family-events-list strong {
    min-width: auto;
    display: block;
    margin-bottom: 0.25rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .quick-stats {
    gap: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .actions-grid {
    gap: 0.75rem;
  }
  
  .action-btn {
    padding: 0.6rem 1.2rem;
  }
}

/* Location Map Styles */
.location-map {
  width: 100%;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(98, 182, 203, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Map Alternatives */
.map-alternatives {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--light-color) 100%);
  border-radius: 8px;
  border: 1px solid rgba(98, 182, 203, 0.1);
}

.map-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.map-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 150, 66, 0.3);
}

.map-link i {
  font-size: 1rem;
}

/* Contact Details Styling */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details li:hover {
  background: var(--light-color);
  padding-left: 0.5rem;
  border-radius: 6px;
}

.contact-details li i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-details li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 1;
}

.contact-details li a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
