/*--------------------------------------------------------------------------------------
Theme Name: hairtransplantclinic
Theme URI: 
Author URI: 
Description: 
Author: Vijendra
Version: 
----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
:root{
  --primary:#7a1e5c;
  --secondary:#d9a7c7;
  --light:#f7f5f6;
  --dark:#2b2b2b;
}

/* ================= GLOBAL ================= */
*{
  box-sizing:border-box;
}

body{
  font-family:"Segoe UI", sans-serif;
  margin:0;
  color:var(--dark);
  line-height:1.6;
}

h1,h2,h3,h4{
  margin:0 0 12px;
}

h2{
  color:var(--primary);
}

.center{text-align:center;}

.section{
  padding:70px 0;
}

.light{
  background:var(--light);
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary{
  display:inline-block;
  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
}

.btn-secondary{
  background:var(--secondary);
  color:#000;
}


/* ================= HEADER ================= */
.site-header{
  background:#fff;
  position:sticky;
  top:0;
  padding: 10px 0;
  z-index:100;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee__group {
  display: inline-block;
  animation: marqueeScroll 15s linear infinite;
}

.MarqueeContainer {
    margin-top: -10px;
    margin-bottom: -10px;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--borders {
  padding-block: 20px;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: 20s / -1);
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo img{
  max-height:50px;
}

.nav ul{
  display:flex;
  list-style:none;
  gap:22px;
  padding:0;
  margin:0;
}

.nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.menu-toggle{
  display:none;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:25px;
  height:3px;
  background:#333;
  margin:5px 0;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  color:#fff;
  padding:100px 0;
  background-size:cover;
  background-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.hero-content h1{
  font-size:40px;
  line-height:1.2;
}

.hero-content h2{
  color:#fff;
  font-weight:400;
}

.hero-form{
  background:#fff;
  padding:28px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.hero-form h3{
  color:var(--primary);
  text-align:center;
}

.hero-form input,
.hero-form select,
.hero-form button{
  width:100%;
  margin-bottom:14px;
  padding:12px;
  border-radius:6px;
  border:1px solid #7a1e5c;
  font-size:14px;
}

.hero-form button{
  background:var(--primary);
  color:#fff;
  border:none;
  font-weight:600;
  cursor:pointer;
}

/* ================= ABOUT ================= */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:center;
}

.about-grid img{
  width:100%;
  border-radius:12px;
}

/* About Section Video */
.video-about {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.fue-description{
  max-width: 920px;
  margin: 15px auto 40px;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}


/* ================= VIDEOS ================= */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

.video-card{
  background:#fff;
  padding:15px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.video-card video{
  width:100%;
  border-radius:10px;
}

.video-card h4{
  margin-top:12px;
  font-size:16px;
  color:var(--primary);
  text-align:center;
}

/* ================= FUE FEATURES ================= */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:40px;
}

.feature-box{
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-box img{
  width:80px;
  margin-bottom:15px;
}

/* ================= PRICING ================= */
.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:40px;
  align-items:center;
}

.pricing-grid img{
  width:100%;
  border-radius:12px;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}

th,td{
  padding:10px;
  text-align:center;
  border-bottom:1px solid #eee;
}

th{
  background:var(--primary);
  color:#fff;
}

/* ================= COMPARISON ================= */
.compare-table{
  width:100%;
  margin-top:30px;
}

.compare-table th{
  background:var(--primary);
  color:#fff;
}

.compare-table td{
  background:#fff;
}

/* ================= RISK VS ASSURANCE ================= */
.compare-risk{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:40px;
}

.compare-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.compare-card h3{
  background:var(--primary);
  color:#fff;
  padding:16px;
}

.compare-list{
  padding:0;
  margin:0;
}

.compare-list li{
  list-style:none;
  padding:14px 18px;
  border-bottom:1px solid #eee;
}

/* ================= COST TABLE ================= */
.cost-table{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:30px;
}

.cost-table div{
    padding: 14px;
    background: #762865;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
}

.cost-head{
  background:var(--primary);
  color:#fff;
  font-weight:600;
}

.cost-btn{
  background:var(--primary);
  color:#fff;
  cursor:pointer;
}
/* COST SECTION */
.cost-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cost-section .highlight {
  color: var(--primary);
}

.sub-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}
/* PRICING LAYOUT FIX */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* IMAGE */
.pricing-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TABLE */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-table th {
  background: var(--primary);
  color: #fff;
  padding: 6px;
  text-align: left;
}

.pricing-table td {
  border-bottom: 1px solid #eee;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table table {
    font-size: 14px;
  }
}


/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

/* HEADERS */
.pricing-head {
  padding: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: #e7bfd6;
}

.pricing-head.gray {
  background: #e0e0e0;
}

.pricing-head.pink {
  background: #ddb0c9;
}

.pricing-head.dark {
  background: var(--primary);
  color: #fff;
}

/* CELLS */
.pricing-cell {
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
}

.pricing-cell.pink {
  background: #ddb0c9;
}

.pricing-cell.gray {
  background: #e0e0e0;
}

.pricing-cell.dark {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.price-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.price-btn:hover {
  background: var(--secondary);
}

/* MOBILE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    display: none;
  }

  .pricing-cell {
    text-align: center;
  }
}

/* ================= FAQ SECTION ================= */
.faq-wrapper{
  max-width:900px;
  margin:40px auto 0;
}

.faq-item{
  background:#fff;
  border-radius:12px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:18px 20px;
  background:none;
  border:none;
  outline:none;
  font-size:16px;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--primary);
}

.faq-question span{
  font-size:22px;
  transition:transform .3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding:0 20px;
}

.faq-answer p{
  padding-bottom:20px;
  margin:0;
  color:#444;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}
/* GOOGLE REVIEWS */
.review-carousel{
  overflow:hidden;
  margin-top:40px;
  position:relative;
}

.review-track{
  display:flex;
  gap:25px;
  animation: scrollReviews 10s linear infinite;
}

.review-card{
  min-width:320px;
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:left;
}

.review-text{
  font-style:italic;
  line-height:1.6;
  margin-bottom:15px;
}

.review-card h4{
  margin:0;
  color:var(--primary);
  font-size:16px;
}

.review-card span{
  color:#f4b400;
  font-size:18px;
}

/* Auto Scroll Animation */
@keyframes scrollReviews{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* Pause on Hover */
.review-carousel:hover .review-track{
  animation-play-state: paused;
}


/* ================= FOOTER ================= */
.footer{
  background:#111;
  color:#fff;
  padding:40px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.footer h4{
  margin-bottom:10px;
}

.copyright{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  opacity:.8;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .hero-grid,
  .about-grid,
  .feature-grid,
  .pricing-grid,
  .compare-risk,
  .cost-table,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:32px;
  }

  .nav{
    display:none;
    position:absolute;
    top:70px;
    right:20px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
  }

  .nav.active{
    display:block;
  }

  .nav ul{
    flex-direction:column;
    gap:15px;
  }

  .menu-toggle{
    display:block;
  }
}

#responsive-form{
	max-width:600px /*-- change this to get your desired form width --*/;
	margin:0 auto;
    width:100%;
}
.form-row{
	width: 100%;
}
.column-half{
	float: left;
	position: relative;
	padding: 0.35rem;
	width:50%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.column-third-half {
    float: left;
    position: relative;
    padding: 0.35rem;
    width: 33%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.column-full{
	float: left;
	position: relative;
	padding: 0.65rem;
	width:100%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.wpcf7 input[type="text"], .wpcf7 input[type="email"],.wpcf7 input[type="tel"],.wpcf7-select {
   background-color: #fff;
   height: 40px;
   text-align: left;
   padding-left: 15px;
   width: 100%;
   padding: 8px;
   border: 1px solid #7a1e5c;
   border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
   box-sizing: border-box
}
.wpcf7 textarea {
	background-color: #fff;
    height: 130px;
    text-align: left;
    padding-left: 15px;
	width: 100%;
	padding: 8px;
	border: 1px solid #7a1e5c;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	 box-sizing: border-box
}
.wpcf7 input[type="text"]:focus{
	background: #fff;
}
.wpcf7-submit {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 5px 50px 5px 50px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 0px;
    letter-spacing: 1px;
    background-color: #7a1e5c;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    cursor: pointer !important;
    border: 2px solid transparent;
    border-radius: 50rem!important;
    box-shadow: 0px 0px 6px 4px #ccc;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #7a1e5c;
    color: #ffffff;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    color: #000;
}
span.wpcf7-not-valid-tip{
	text-shadow: none;
	font-size: 12px;
	color: #fff;
	background: #7a1e5c;
	padding: 5px;
}
div.wpcf7-validation-errors { 
	text-shadow: none;
	border: transparent;
	background: #f9cd00;
	padding: 5px;
	color: #fff;
	text-align: center;
	margin: 0;
	font-size: 12px;
}
div.wpcf7-mail-sent-ok{
	text-align: center;
	text-shadow: none;
	padding: 5px;
	font-size: 12px;
	background: #59a80f;
	border-color: #59a80f;
	color: #fff;
	margin: 0;
}
input#um-submit-btn {
    background: #7a1e5c;
}
.arrow {
  border: solid #45c545;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .btn-primary {
        padding: 8px 8px;
        font-size: 16px;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .btn-primary {
        font-size: 14px;
        padding: 8px 5px;
        width: 100%;
        text-align: center;
    }
}


.top-emi-bar {
  width: 100%;
  background: var(--primary);
  overflow: hidden;
}

.emi-headline {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 10px 0;
  animation: headline-move 10s linear infinite;
}

/* LEFT ➜ RIGHT HEADLINE STYLE */
@keyframes headline-move {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}


/* ================== Enhanced EMI Modal Styles ================== */
.emi-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.emi-modal-content {
  background: #fff;
  padding: 45px 30px;
  border-radius: 12px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  animation: slideDown 0.6s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.emi-modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #7a1e5c;
  line-height: 1.3;
}

.emi-modal-content input {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: 0.3s;
}

.emi-modal-content input:focus {
  border-color: #7a1e5c;
  box-shadow: 0 0 5px rgba(122, 30, 92, 0.5);
  outline: none;
}

.emi-modal-content button {
  background: #7a1e5c;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: none;
  padding: 14px 0;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(122, 30, 92, 0.4);
}

.emi-modal-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 30, 92, 0.5);
}

.emi-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  color: #7a1e5c;
  cursor: pointer;
  transition: 0.3s;
}

.emi-close:hover {
  color: #4e1340;
}

#emiFormMessage {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #7a1e5c;
}

/* Base */
.short-thumb {
  position: relative;
}

/* Video cards */
.short-thumb.video-item {
  cursor: pointer;
}

/* Image cards – completely disabled */
.short-thumb.image-item {
  pointer-events: none;
  cursor: default;
}

/* Play button */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
}

/* Safety */
.short-thumb.image-item .play-btn {
  display: none;
}
.cf7-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cf7-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cf7-modal-content {
  position: relative;
  max-width: 520px;
  margin: 6% auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  z-index: 2;
}

/* Close button */
.cf7-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 480px) {
  .cf7-modal {
    margin-top: 150px;
  }
	.cf7-modal-overlay{
		margin: -200px;
	}
}
.alert-line{
	background: #7a1e5c;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 2px;
	color: white;
	text-align: center
}
.alert-line p{
	font-size: 20px;
}
/* Desktop only */
.d-alert {
  display: block;
}

/* Mobile only */
.m-alert {
  display: none;
}

/* Mobile view */
@media (max-width: 767px) {
  .d-alert {
    display: none;
  }

  .m-alert {
    display: block;
  }
}
