/* ===========================
Google Fonts
=========================== */

:root {

  --primary: #D4AF37;
  --secondary: #111111;
  --white: #ffffff;
  --text: #6c757d;
  --bg: #f8f8f8;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {

  scroll-behavior: smooth;

}

html,
body {

  overflow-x: hidden;

}

body {

  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--secondary);
  overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: 'Playfair Display', serif;
  font-weight: 700;

}

a {

  text-decoration: none;

}

ul {

  list-style: none;
  margin: 0;
  padding: 0;

}

img {

  width: 100%;
  display: block;

}

.section-padding {

  padding: 100px 0;

}

/*=========================
        Navbar
=========================*/

.custom-navbar {

  padding: 18px 0;
  transition: .4s;

}

.custom-navbar.scrolled {

  background: rgba(17, 17, 17, .88);

  backdrop-filter: blur(18px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);

  padding: 12px 0;

}

.logo {

  font-size: 34px;

  font-family: 'Playfair Display', serif;

  color: #fff;

  font-weight: 700;

}

.logo span {

  color: var(--primary);

}

.nav-link {

  color: #fff;

  margin-left: 20px;

  font-weight: 500;

  position: relative;

  transition: .35s;

}

.navbar-nav .nav-link.active {

  color: #fff !important;

}

.nav-link:hover {

  color: var(--primary);

}

.nav-link::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: .35s;

}

.nav-link:hover::after,

.nav-link.active::after {

  width: 100%;

}

.theme-btn {

  background: var(--primary);

  color: #111;

  padding: 14px 30px;

  border-radius: 50px;

  font-weight: 600;

  transition: .35s;

  display: inline-block;

}

.theme-btn:hover {

  transform: translateY(-3px);

  background: #fff;

  color: #111;

}

.navbar-toggler {

  color: #fff;

  font-size: 34px;

}

.offcanvas {

  background: #111;

}

.mobile-nav li {

  margin: 18px 0;

}

.mobile-nav a {

  color: #fff;

  font-size: 18px;

}

/*=========================
        Hero
=========================*/

.hero {

  position: relative;

  min-height: 100vh;

  background: url("../assets/salon-img01.jpg") center center/cover no-repeat;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 0, 0, .75),
      rgba(0, 0, 0, .35));

}

.hero .container {

  position: relative;

  z-index: 2;

}

.hero-tag {

  display: inline-block;

  background: rgba(212, 175, 55, .15);

  color: var(--primary);

  padding: 10px 20px;

  border: 1px solid rgba(212, 175, 55, .4);

  border-radius: 40px;

  margin-bottom: 25px;

}

.hero h1 {

  color: #fff;

  font-size: 72px;

  line-height: 1.1;

  margin-bottom: 25px;

}

.hero p {

  color: #ddd;

  font-size: 18px;

  line-height: 1.8;

  max-width: 650px;

  margin-bottom: 40px;

}

.hero-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}

.outline-btn {

  color: #fff;

  border: 2px solid #fff;

  padding: 14px 32px;

  border-radius: 50px;

  transition: .4s;

}

.outline-btn:hover {

  background: #fff;

  color: #111;

}

.hero-rating {

  margin-top: 35px;

  color: #fff;

  font-size: 18px;

}

.hero-rating span {

  margin-left: 12px;

  color: #ddd;

}

.scroll-down {

  position: absolute;

  left: 50%;

  bottom: 35px;

  transform: translateX(-50%);

  color: #fff;

  font-size: 32px;

  animation: float 2s infinite;

}

@keyframes float {

  0%,
  100% {

    transform: translate(-50%, 0);

  }

  50% {

    transform: translate(-50%, 12px);

  }

}

@media(max-width:991px) {

  .hero h1 {

    font-size: 52px;

  }

}

@media(max-width:767px) {

  .hero {

    text-align: center;

  }

  .hero-buttons {

    justify-content: center;

  }

  .hero h1 {

    font-size: 40px;

  }

  .hero p {

    font-size: 16px;

  }

  .hero-rating {

    font-size: 16px;

  }

}

/*=========================
        About
=========================*/

.about {

  background: #fff;

}

.about-image {

  position: relative;

  border-radius: 25px;

  overflow: hidden;

}

.about-image img {

  border-radius: 25px;

  transition: .5s;

}

.about-image:hover img {

  transform: scale(1.05);

}

.experience-card {

  position: absolute;

  right: 30px;

  bottom: 30px;

  background: #111;

  color: #fff;

  padding: 25px;

  border-left: 5px solid var(--primary);

  border-radius: 18px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);

}

