/* =====================================
   CONTACT PAGE – PRAYUL NATURALS
===================================== */

/* ==================================================
   CONTACT HERO – SAME ANIMATION AS PRODUCT HERO
================================================== */

.contact-hero {
  background: linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative floating circles */
.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* Content animation */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.contact-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 24px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }
}


/* SECTION */
.contact-section {
  padding: 90px 24px;
  background: #ffffff;
}

.contact-container {
  max-width: 1300px;
  margin: auto;
}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 36px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.contact-details i {
  width: 42px;
  height: 42px;
  background:rgb(217, 143, 32);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-details a {
  color: #031428;
  text-decoration: none;
}

/* ===============================
   GLOBAL FIX (IMPORTANT)
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===============================
   FORM CARD
================================ */
.contact-form-card {
  background: linear-gradient(135deg, #f4e5ca, #ffffff);
  padding: 50px 42px;
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.contact-form-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: #031428;
}

/* ===============================
   FORM LAYOUT
================================ */
.enhanced-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ===============================
   FIELD
================================ */
.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 1rem;
  border-radius: 14px;
  border: 2px solid #dcdcdc; /* FIXED BORDER */
  background: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* TEXTAREA */
.textarea-field textarea {
  min-height: 150px;
  resize: none;
}

/* ===============================
   LABEL (BORDER SAFE)
================================ */
.field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #777;
  background: linear-gradient(#ffffff 50%, transparent 50%);
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* ===============================
   FOCUS STATE (NO JUMP)
================================ */
.field input:focus,
.field textarea:focus {
  border-color:rgb(217, 143, 32);
  box-shadow: 0 0 0 3px rgba(216, 188, 7, 0.18);
}

/* FLOAT LABEL */
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 0.75rem;
  color: rgb(217, 143, 32);
}

/* ===============================
   BUTTON
================================ */
.submit-btn {
  margin-top: 12px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  background: rgb(217, 143, 32);
  transition: all 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(216, 164, 7, 0.45);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 40px 26px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}
/* =====================================
   CONTACT CTA – BUY PRODUCTS
===================================== */

.contact-cta-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* CONTENT */
.contact-cta-content {
  max-width: 760px;
  margin: auto;
  color: #ffffff;
  animation: fadeInUp 1s ease;
}

.cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgb(217, 143, 32);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.contact-cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-cta-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #ffffff;
  color:rgb(217, 143, 32);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color:rgb(217, 143, 32);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-cta-content h2 {
    font-size: 2.2rem;
  }

  .contact-cta-content p {
    font-size: 1.05rem;
  }
}
