
/* assets/style.css - Nexlora Salon Dark Theme */
*{box-sizing:border-box}
body{margin:0;font-family:'Poppins',sans-serif;background:#050505;color:#e6e6e6}
.container{width:92%;max-width:1200px;margin:0 auto}
.header{position:fixed;top:0;left:0;right:0;background:linear-gradient(90deg,#0b0b0b,#151515);padding:14px 0;z-index:999;box-shadow:0 2px 12px rgba(0,0,0,0.6)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:15px}
.logo a{color:#fff;text-decoration:none;font-weight:700;font-size:22px}
.logo span{color:#e91e63}
.navbar a{color:#bfbfbf;margin:0 12px;text-decoration:none;font-weight:500}
.navbar a:hover{color:#fff}
.header-buttons{display:flex;gap:10px;align-items:center}
.btn{display:inline-block;padding:9px 14px;border-radius:8px;text-decoration:none;font-weight:600}
.btn-call{background:#e91e63;color:#fff}
.btn-call-2{background:transparent;border:1px solid rgba(255,255,255,0.08);color:#fff}
.hamburger{display:none;color:#fff;font-size:22px;cursor:pointer}

/* hero */
.hero{background:#0b0b0b url('/assets/images/mainbanner.jpg') center/cover no-repeat;padding:140px 0;text-align:center;border-bottom:1px solid rgba(255,255,255,0.03)}
.hero h1{font-size:40px;margin:0 0 10px;color:#fff}
.hero p{color:#cfcfcf;margin:0 0 18px}

/* sections */
.section{padding:60px 0}
.section h2{text-align:center;color:#fff;margin-bottom:28px;font-size:28px}

/* services grid */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1100px;margin:0 auto}
.service-card{background:linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0.01));padding:22px;border-radius:12px;text-align:center}
.service-card .icon{font-size:40px;color:#e91e63;margin-bottom:12px}
.service-card h3{color:#fff;margin-bottom:10px}
.service-card p{color:#cfcfcf}

/* team */
.team-grid{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.team-card{background:#0b0b0b;padding:16px;border-radius:8px;text-align:center;width:200px}
.team-card img{width:100%;border-radius:8px;margin-bottom:10px}

/* contact */
.contact-wrap{display:flex;gap:30px;flex-wrap:wrap;align-items:flex-start}
.contact-left{flex:1;min-width:280px}
.contact-right{flex:1;min-width:280px;background:#0b0b0b;padding:18px;border-radius:10px}
.contact-left .info{background:#0e0e0e;padding:14px;border-radius:8px;margin-bottom:12px}
.info i{color:#e91e63;margin-right:10px}

/* map */
.map{margin-top:20px;border-radius:8px;overflow:hidden}


/* newsletter */
.newsletter input{padding:10px;border-radius:6px;border:none;margin-right:8px;width:70%}
.newsletter button{padding:10px;border-radius:6px;border:none;background:#e91e63;color:#fff}

/* responsive */
@media(max-width:900px){.navbar{display:none}.hamburger{display:block}.services-grid{grid-template-columns:1fr 1fr}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.services-grid{grid-template-columns:1fr}.header-buttons{display:none}.footer-grid{grid-template-columns:1fr}}

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.service-card .icon {
  font-size: 40px;
  color: #e91e63;
  margin-bottom: 12px;
}

.service-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
  .services-grid-2 {
    grid-template-columns: 1fr;
  }
}
/* ABOUT SECTION */
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-left img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.about-right h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.about-right p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 16px;
}

/* WHY SECTION */
.why-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.why-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.why-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}

.why-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.02);
}

.why-box i {
  font-size: 26px;
  color: #e91e63;
  margin-top: 4px;
}

.why-box h3 {
  color: #fff;
  margin: 0;
}

.why-box p {
  color: #cfcfcf;
  margin: 3px 0 0 0;
}.about-right {
  width: 50%;
}.about-left {
  width: 50%;
}
.about-right h2 {
  text-align: left;
  margin: 0;
}
/* RESPONSIVE */
@media(max-width: 900px) {
  .about-section,
  .why-section {
    flex-direction: column;
  }
}
.testimonial-section h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 35px;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(233,30,99,0.25);
}

.testimonial-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #e91e63;
}

.testimonial-card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}

.testimonial-card p {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 15px;
  margin-top: 14px;
}

.stars i {
  color: #e91e63;
  margin-right: 2px;
  font-size: 16px;
}

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

@media(max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-section h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

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

.price-card {
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
  position: relative;
  box-shadow: 0 0 14px rgba(0,0,0,0.5);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(233,30,99,0.25);
}

.price-card.active {
  border: 1px solid #e91e63;
  background: rgba(233,30,99,0.08);
  transform: scale(1.02);
}

.best-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #e91e63;
  padding: 5px 12px;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #fff;
}

.price-card .price {
  font-size: 40px;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .tagline {
  color: #cfcfcf;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.features li {
  color: #cfcfcf;
  margin-bottom: 12px;
  font-size: 15px;
}

.features i {
  color: #e91e63;
  margin-right: 8px;
}

.btn-price {
  background: #e91e63;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-price:hover {
  background: #ff4081;
}

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

@media(max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact Section */
.contact-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 20px;
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
  text-align: left;
}

.contact-left p {
  color: #cfcfcf;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Contact Details */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.contact-detail i {
  font-size: 26px;
  color: #e91e63;
}

.contact-detail h4 {
  color: #fff;
  margin: 0 0 3px 0;
}

.contact-detail p {
  color: #cfcfcf;
  font-size: 15px;
  margin: 0;
}

/* Right Side Form */
.contact-right {
  flex: 1;
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.contact-right h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

/* Form Styling */
.form-row {
  margin-bottom: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.contact-right textarea {
  height: 120px;
  resize: none;
}

/* Placeholder same font */
.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #bfbfbf;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.btn-contact {
  background: #e91e63;
  color: #fff;
  padding: 12px 26px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-contact:hover {
  background: #ff4081;
}

/* Responsive */
@media(max-width: 900px) {
  .contact-section {
    flex-direction: column;
  }
}

/* ===========================
   PREMIUM FOOTER
=========================== */

.footer {
  background: #0a0a0a;
  padding: 60px 0 25px;
  color: #cfcfcf;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.footer-logo span {
  color: #e91e63;
}

.footer-desc {
  color: #bdbdbd;
  line-height: 1.6;
  margin: 12px 0 18px;
}

.footer-info p {
  margin-bottom: 10px;
}
.footer-info i {
  color: #e91e63;
  margin-right: 8px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #e91e63;
  padding-left: 5px;
}

/* Social Icons */
.footer-socials a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #e91e63;
  transform: translateY(-4px);
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  margin-top: 12px;
}
.footer-newsletter input {
  padding: 12px;
  width: 75%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 15px;
}
.footer-newsletter input::placeholder {
  color: #bbbbbb;
}
.footer-newsletter button {
  width: 50px;
  background: #e91e63;
  border: none;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s;
}
.footer-newsletter button:hover {
  background: #ff2e7a;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 25px 0;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 14px;
}

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

@media(max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CALL TO ACTION SECTION
=========================== */

.cta-section {
  background: linear-gradient(90deg, rgba(233,30,99,0.15), rgba(255,255,255,0.05));
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-section p {
  font-size: 17px;
  color: #cfcfcf;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-btn {
  background: #e91e63;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 0 18px rgba(233,30,99,0.4);
}

.cta-btn:hover {
  background: #ff2e7a;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 600px) {
  .cta-section h2 {
    font-size: 26px;
  }
  .hero {
  padding: 80px 0;}
  .about-left, .about-right{width:100%;}
  
  .why-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 0;
  padding-top: 0;
}
  
  .cta-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}


