/* =========================================
   8. HERO SECTION (ULTRA PRO DESIGN)
   ========================================= */
.ag-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
  overflow: hidden;
  padding: 120px 0 80px;
  color: var(--white);
}

/* Subtle Background Pattern (Ayurvedic feel) */
.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(200, 169, 81, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 81, 0.15);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(200, 169, 81, 0.3);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width:100% !important;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

.hero-subtitle i{
	font-size:1.5rem;
	color: var(--gold);
}

/* Hero Buttons */
.hero-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(200, 169, 81, 0.3);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(200, 169, 81, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0.7;
  transition: var(--transition);
}

.scroll-down-indicator:hover {
  opacity: 1;
}

.scroll-down-indicator span {
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .ag-hero-section {
    min-height: 85vh;
    padding: 100px 0 60px;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn {
    width: auto;
    justify-content: center;
  }
  .scroll-down-indicator {
    display: none; /* Mobile par scroll indicator chhupa dein */
  }
}

/* =========================================
   9. HOMEPAGE SECTIONS (ULTRA PRO CSS)
   ========================================= */

/* --- Base Section & Typography --- */
.hec-section {
  padding: var(--section-space) 0;
  position: relative;
}

/* Alternating Backgrounds for Visual Rhythm */
#why-choose, #treatments, #testimonials, #medicines, #faq {
  background-color: var(--white);
}
#video, #diseases, #gallery, #blog, #contact {
  background-color: var(--cream);
}

/* Elegant Section Titles */
.hec-section h2 {
  text-align: center;
  font-size: var(--fs-3xl);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  color: var(--dark);
}

.hec-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* --- Grid & Card System (Reusable) --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 81, 0.2);
}

.card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.card:hover h3 {
  color: var(--primary);
}

.card p, .card-content {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 15px;
}

.card-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover .card-thumbnail img {
  transform: scale(1.02);
}

/* --- 1. Why Choose Us --- */
#why-choose .card {
  text-align: center;
  padding: 40px 30px;
  border-top: 4px solid var(--gold);
}
#why-choose .card h3 {
  font-size: var(--fs-xl);
}

/* --- 2. Video Section --- */
#video .card {
  padding: 0;
  overflow: hidden;
  background: #000;
}
#video .card h3 {
  padding: 20px;
  margin: 0;
  background: var(--white);
  color: var(--dark);
}

/* --- 3. Testimonials --- */
#testimonials .card {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  position: relative;
}
#testimonials .card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 80px;
  font-family: var(--font-heading);
  color: rgba(200, 169, 81, 0.15);
  line-height: 1;
}
#testimonials .card h3 {
  color: var(--gold);
  font-size: var(--fs-md);
  font-weight: 600;
}

/* --- 4. Gallery --- */
#gallery .card {
  padding: 0;
  overflow: hidden;
}
#gallery .card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  margin: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
#gallery .card:hover h3 {
  opacity: 1;
  color: var(--white);
}
#gallery .card-thumbnail img {
  margin: 0;
  border-radius: 0;
  height: 250px;
}

/* --- 5. Appointment CTA (Glassmorphism) --- */
#appointment {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 100px 0;
}
#appointment .glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
#appointment .glass h2 {
  color: var(--white);
  margin-bottom: 20px;
}
#appointment .glass h2::after {
  background: var(--gold);
}
#appointment .glass p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-md);
  margin-bottom: 30px;
}
#appointment .btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  font-size: var(--fs-base);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
}
#appointment .btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- 6. FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 25px;
  text-align: left;
}
.faq-item:hover {
  transform: translateX(5px);
}
.faq-item h4 {
  font-size: var(--fs-md);
  color: var(--dark);
  margin-bottom: 10px;
}
.faq-answer {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* --- 7. Contact Section --- */
#contact .grid {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 0px 20px;
}
#contact .card {
  padding: 40px;
}
#contact .card h2 {
  text-align: left;
  margin-bottom: 30px;
}
#contact .card h2::after {
  left: 0;
  transform: none;
}
#contact .card p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: var(--fs-base);
}
#contact .card a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
#contact .card a:hover {
  color: var(--primary);
}

/* Contact Form Styling (CF7) */
.wpcf7-form input, 
.wpcf7-form textarea, 
.wpcf7-form select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.wpcf7-form input:focus, 
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.wpcf7-form input[type="submit"] {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* =========================================
   10. RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 992px) {
  .hec-section { padding: 60px 0; }
  .hec-section h2 { font-size: var(--fs-2xl); margin-bottom: 40px; }
  #contact .grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid { grid-template-columns: 1fr; }
  .card { padding: 25px; }
  #appointment .glass { padding: 40px 20px; }
}




/* =========================================
   12. ABOUT GURUJI PAGE (PREMIUM LAYOUT)
   ========================================= */

