/* ============================================
   Contact Page — Curug Song
   Isolated via c- prefix
   ============================================ */

/* --- Navbar --- */
.c-navbar {
  background: #fff;
  padding: 24px 40px;
  position: relative;
  z-index: 10;
}

.c-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2EC4B6;
  text-decoration: none;
  line-height: 1.2;
}

.c-logo:hover {
  opacity: 0.85;
  transition: all 0.2s ease;
}

.c-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-nav-link:hover,
.c-nav-link:focus,
.c-nav-link--active {
  color: #2EC4B6;
}

/* --- Banner --- */
.c-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.c-banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin: 0;
}

/* --- Map --- */
.c-map {
  width: 100%;
  overflow: hidden;
}

.c-map iframe {
  display: block;
}

/* --- Cards Section --- */
.c-cards {
  background: var(--light-bg, #f8f9fa);
  padding: 80px 0;
}

.c-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.c-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.c-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8F8F6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.c-card-icon i {
  font-size: 1.5rem;
  color: #2EC4B6;
}

.c-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #333;
  margin: 0 0 12px 0;
}

.c-card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #777;
  margin: 0 0 4px 0;
}

.c-card-text--small {
  font-size: 0.8125rem;
  color: #999;
  margin-top: 8px;
}

.c-card-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.c-card-btn:hover {
  background: #1DA851;
}

/* --- Form Section --- */
.c-form-section {
  background: #fff;
  padding: 80px 0;
}

.c-form-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  color: #333;
  margin: 0 0 8px 0;
}

.c-form-note {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  color: #999;
  margin: 0 0 40px 0;
}

.c-form {
  max-width: 640px;
  margin: 0 auto;
}

.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-form-group {
  margin-bottom: 20px;
}

.c-form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #555;
  margin-bottom: 6px;
}

.c-form-input,
.c-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #333;
  background: #fafafa;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.c-form-input:focus,
.c-form-textarea:focus {
  outline: none;
  border-color: #2EC4B6;
  background: #fff;
}

.c-form-textarea {
  resize: vertical;
}

.c-form-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #2EC4B6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  opacity: 0.7;
  transition: background 0.3s ease;
}

/* --- Footer --- */
.c-footer {
  background: #F5F5F5;
  padding: 80px 40px;
}

.c-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.c-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2EC4B6;
  margin: 0 0 20px 0;
}

.c-footer-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  color: #777;
  margin: 0;
}

/* --- Social --- */
.c-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #BBB;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-social-link i {
  font-size: 0.875rem;
  color: #fff;
}

.c-social-link:hover {
  background: #2EC4B6;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(46, 196, 182, 0.3);
}

/* --- Thumbnails --- */
.c-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.c-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
}

.c-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.c-thumb:hover img {
  transform: scale(1.08);
}

/* --- Copyright Bar --- */
.c-footer-bar {
  background: #2EC4B6;
  padding: 18px 40px;
  text-align: center;
}

.c-footer-bar p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #fff;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  .c-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-card:last-child {
    grid-column: span 2;
  }

  .c-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-footer-col:last-child {
    grid-column: span 2;
  }

  .c-thumbs {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
  }
}

@media (max-width: 767px) {
  .c-navbar {
    padding: 20px 24px;
  }

  .c-nav-links {
    gap: 20px;
  }

  .c-nav-link {
    font-size: 0.8125rem;
  }

  .c-banner {
    height: 240px;
  }

  .c-banner-title {
    font-size: 2rem;
  }

  .c-cards {
    padding: 48px 0;
  }

  .c-card-grid {
    grid-template-columns: 1fr;
  }

  .c-card:last-child {
    grid-column: span 1;
  }

  .c-form-row {
    grid-template-columns: 1fr;
  }

  .c-form-section {
    padding: 48px 0;
  }

  .c-footer {
    padding: 48px 24px;
  }

  .c-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .c-footer-col {
    align-items: center;
    text-align: center;
  }

  .c-footer-col:last-child {
    grid-column: span 1;
  }

  .c-thumbs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .c-social {
    justify-content: center;
  }
}
