/*------------------------------------
BASIC PAGE SETUP
-------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
}


/*------------------------------------
  MAIN CONTACT SECTION
-------------------------------------- */
.contact-section {
  padding-top: 8rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background: linear-gradient(135deg, #f4f7fa 0%, #e8f1f8 100%);
  min-height: 90vh;
}
.contact-section h1 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
}
.intro-text {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 3rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/*------------------------------------
  CONTACT CARDS SECTION
-------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.contact-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e8e8e8;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
/* Contact card icons */
.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
/* Contact card titles */
.contact-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
/* Main contact details (phone, email, etc.) */
.contact-detail {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1e3a5f;
  margin-bottom: 1rem;
}
/* Description text */
.contact-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
/* Contact buttons */
.contact-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #1e3a5f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.contact-button:hover {
  background-color: #2c4f75;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}
.facebook-btn:hover {
  background-color: #166fe5;
}


/*------------------------------------
  BOOKING INFO SECTION
-------------------------------------- */
.booking-info {
  background: white;
  border-radius: 12px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: left;
  border: 1px solid #e8e8e8;
}
.booking-info h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.booking-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.booking-item h3 {
  font-size: 1.4rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
  font-weight: bold;
}
.booking-item ul {
  list-style: none;
  padding: 0;
}
.booking-item li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.booking-item li:before {
  content: "✓ ";
  color: #2ecc71;
  font-weight: bold;
  margin-right: 0.5rem;
}


/*------------------------------------
  MAP SECTION
-------------------------------------- */
.map-section {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 1vh;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.map-section h2 {
  text-align: center;
  font-size: 2.1rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: bold;
}
.map-section a {
  text-align: center;
  text-decoration:none;
  font-size: 1.2rem;
  color: #2c3e50;
}
.map-container {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
.map {
  width: 39.5vw;
  height: 39vh;
  border: none;
  border-radius: 40px;
}