
/* Section */
.contact-section {
  padding: 20px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Container */
.contact-container {
  display: flex;
  justify-content: space-between;  /* spread evenly */
  align-items: stretch;
  gap: 15px;
  padding: 20px;
  max-width: 1200px;  /* keeps them inside a nice width */
  margin: auto;
}

/* Cards */
.contact-card {
  flex: 1;                /* all cards share equal space */
  min-width: 220px;       /* smaller minimum size */
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.1);
}
/* Address Card - make it smaller */
.address-card {
  flex: 0 0 353px;   /* fixed smaller width */
  max-width: 320px;
}

/* Icon Box */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  border-radius: 12px;
  font-size: 24px;
  color: #fff;
}

.icon-box.green { background: #2ecc71; }
.icon-box.orange { background: #f39c12; }
.icon-box.black { background: #333; }
.icon-box.social { background: #16a085; }

.contact-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-card p, 
.contact-card a {
  margin: 4px 0 0;
  font-size: 15px;
  color: #555;
  text-decoration: none;
}

.contact-card a:hover {
  color: #2ecc71;
}

/* Social Icons */
.social-links {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f8f8f8;
  color: #333;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
  background: #2ecc71;
  color: #fff;
}

 ✅ Mobile Responsive
   ========================= */
@media (max-width: 992px) {
  .contact-container {
    flex-wrap: wrap;  /* cards will wrap */
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .address-card {
    flex: 1 1 100%;   /* allow flexible width */
    max-width: 100%;  /* no fixed width */
  }
  .contact-container {
    flex-direction: column;  /* stack vertically */
    align-items: center;
  }

  .contact-card {
    width: 100%;          /* take full width */
    max-width: 450px;     /* but not too wide */
    justify-content: flex-start;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p, 
  .contact-card a {
    font-size: 14px;
  }

  .icon-box {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.map-section {
  text-align: center;
  padding: 0; /* remove padding for full-width look */
  background: #f9f9f9;
}

.map-section .section-title,
.map-section .section-subtitle {
  margin: 20px 0;
}

.map-container {
  width: 100%;
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Talk to a Coach Form ===== */
.coach-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.coach-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* like background-size: cover */
  z-index: 0;
}

/* Dark overlay for readability */
.coach-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Overlay content (form + text) */
.coach-overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0); /* lighter transparency */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12); /* lighter border */
}

/* Headings */
.coach-overlay h2.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.coach-overlay p.section-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  color: #f1f1f1;
}

/* Form Styling */
.coach-form .form-group {
  margin-bottom: 18px;
  text-align: left;
}

.coach-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff;
}

.coach-form input,
.coach-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 14px;
  color: #fff;
}

.coach-form input::placeholder,
.coach-form select {
  color: #000000ff;
}

.coach-overlay label,
.coach-form label {
  color: #3D9970 !important;  /* use !important to override any inherited color */
}

.coach-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  accent-color: #f89c1c;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

/* Buttons */
.btn.primary {
  background: #f89c1c;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary:hover {
  background: #e58300;
}

.btn.secondary {
  background: #128c7e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.secondary:hover {
  background: #0f6b5c;
}

/* ===================
   MOBILE RESPONSIVE
   =================== */
@media (max-width: 768px) {
  .coach-overlay {
    padding: 20px;
    max-width: 95%;
  }

  .coach-overlay h2.section-title {
    font-size: 20px;
  }

  .coach-overlay p.section-subtitle {
    font-size: 14px;
  }

  .coach-form .form-group {
    margin-bottom: 15px;
  }

  .coach-form input,
  .coach-form select {
    width: 100%;
    box-sizing: border-box;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn.primary,
  .btn.secondary {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Friendly Microcopy */
.friendly-microcopy {
  margin-top: 40px;
  background: #f9fdfb;
  padding: 20px 25px;
  border-left: 4px solid #3d9970;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.friendly-microcopy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.friendly-microcopy li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  display: flex;
  align-items: center;
}

.friendly-microcopy li::before {
  content: "✔";
  color: #3d9970;
  margin-right: 8px;
  font-weight: bold;
}

/* Visit Our Club Section */
.visit-club {
  background: linear-gradient(to right, #f7f9fc, #eef3f8);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.visit-club h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.visit-club h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff914d;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Card Layout */
.club-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Individual Cards */
.club-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.club-card h3 {
  font-size: 1.5rem;
  color: #ff914d;
  margin-bottom: 1rem;
}

.club-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.club-card a {
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
}

.club-card a:hover {
  text-decoration: underline;
}
