/* Premium Booking Section - style2.css */
.premium-book-section {
  background: #f6f7fb;
  padding: 80px 0 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Ensure heading and subtitle are always at the top and centered */
.premium-book-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.premium-book-title,
.premium-book-subtitle {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.premium-book-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.premium-book-subtitle {
  margin-bottom: 2.2rem;
}
.premium-book-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 48px;
}
.premium-book-image {
  flex: 0 0 320px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  padding: 0;
}
.premium-book-form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  box-shadow: none;
  padding: 0;
}
/* Premium form styles */
.premium-book-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: none;
  box-shadow: none;
  padding: 0;
}
.premium-book-form input,
.premium-book-form select {
  width: 100%;
  border: 1.8px solid #d1c4e9;
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 1.18rem;
  background: #faf8ff;
  color: #2d1a4a;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(110,76,255,0.07);
  outline: none;
  margin: 0;
  transition: border 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}
.premium-book-form input:focus,
.premium-book-form select:focus {
  border: 1.8px solid #7b5cff;
  box-shadow: 0 0 0 2px rgba(123,92,255,0.10);
}
.premium-book-form button {
  width: 100%;
  padding: 20px 0;
  font-size: 1.18rem;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #7b5cff 0%, #6e8bfa 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 18px 0 rgba(110,76,255,0.13);
  letter-spacing: 0.5px;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, box-shadow 0.2s;
}
.premium-book-form button:hover {
  background: linear-gradient(90deg, #6e8bfa 0%, #7b5cff 100%);
  box-shadow: 0 6px 24px 0 rgba(110,76,255,0.18);
}
.premium-book-btn {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 50px;
  padding: 16px 0;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(102,126,234,0.13);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.premium-book-btn:hover, .premium-book-btn:focus {
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 8px 32px rgba(102,126,234,0.18);
  transform: scale(1.03);
}
.usman-large-img {
  width: 340px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  max-width: 100%;
}
/* Make booking image much bigger and premium */
.premium-book-image img,
.usman-large-img {
  width: 480px;
  height: 600px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none;
}
@media (max-width: 900px) {
  .premium-book-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .premium-book-image {
    max-width: 320px;
    margin: 0 auto 0 auto;
    padding: 10px 4px;
  }
  .premium-book-form-col {
    max-width: 100%;
    min-width: 0;
  }
  .premium-book-form {
    max-width: 100%;
  }
  .usman-large-img {
    width: 260px;
    height: 320px;
  }
}
@media (max-width: 600px) {
  .premium-book-image {
    display: none;
  }
  .premium-book-container {
    padding: 16px 2px 12px 2px;
    border-radius: 14px;
  }
  .premium-book-title {
    font-size: 1.2rem;
  }
  .premium-book-subtitle {
    font-size: 0.98rem;
  }

  .premium-book-form input,
  .premium-book-form select {
    font-size: 1rem;
    padding: 16px 18px;
  }

  .premium-book-btn {
    font-size: 1rem;
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  .premium-book-title {
    font-size: 1.1rem;
  }
  
  .premium-book-subtitle {
    font-size: 0.9rem;
  }

  .premium-book-form input,
  .premium-book-form select {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .premium-book-btn {
    font-size: 0.95rem;
    padding: 12px 0;
  }
} 

/* Premium Footer Styles */
.premium-footer {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0 20px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 0;
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

.footer-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.footer-social-link.whatsapp:hover {
  background: #25d366;
  color: white;
}

/* Footer Links Section */
.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
  border-radius: 1px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links-list li:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links-list li i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: white;
  text-decoration: none;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}



.heartbeat {
  display: inline-block;
  color: #ff6b6b;
  animation: heartbeat 1.2s infinite;
  font-size: 1.1em;
  vertical-align: middle;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.2); }
  20%, 40% { transform: scale(0.95); }
  50% { transform: scale(1.1); }
  60% { transform: scale(0.98); }
  70%, 90% { transform: scale(1.05); }
  80% { transform: scale(1); }
}
/* Mobile Responsive Footer */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  

}

@media (max-width: 600px) {
  .premium-footer {
    padding: 40px 0 20px 0;
    margin-top: 60px;
  }
  
  .footer-content {
    padding: 0 25px;
  }
  
  .footer-main {
    gap: 40px;
    margin-bottom: 0;
  }
  
  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand-name {
    font-size: 1.8rem;
  }
  
  .footer-brand-desc {
    font-size: 0.9rem;
  }
  
  .footer-social-links {
    gap: 12px;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-links-title {
    font-size: 1.1rem;
  }
  
  .footer-links-list li {
    font-size: 0.9rem;
  }
  

  

}

@media (max-width: 480px) {
  .premium-footer {
    padding: 30px 0 15px 0;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer-links-title {
    font-size: 1rem;
  }
  
  .footer-links-list li {
    font-size: 0.85rem;
  }
} 