.experience-card h2 {

  font-size: 48px;

  margin-bottom: 5px;

  color: var(--primary);

}

.experience-card p {

  margin: 0;

  font-size: 15px;

}

.section-subtitle {

  display: inline-block;

  color: var(--primary);

  font-weight: 600;

  letter-spacing: 2px;

  margin-bottom: 20px;

}

.section-title {

  font-size: 50px;

  margin-bottom: 25px;

  line-height: 1.2;

}

.about-text {

  font-size: 17px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 35px;

}

.about-list {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

}

.about-list div {

  display: flex;

  align-items: center;

  font-weight: 500;

}

.about-list i {

  color: var(--primary);

  font-size: 20px;

  margin-right: 12px;

}

@media(max-width:768px) {

  .section-title {

    font-size: 36px;

  }

  .about-list {

    grid-template-columns: 1fr;

  }

  .experience-card {

    right: 15px;

    bottom: 15px;

    padding: 18px;

  }

}

/*=========================
        Stats
=========================*/

.stats-section {

  background: #111;

  padding: 90px 0;

}

.stat-card {

  text-align: center;

  padding: 45px 25px;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 22px;

  background: rgba(255, 255, 255, .03);

  backdrop-filter: blur(10px);

  transition: .4s;

  height: 100%;

}

.stat-card:hover {

  transform: translateY(-10px);

  border-color: var(--primary);

  box-shadow: 0 20px 45px rgba(212, 175, 55, .15);

}

.stat-card i {

  font-size: 48px;

  color: var(--primary);

  margin-bottom: 20px;

}

.stat-card h2 {

  color: #fff;

  font-size: 48px;

  margin-bottom: 10px;

}

.stat-card span {

  font-size: 24px;

}

.stat-card p {

  color: #bbb;

  margin: 0;

  font-size: 17px;

}

/*=========================
      Services
=========================*/

.services {

  background: #f8f8f8;

}

.service-box {

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  height: 500px;

  cursor: pointer;

}

.service-box img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .6s;

}

.service-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 35px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, .88),
      rgba(0, 0, 0, .15));

  transition: .5s;

}

.service-overlay span {

  color: var(--primary);

  font-size: 14px;

  letter-spacing: 1px;

  margin-bottom: 10px;

}

.service-overlay h3 {

  color: #fff;

  margin-bottom: 15px;

}

.service-overlay p {

  color: #ddd;

  line-height: 1.8;

}

.service-overlay a {

  color: #fff;

  font-weight: 600;

  margin-top: 15px;

  transition: .4s;

}

.service-overlay a i {

  margin-left: 8px;

  transition: .4s;

}

.service-box:hover img {

  transform: scale(1.12);

}

.service-box:hover {

  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}

.service-box:hover a {

  color: var(--primary);

}

.service-box:hover a i {

  transform: translateX(8px);

}

/*=========================
      Gallery
=========================*/

.gallery {

  background: #fff;

}

.gallery-filter {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-bottom: 60px;

}

.gallery-filter button {

  border: none;

  padding: 12px 28px;

  border-radius: 50px;

  background: #f3f3f3;

  transition: .4s;

  font-weight: 600;

}

.gallery-filter button.active,

.gallery-filter button:hover {

  background: var(--primary);

  color: #111;

}

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

}

.gallery-card {

  position: relative;

  overflow: hidden;

  border-radius: 22px;

  height: 320px;

}

.gallery-card.large {

  height: 420px;

}

.gallery-card.wide {

  grid-column: span 2;

}

.gallery-card img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .6s;

}

.gallery-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top,
      rgba(0, 0, 0, .65),
      transparent);

  opacity: 0;

  transition: .4s;

}

.gallery-card::after {

  content: "+";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%) scale(.7);

  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: var(--primary);

  color: #111;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 35px;

  opacity: 0;

  transition: .4s;

}

.gallery-card:hover img {

  transform: scale(1.12);

}

.gallery-card:hover::before,

.gallery-card:hover::after {

  opacity: 1;

}

.gallery-card:hover::after {

  transform: translate(-50%, -50%) scale(1);

}

@media(max-width:991px) {

  .gallery-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .gallery-card.wide {

    grid-column: span 2;

  }

}

@media(max-width:767px) {

  .gallery-grid {

    grid-template-columns: 1fr;

  }

  .gallery-card,

  .gallery-card.large,

  .gallery-card.wide {

    height: 300px;

    grid-column: span 1;

  }

}

/*=========================
        Team
=========================*/

