/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary: #ff9f1c;
  --secondary: #ff6f00;
  --dark: #1e1e1e;
  --soft: #fff7ec;
  --glass: rgba(255, 255, 255, 0.65);
}

/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  position: relative;
  font-family:'Poppins',sans-serif;
  background: transparent;
}

/* =========================
   MOVING BACKGROUND
========================= */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("uploads/consultations/vedic.jpeg") center/cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  animation: vedicMove 60s linear infinite;
}

@keyframes vedicMove {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05) translate(-20px, -20px);
  }
  100% {
    transform: scale(1);
  }
}

/* =========================
   BREADCRUMB
========================= */
.au-breadcrumb {
  background: #fffaf3;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 122, 24, 0.15);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6d5b4b;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #ff7a18;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-current {
  color: #2c1d14;
  font-weight: 600;
}

/* =========================
   SECTION
========================= */
.consult-section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
}

/* =========================
   GRID
========================= */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

/* =========================
   CARD (MATCH E-PUJA)
========================= */
/* =========================
   CONSULT CARD (EXACT SAME AS E-PUJA)
========================= */
.consult-card {
  position: relative;
  height: 260px; /* 🔥 EXACT SAME */
  border-radius: 14px;
  overflow: hidden;
}

/* IMAGE */
.consult-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}



.consult-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding: 20px;
  color: #fff;
}

/* TEXT */
.card-overlay h3 {
  font-size: 20px;
  
}

/* BUTTON */
/* =========================
   BUTTON (EXACT E-PUJA MATCH)
========================= */
.consult-btn {
  display: inline-block;
  background: #ff7a18;
  border: none;

  padding: 10px 18px;   /* 🔥 SAME as E-Puja */
  border-radius: 25px;  /* 🔥 SAME shape */

  color: #fff;
  text-decoration: none;

  font-size: 16px;      /* 🔥 IMPORTANT */
  font-weight: 600;     /* 🔥 SAME */

  cursor: pointer;
  margin-top: 10px;

  transition: 0.3s ease;
}

.consult-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}

/* ANIMATIONS */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MODAL
========================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  width: 500px;
  max-width: 92%;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.modal-box button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border: none;
  background: #ff7a18;
  color: #fff;
  border-radius: 30px;
}

.closeEnquiry {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   ENQUIRY BUTTON
========================= */
.enquiry-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #ff7a18;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 100;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }
}
