/* --- CONTACT PAGE STYLING --- */
.contact-page-wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h1 {
  color: #2c3e50;
  font-size: 32px;
  margin-bottom: 10px;
}

.header-line {
  width: 150px;
  height: 4px;
  background: #27ae60;
  margin: 0 auto;
}

.contact-header p {
  color: #666;
  margin-top: 15px;
}

.contact-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Form Styling */
.contact-form-card {
  flex: 2;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 240px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

.contact-submit-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  background: #219150;
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

/* Sidebar Styling */
.contact-sidebar {
  flex: 1;
  min-width: 280px;
}

.yt-subscribe-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  margin-bottom: 30px;
  text-align: center;
}

.yt-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.yt-box img {
  width: 100px;
  margin-bottom: 10px;
}

.yt-name {
  font-weight: bold;
  color: #ff0000;
  margin: 5px 0;
}

.yt-btn {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.2s;
}

.yt-btn:hover {
  background: #cc0000;
}

.contact-info-card {
  background: #2c3e50;
  color: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.contact-info-card strong {
  color: #27ae60;
}

.contact-social-section {
  text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 26px;
  }
  .contact-form-card {
    padding: 15px;
  }
}
