/* =============================================
   CONTACT PAGE — contact.css
   ============================================= */

/* Active nav link */
.nav-active { position: relative; }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* ─── FLOAT ANIMATIONS ─── */
.contact-float {
  position: absolute;
  opacity: 0.35;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.cf-1 { top: 15%; left: 8%; width: clamp(90px, 14vw, 200px); animation: contactFloat1 9s ease-in-out infinite; }
.cf-2 { bottom: 10%; right: 12%; width: clamp(80px, 12vw, 180px); animation: contactFloat2 11s ease-in-out infinite; }

@keyframes contactFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(18px,-22px) rotate(6deg); }
}
@keyframes contactFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(-14px,20px) rotate(-5deg); }
}

/* ─── CONTACT HERO ─── */
.contact-hero {
  min-height: 50vh;
  padding: 200px 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.contact-hero-label {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.contact-hero h1 {
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 25px;
}
.contact-hero-desc {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 0 60px 150px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-container {
  display: flex;
  justify-content: center;
}

/* FORM STYLING */
.contact-form-container {
  flex: 1;
  max-width: 800px;
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
  color: var(--text-main);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(177, 31, 35, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 20px 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(177, 31, 35, 0.25);
  font-family: 'Inter', sans-serif;
  width: 100%;
}
.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(177, 31, 35, 0.35);
  background: #901618;
}

/* DETAILS STYLING */
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.detail-card {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.detail-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.detail-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.6;
}
.detail-link,
.detail-card p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.detail-link:hover {
  color: var(--accent-red);
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-links a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: var(--accent-red);
  transform: translateX(5px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 60px;
  }
  .contact-form-container, .contact-details {
    width: 100%;
  }
  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .detail-card {
    border-bottom: none;
    padding-bottom: 0;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .contact-hero { padding: 140px 20px 60px; }
  .contact-hero h1 { font-size: clamp(40px, 12vw, 80px); }
  .contact-section { padding: 0 20px 100px; }
  .contact-form-container { padding: 30px 20px; border-radius: 20px; }
  .detail-card { width: 100%; }
}
