/* ══════════ CONTACT PAGE STYLES ══════════ */

.contact-hero {
  height: 60vh;
  min-height: 450px;
  background: linear-gradient(rgba(15, 31, 46, 0.75), rgba(15, 31, 46, 0.75)),
    url("https://ik.imagekit.io/6krfkcqxh/The-Mountain-Vibes/roopkund1.jpeg?updatedAt=1777906691135");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.contact-hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.contact-hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.contact-hero-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 5%;
  background: var(--light);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* --- Info Column --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}

.info-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 54px;
  height: 54px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.info-item:hover .info-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.05);
}

.info-text h3 {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.info-text p {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

/* --- Support Card Specific --- */
.support-card {
  margin-top: 20px;
  background: var(--navy);
  color: white;
}

.support-card h2 {
  color: var(--gold);
}

.support-card h2::after {
  background: var(--white);
}

.support-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* --- Form Column --- */
.contact-form-col {
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.contact-form-col h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-form-col p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 194, 0, 0.1);
}

.whatsapp-btn {
  width: 100%;
  padding: 20px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
  background: #1ebc5a;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:active {
  transform: translateY(-1px);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --- Social Section --- */
.social-connect {
  padding: 80px 5%;
  text-align: center;
  background: var(--white);
}

.social-connect h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  margin-bottom: 35px;
  color: var(--navy);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-weight: 600;
  transition: all 0.3s;
  color: var(--navy);
  font-size: 1.05rem;
}

.social-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(15, 31, 46, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .contact-container {
    gap: 40px;
  }
  
  .contact-form-col, .info-card {
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  
  .contact-section {
    padding: 70px 5%;
  }

  .contact-info-col {
    order: 2;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
    min-height: 350px;
    background-attachment: scroll; /* Better performance on mobile */
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-form-col {
    padding: 35px 25px;
  }

  .info-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    height: 45vh;
  }

  .contact-hero-content h1 {
    font-size: 2.25rem;
  }

  .contact-form-col {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .info-card {
    border-radius: 20px;
  }

  .info-item {
    flex-direction: column;
    gap: 12px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .social-pill {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 400px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-form-col h2, .info-card h2, .social-connect h2 {
    font-size: 1.75rem;
  }

  .whatsapp-btn {
    font-size: 1rem;
    padding: 16px;
  }
}
