.fl-contact-form textarea, .fl-contact-form input[type="text"], .fl-contact-form input[type="tel"], .fl-contact-form input[type="email"] {
	display: inline-block;
	width: 100%;
	border: 1px solid #ddd;
	padding: 5px 10px;
	font-size: 13px;
	color: #373737;
	border-radius: 3px;
}

@media only screen and (max-width: 768px) {
  html, body {overflow-x: hidden;}
  .gcabor .fl-photo-img {
    transform: translate(20px, -30px) !important;
  }
}

.tabs { 
  display: flex; 
  gap: 10px; 
  margin-bottom: 20px; 
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: #e6edf5;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all .3s ease;
}
.tab-btn.active { background: #c00; color: #fff; }
.tab-btn:hover { background: #ff4d4d; color: #fff; }

.tab-content { display: none; }
.tab-content.active { 
  display: flex; 
  flex-wrap: wrap; 
}

.card {
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  margin: 15px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
  flex: 0 0 auto;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
  background: #fff;
  text-align: left;
}
.card-body h4 { 
  font-size: 18px; 
  margin: 0 0 8px; 
  font-weight: 700; 
  color: #001f54; 
  line-height:1.4;
}
.card-body h4 a {
  text-decoration: none;
  color: inherit;
}
.card-body h4 a:hover {color: #c00;}
.card-body p { 
  margin: 4px 0; 
  font-size: 14px; 
  color: #444;
}
.sport { color: #c00; font-weight: 600; font-size:15px; }

@media (max-width: 992px) {
  .card { width: 200px; }
  .card img { height: 260px; }
}
@media (max-width: 768px) {
  .card { width: 45%; }
  .card img { height: 200px; }
}
@media (max-width: 480px) {
  .card { width: 100%; margin: 10px 0; }
  .card img { height: 260px; }
}


.detail-anggota-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #f9fbfd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin: 20px 0;
  font-family: Arial, sans-serif;
}
.detail-col {
  flex: 1;
  min-width: 250px;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 8px;
  padding-bottom: 4px;
  font-size: 15px;
}
.detail-label {
  font-weight: 600;
  color: #333;
}
.detail-value {
  color: #555;
  text-align: right;
  max-width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
  .detail-anggota-card {
    flex-direction: column;
                align-items: stretch;
  }
  .detail-col {
    min-width: 100%;
  }
  .detail-item {
    font-size: 14px;
  }
}

/* Container utama */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

/* Row sejajar 2 kolom */
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

/* Input & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 16px;
  outline: none;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d60000;
  box-shadow: 0 0 5px rgba(214, 0, 0, 0.3);
}

/* Textarea full width */
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Tombol submit */
.contact-form input[type="submit"] {
  background: #d60000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover tombol */
.contact-form input[type="submit"]:hover {
  background: #a30000;
}


.gcabor .fl-photo-img {
  display: inline-block; 
  position: relative;  
  z-index: 99 !important; 
  transform: translate(30px, -30px);
  transition: transform 0.3s ease; 
}
.gcabor .fl-photo-img:hover {
  transform: translate(0, 0);
}

.fl-module-callout .fl-module-content {
  overflow: visible !important;
}
.btn-unduh-sertifikat {
    display: block;          /* bikin tombol jadi block element */
    width: 100%;             /* lebar penuh */
    background: #cc1f1a;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;      /* teks di tengah */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;  /* biar padding tidak bikin overflow */
}

.btn-unduh-sertifikat:hover {
    background: #cc1f1a;
    transform: scale(1.02);
}