.team {

  background: #111;

}

.team .section-title,
.team .section-text {

  color: #fff;

}

.team-card {

  background: #1b1b1b;

  border-radius: 22px;

  overflow: hidden;

  transition: .4s;

  height: 100%;

}

.team-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 20px 40px rgba(212, 175, 55, .12);

}

.team-image {

  position: relative;

  overflow: hidden;

}

.team-image img {

  width: 100%;

  height: 350px;

  object-fit: cover;

  transition: .6s;

}

.team-card:hover img {

  transform: scale(1.08);

}

.team-social {

  position: absolute;

  bottom: -70px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 10px;

  transition: .4s;

}

.team-card:hover .team-social {

  bottom: 20px;

}

.team-social a {

  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: var(--primary);

  color: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

}

.team-content {

  padding: 30px;

  text-align: center;

}

.team-content h4 {

  color: #fff;

  margin-bottom: 10px;

}

.team-content span {

  color: var(--primary);

  display: block;

  margin-bottom: 12px;

}

.team-content p {

  color: #aaa;

  margin: 0;

}

/*=========================
      Why Choose Us
=========================*/

.why-us {

  background: #f8f8f8;

}

.why-image {

  overflow: hidden;

  border-radius: 25px;

}

.why-image img {

  width: 100%;

  border-radius: 25px;

  transition: .6s;

}

.why-image:hover img {

  transform: scale(1.08);

}

.feature-box {

  display: flex;

  gap: 20px;

  background: #fff;

  padding: 25px;

  border-radius: 18px;

  margin-top: 25px;

  transition: .4s;

  border: 1px solid #eee;

}

.feature-box:hover {

  transform: translateX(10px);

  border-color: var(--primary);

  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.feature-icon {

  min-width: 70px;

  height: 70px;

  border-radius: 50%;

  background: var(--primary);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  color: #111;

}

.feature-box h5 {

  margin-bottom: 10px;

}

.feature-box p {

  margin: 0;

  color: #666;

}

/*=========================
      Pricing
=========================*/

.pricing {

  background: #111;

}

.pricing .section-title,

.pricing .section-text {

  color: #fff;

}

.pricing-card {

  position: relative;

  background: #1b1b1b;

  padding: 45px;

  border-radius: 22px;

  transition: .4s;

  border: 1px solid rgba(255, 255, 255, .08);

  height: 100%;

}

.pricing-card:hover {

  transform: translateY(-12px);

  border-color: var(--primary);

}

.active-plan {

  border: 2px solid var(--primary);

  transform: scale(1.05);

}

.popular-badge {

  position: absolute;

  top: -15px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--primary);

  color: #111;

  padding: 8px 20px;

  border-radius: 30px;

  font-weight: 600;

}

.pricing-card h5 {

  color: #fff;

}

.pricing-card h2 {

  color: var(--primary);

  font-size: 55px;

  margin: 20px 0;

}

.pricing-card span {

  color: #bbb;

}

.pricing-card ul {

  margin: 35px 0;

}

.pricing-card ul li {

  color: #ddd;

  margin-bottom: 15px;

}

.pricing-card ul i {

  color: var(--primary);

  margin-right: 10px;

}

/*=========================
    Testimonials
=========================*/

.testimonials {

  background: #f8f8f8;

}

.testimonial-card {

  background: rgba(255, 255, 255, .7);

  backdrop-filter: blur(15px);

  padding: 40px;

  border-radius: 22px;

  border: 1px solid rgba(0, 0, 0, .08);

  transition: .4s;

  height: 100%;

}

.testimonial-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.stars {

  color: #D4AF37;

  font-size: 22px;

  margin-bottom: 20px;

}

.testimonial-card p {

  color: #666;

  line-height: 1.9;

}

.client {

  display: flex;

  align-items: center;

  margin-top: 30px;

}

.client img {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;

  margin-right: 18px;

}

.client h5 {

  margin: 0;

}

.client span {

  color: #888;

}

/*=========================
    Appointment CTA
=========================*/

.appointment-cta {

  position: relative;

  padding: 140px 0;

  background: url("../images/cta/cta-bg.jpg") center center/cover no-repeat;

  overflow: hidden;

}

.cta-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, .75);

}

.appointment-cta .container {

  position: relative;

  z-index: 2;

}

.appointment-cta h2 {

  color: #fff;

  font-size: 58px;

  margin: 20px 0;

}

.appointment-cta p {

  color: #ddd;

  line-height: 1.9;

  max-width: 720px;

  margin: 0 auto 40px;

}

