/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

/* --- HERO SECTION --- */
/* FIXED: Removed conflicting .page-title-section and .page-title-content rules. 
   These are now universally controlled by the master style.css to prevent banner opacity gaps. */

.scroll-down-icon {
  font-size: 20px;
  color: var(--accent-primary);
  animation: bounce 2s infinite;
  display: inline-block;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* --- CONTACT MAIN LAYOUT --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-glass);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* --- LEFT SIDE: INFO --- */
.contact-heading {
  font-family: "Semplice Pro", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
  background: var(--accent-primary);
  color: #000;
  transform: scale(1.1);
}

.info-text h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-text p, .info-text a {
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--accent-primary);
}

/* --- RIGHT SIDE: FORM (GLASS PANEL) --- */
.contact-form-container {
  background: linear-gradient(135deg, rgba(26, 35, 47, 0.8) 0%, rgba(17, 24, 33, 0.95) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  /* Override global glass-panel layout shifts */
  width: 100% !important;
  margin-left: 0 !important;
  transform: none !important;
}

.contact-form-container h3 {
  font-family: "Semplice Pro", sans-serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input, select, textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Custom Select styling to make it look dark */
select option {
  background: #111821;
  color: #fff;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent-primary);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-container {
    padding: 30px 20px;
  }
}