/* Common Page Variables */
.text-gold { color: var(--gold); }
.ag-subtitle {
  display: block;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.ag-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* --- 1. Page Hero --- */
.ag-about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
}
.ag-about-hero .ag-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 20px;
}
.ag-about-hero .ag-lead {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* --- 2. Introduction Section --- */
.ag-about-intro {
  padding: 80px 0;
  background: var(--white);
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ag-image-wrap {
  position: relative;
}
.ag-profile-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.ag-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.ag-image-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}
.ag-image-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ag-text-wrap p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}
.ag-signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.ag-sign-img {
  height: 50px;
  width: auto;
  opacity: 0.8;
}
.ag-sign-name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--dark);
  font-weight: 600;
}

/* --- 3. Philosophy Section (Leaf Motif) --- */
.ag-philosophy {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Subtle Ayurvedic Leaf Background Pattern */
.ag-bg-leaf-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z' fill='%232E7D32' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}
.ag-philosophy .container { position: relative; z-index: 1; }
.ag-section-header { margin-bottom: 60px; }

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ag-phi-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.ag-phi-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--gold);
}
.ag-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ag-icon-box svg { width: 35px; height: 35px; }
.ag-phi-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--dark);
  margin-bottom: 15px;
}
.ag-phi-card p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* --- 4. Qualifications Section --- */
.ag-qualifications {
  padding: 80px 0;
  background: var(--white);
}
.reverse-mobile { direction: rtl; }
.reverse-mobile > * { direction: ltr; }

.ag-qual-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  border-left: 2px solid var(--gold);
}
.ag-qual-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
.ag-qual-list li::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}
.ag-qual-year {
  display: inline-block;
  background: var(--dark);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: 10px;
}
.ag-qual-info h4 {
  font-size: var(--fs-base);
  color: var(--dark);
  margin: 0 0 5px;
  font-weight: 600;
}
.ag-qual-info p {
  margin: 0;
  color: var(--text-light);
  font-size: var(--fs-sm);
}
.ag-rounded { border-radius: 50% !important; aspect-ratio: 1/1; object-fit: cover; }

/* --- 5. CTA Section --- */
.ag-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
}
.ag-cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ag-cta-box h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--white);
  margin-bottom: 15px;
}
.ag-cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-md);
  margin-bottom: 30px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .grid-2-col, .grid-3-col { grid-template-columns: 1fr; gap: 40px; }
  .reverse-mobile { direction: ltr; }
  .ag-image-badge { right: 10px; bottom: -10px; padding: 15px; }
}
@media (max-width: 768px) {
  .ag-about-hero { padding: 80px 0 60px; }
  .ag-section-title { font-size: var(--fs-2xl); }
  .ag-phi-card { padding: 30px 20px; }
}








/* =========================================
   13. CONTACT US PAGE (PREMIUM LAYOUT)
   ========================================= */

/* --- 1. Contact Hero --- */
.ag-contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
}
.ag-contact-hero .ag-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 20px;
}
.ag-contact-hero .ag-lead {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* --- 2. Contact Main Section --- */
.ag-contact-main {
  padding: 80px 20px;
  background: var(--cream);
}

/* Left Side: Info */
.ag-info-desc {
  color: var(--text-light);
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: 30px;
}

.ag-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ag-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.ag-info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 81, 0.3);
}

.ag-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ag-info-icon svg {
  width: 24px;
  height: 24px;
}

.ag-info-text h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--dark);
  margin: 0 0 5px;
}

.ag-info-text p {
  margin: 0;
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.ag-info-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.ag-info-text a:hover {
  color: var(--primary);
}

/* Right Side: Form Wrapper */
.ag-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.ag-form-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--dark);
  margin: 0 0 10px;
}

.ag-form-subtitle {
  color: var(--text-light);
  font-size: var(--fs-sm);
  margin-bottom: 30px;
}

/* Form Placeholder Styling */
.ag-placeholder-box {
  background: var(--cream);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
}

.ag-placeholder-box svg {
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0.5;
}

.ag-placeholder-box p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* --- 3. Map Section --- */
.ag-contact-map {
  padding: 0 0 80px;
  background: var(--cream);
}

.ag-map-placeholder {
  width: 100%;
  height: 400px;
  background: #e9ecef;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.ag-map-content {
  text-align: center;
  color: var(--text-light);
  z-index: 1;
}

.ag-map-content svg {
  color: var(--primary);
  margin-bottom: 15px;
  opacity: 0.3;
}

.ag-map-content h3 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin: 0 0 10px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .grid-2-col { grid-template-columns: 1fr; gap: 40px; }
  .ag-form-wrapper { padding: 30px; }
}

@media (max-width: 768px) {
  .ag-contact-hero { padding: 80px 0 60px; }
  .ag-info-card { flex-direction: column; gap: 15px; }
  .ag-form-wrapper { padding: 25px; }
}