.cta-buttons {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

}

.cta-buttons .outline-btn {

  border: 2px solid #fff;

  color: #fff;

  padding: 14px 34px;

  border-radius: 50px;

  transition: .4s;

}

.cta-buttons .outline-btn:hover {

  background: #fff;

  color: #111;

}

@media(max-width:768px) {

  .appointment-cta {

    padding: 100px 0;

  }

  .appointment-cta h2 {

    font-size: 38px;

  }

}

/*=========================
        FAQ
=========================*/

.faq {

  background: #fff;

}

.accordion-item {

  border: none;

  margin-bottom: 18px;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.accordion-button {

  padding: 25px;

  font-weight: 600;

}

.accordion-button:not(.collapsed) {

  background: var(--primary);

  color: #111;

}

.accordion-body {

  padding: 25px;

  line-height: 1.8;

  color: #666;

}

/*=========================
      Instagram
=========================*/

.instagram {

  background: #fff;

}

.instagram-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}

.instagram-item {

  position: relative;

  overflow: hidden;

  border-radius: 18px;

  display: block;

}

.instagram-item img {

  width: 100%;

  height: 300px;

  object-fit: cover;

  transition: .5s;

}

.instagram-overlay {

  position: absolute;

  inset: 0;

  background: rgba(212, 175, 55, .85);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  transition: .4s;

}

.instagram-overlay i {

  color: #111;

  font-size: 45px;

}

.instagram-item:hover img {

  transform: scale(1.12);

}

.instagram-item:hover .instagram-overlay {

  opacity: 1;

}

@media(max-width:991px) {

  .instagram-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:576px) {

  .instagram-grid {

    grid-template-columns: 1fr;

  }

  .instagram-item img {

    height: 260px;

  }

}

/*=========================
      Contact
=========================*/

.contact {

  background: #f8f8f8;

}

.contact-info {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.info-box {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 25px;

  background: #fff;

  border-radius: 18px;

  transition: .4s;

}

.info-box:hover {

  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.info-box i {

  font-size: 28px;

  color: var(--primary);

}

.contact-form {

  background: #fff;

  padding: 40px;

  border-radius: 20px;

}

.form-control {

  padding: 15px;

  border-radius: 12px;

  border: 1px solid #ddd;

  box-shadow: none !important;

}

.form-control:focus {

  border-color: var(--primary);

}

.map iframe {

  width: 100%;

  height: 450px;

  border: 0;

  border-radius: 20px;

}

/*=========================
      Footer
=========================*/

.footer {

  background: #111;

  padding: 90px 0 30px;

  color: #bbb;

}

.footer-logo {

  font-size: 38px;

  color: #fff;

}

.footer-logo span {

  color: var(--primary);

}

.footer h5 {

  color: #fff;

  margin-bottom: 25px;

}

.footer ul {

  padding: 0;

}

.footer li {

  margin-bottom: 12px;

}

.footer a {

  color: #bbb;

  transition: .3s;

}

.footer a:hover {

  color: var(--primary);

  padding-left: 5px;

}

.footer-social {

  display: flex;

  gap: 12px;

  margin-top: 30px;

}

.footer-social a {

  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: #222;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

}

.newsletter {

  display: flex;

  margin-top: 20px;

}

.newsletter input {

  flex: 1;

  padding: 14px;

  border: none;

  outline: none;

}

.newsletter button {

  background: var(--primary);

  border: none;

  padding: 0 22px;

  font-weight: 600;

}

.footer hr {

  margin: 50px 0 25px;

  border-color: #333;

}

.copyright {

  text-align: center;

  color: #888;

}

.back-top {

  position: fixed;

  right: 25px;

  bottom: 100px;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: #D4AF37;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #111;

  font-size: 22px;

  opacity: 0;

  visibility: hidden;

  transition: .4s;

  z-index: 999;

  box-shadow: 0 15px 30px rgba(0, 0, 0, .2);

}

.back-top.show {

  opacity: 1;

  visibility: visible;

}

.back-top:hover {

  transform: translateY(-6px);

}

.whatsapp {

  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 60px;
  height: 60px;

  background: #25D366;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;

  font-size: 30px;

  z-index: 9999;

  box-shadow: 0 15px 35px rgba(37, 211, 102, .35);

  transition: .4s;

}

.whatsapp:hover {

  transform: translateY(-6px);

}

@keyframes pulse {

  0% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.08);

  }

  100% {

    transform: scale(1);

  }

}

.whatsapp {

  animation: pulse 2s infinite;

}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}