* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;

  font-family: "Montserrat", sans-serif;
}

/* HEADER */

.side-nav {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 30;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 35px 45px;
}

.logo-box {
  width: 180px;

  height: 180px;

  display: flex;

  align-items: center;

  justify-content: center;
  border-radius: 50%;
  /* overflow: hidden; */
}

.logo-box img {
  width: 350px;

  height: 350px;

  object-fit: contain;


  display: block;
}

.menu-toggle {
  background: none;

  border: 0;

  cursor: pointer;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.menu-toggle span {
  display: block;

  width: 38px;

  height: 2px;

  background: #ffffff;
}

/* FULL SCREEN MENU */

.menu-overlay {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  z-index: 50;

  transform: translateX(100%);
  transition: 0.7s ease;
}

.menu-overlay.active {
  transform: translateX(0);
}

/* Background Video */

.menu-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity .8s linear;

  z-index: 0;
}

.video1 {
  opacity: 1;
}


/* Dark Overlay */

.menu-overlay::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  z-index: 1;
}

/* Content */

.menu-inner,
.close-menu {
  position: relative;
  z-index: 2;
}

.close-menu {
  position: absolute;

  right: 55px;

  top: 45px;

  width: 45px;

  height: 45px;

  background: none;

  border: 0;

  cursor: pointer;
}

.close-menu span {
  position: absolute;

  width: 45px;

  height: 2px;

  background: #d9aa78;

  left: 0;
}

.close-menu span:first-child {
  transform: rotate(45deg);
}

.close-menu span:last-child {
  transform: rotate(-45deg);
}

.menu-inner {
  text-align: center;

  color: #d9aa78;
}

.menu-logo {
  height: 120px;
}

nav {
  margin-top: 50px;

  display: flex;

  flex-direction: column;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #d9aa78;

  font-size: 25px;

  letter-spacing: 8px;
}

nav a.active:after {
  content: "";

  display: block;

  width: 50px;

  height: 2px;

  background: #d9aa78;

  margin: 10px auto;
}

.menu-social {
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-social a {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  border: 1px solid rgba(217, 170, 120, 0.35);
  border-radius: 50%;

  color: #d9aa78;
  font-size: 22px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);

  transition: all 0.35s ease;
}

.menu-social a:hover {
  background: #d9aa78;
  color: #050505;
  transform: translateY(-5px);
  border-color: #d9aa78;
}

@media (max-width: 768px) {
  .menu-social {
    bottom: 30px;
    gap: 14px;
  }

  .menu-social a {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}

/* HERO */

.hero {
  height: 100vh;

  position: relative;

  overflow: hidden;
}

.hero,
.swiper,
.swiper-slide,
.swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SERVICES DROPDOWN */

/* MOVING GLOW */

.shine {
  position: absolute;

  width: 100%;

  height: 550px;

  bottom: -300px;

  background: radial-gradient(circle,
      rgba(215, 170, 120, 0.25),
      transparent 65%);

  z-index: 3;

  animation: glow 6s infinite;
}

@keyframes glow {
  0% {
    bottom: -300px;
  }

  50% {
    bottom: 30%;
  }

  100% {
    bottom: 100%;
  }
}

.hero-content {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  text-align: center;

  color: #d9aa78;
}

.hero-content h1 {
  font-size: 70px;

  font-weight: 300;
  color: #ffffff;
  letter-spacing: 20px;
}

.line {
  width: 55px;

  height: 2px;

  background: #ffffff;

  margin: 35px auto;
}

.hero-content h3 {
  letter-spacing: 12px;
  color: #ffffff;
  font-weight: 400;
  background: #0000004d;
  padding: 10px;
  width: 350px;
  border-radius: 8px;
  margin: 0 auto;
}

.scroll-btn {
  margin-top: 140px;

  display: inline-block;

  cursor: pointer;

  animation: scrollMove 2s infinite;
}

.scroll-btn img {
  width: 70px;

  height: auto;

  display: block;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 35px;

    letter-spacing: 8px;
  }

  nav a {
    font-size: 18px;
  }

  .logo-box {
    width: 60px;

    height: 60px;
  }

  nav {


    gap: 20px;
  }
}

/* ABOUT SECTION */

.about-section {
  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

.about-container {
  max-width: 1200px;

  margin: auto;

  display: flex;

  /* align-items: center; */

  gap: 60px;

  position: relative;
}

/* IMAGE */

.about-image {
  width: 480px;

  height: 600px;

  position: relative;

  z-index: 2;
}

.about-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 0 0 120px 0;

  position: relative;

  z-index: 2;
}

.image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid #d9aa78;

  top: -30px;

  left: -30px;

  border-radius: 0 0 120px 0;
}

/* CONTENT */

.about-content {
  flex: 1;
}

.about-small {
  color: #b88c62;

  font-size: 18px;

  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 48px;

  font-weight: 300;

  margin: 15px 0;

  color: #222;
}

.about-line {
  width: 70px;

  height: 2px;

  background: #d9aa78;

  margin-bottom: 30px;
}

.about-content p {
  font-family: Georgia, serif;
  font-size: 17px;

  line-height: 1.5;

  color: #555;

  margin-bottom: 25px;
}

.read-btn {
  display: inline-block;

  margin-top: 20px;

  padding: 18px 45px;

  background: #171717;

  color: #d9aa78;

  text-decoration: none;

  letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;

    padding: 0 20px;
  }

  .about-shape {
    display: none;
  }

  .about-image {
    width: 100%;

    height: 450px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

/* BRAND LOGO MARQUEE */

.brand-section {
  width: 100%;

  background: #ffffff;

  overflow: hidden;


  border-top: 1px solid #ddd;

  border-bottom: 1px solid #ddd;
}

.brand-track {
  display: flex;

  align-items: center;

  width: max-content;

  animation: brandMove 25s linear infinite;
}

.brand-item {
  width: 300px;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 0 50px;

  flex-shrink: 0;
}

.brand-item img {
  width: 200px;

  height: auto;

  object-fit: contain;

  /* filter: grayscale(100%); */

  opacity: 0.9;
}

@keyframes brandMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* hover pause */

.brand-section:hover .brand-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .brand-item {
    width: 220px;

    padding: 0 30px;
  }

  .brand-item img {
    width: 150px;
  }
}

/* ================= SERVICES ================= */

.services-section {
  background: #fff;

  padding: 80px 0;

  overflow: hidden;
}

.services-header {
  max-width: 1400px;

  margin: auto;

  padding: 0 40px;

  margin-bottom: 50px;
}

.services-header h4 {
  font-size: 18px;

  letter-spacing: 6px;

  color: #c79a72;
}

.services-header h2 {
  font-size: 46px;

  font-weight: 300;

  line-height: 1.2;

  margin-top: 20px;

  color: #222;
}

.services-slider {
  max-width: 1400px;

  margin: auto;

  padding: 0 40px;
}

.service-card {
  height: 530px;

  position: relative;

  overflow: hidden;

  cursor: pointer;

  background: #111;
}

.service-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

/* dark overlay */

/* .service-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(88, 64, 11, 0.425), transparent);
} */

/* shine effect */

.service-card::before {
  content: "";

  position: absolute;

  top: -60%;

  left: -80%;

  width: 60%;

  height: 200%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: rotate(25deg);

  transition: 0.8s;

  z-index: 2;
}

.service-card:hover::before {
  left: 130%;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-content {
  position: absolute;

  bottom: 45px;

  left: 45px;

  z-index: 3;

  color: white;

  transition: 0.5s;
}

.service-card:hover .service-content {
  transform: translateY(-25px);
}

.small-line {
  width: 45px;

  height: 3px;

  background: #d9aa78;

  margin-bottom: 25px;
}

.service-content h3 {
  font-size: 30px;

  font-weight: 300;

  letter-spacing: 2px;

  line-height: 1.4;
}

/* arrows */

.service-prev,
.service-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: #171717;

  color: #d9aa78;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 5;

  cursor: pointer;
}

.service-prev {
  left: 20px;
}

.service-next {
  right: 20px;
}


@media (max-width: 768px) {
  .services-header h2 {
    font-size: 36px;
  }

  .service-card {
    height: 450px;
  }

  .service-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  .services-header h4 {
    font-size: 16px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .services-header {
    margin-bottom: 30px;
  }

}

/* ================= BOOKING SECTION ================= */

.booking-section {
  position: relative;

  padding: 90px 0;

  overflow: hidden;
}

/* BACKGROUND IMAGE */

.booking-bg {
  position: absolute;

  inset: 0;

  z-index: 0;
}

/* DARK OVERLAY */

.booking-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.747);

  z-index: 1;
}

/* CONTENT ABOVE BG */

.booking-container {
  max-width: 1440px;

  margin: auto;

  height: 640px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  z-index: 2;
}

/* LEFT IMAGE */

.booking-left-image {
  width: 360px;

  height: 480px;

  position: absolute;

  left: 0;

  bottom: 0;
}

.circle-image {
  width: 100%;

  height: 100%;

  border-radius: 50% 50% 0 0;

  overflow: hidden;

  border: 1px solid #222;
}

.circle-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* CENTER CONTENT */

.booking-content {
  width: 520px;

  text-align: center;

  z-index: 2;
}

.booking-content h2 {
  font-family: Georgia, serif;

  font-size: 52px;

  line-height: 1.12;

  font-weight: 400;

  color: #ffffff;

  margin-bottom: 25px;
}

.booking-content p {
  font-family: Georgia, serif;

  font-size: 19px;

  line-height: 1.7;

  color: #d8d8d8;

  margin-bottom: 35px;
}

.booking-btn {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  padding: 20px 45px;

  background: #d9aa78;

  color: #111;

  text-decoration: none;

  letter-spacing: 2px;

  font-size: 14px;

  transition: 0.4s;
  border: 1px solid #000000;
}

.booking-btn:hover {
  background: #111;
  border: 1px solid #d9aa78;
  color: #fff;
}

/* RIGHT IMAGE */

.booking-right-image {
  width: 440px;

  height: 440px;

  position: absolute;

  right: 0;

  top: 0;

  overflow: hidden;

  border-radius: 0 0 50% 50%;
}

.booking-right-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* DECORATIVE LINES */

.shape-top {
  position: absolute;

  top: 0;

  left: 80px;

  width: 130px;

  height: 80px;

  background: repeating-linear-gradient(135deg,
      transparent,
      transparent 12px,

      #e8a99c 13px,

      transparent 14px);
}

.shape-bottom {
  position: absolute;

  right: 30px;

  bottom: 30px;

  width: 160px;

  height: 100px;

  background: repeating-linear-gradient(135deg,
      transparent,
      transparent 12px,

      #e8a99c 13px,

      transparent 14px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .booking-container {
    height: auto;

    flex-direction: column;

    gap: 40px;

    padding: 40px 20px;
  }

  .booking-left-image,
  .booking-right-image {
    position: relative;

    width: 300px;

    height: 300px;

    left: auto;

    right: auto;

    top: auto;
  }

  .booking-content {
    width: 100%;
  }

  .booking-content h2 {
    font-size: 36px;
  }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
  background: #ffffff;

  padding: 80px 0;
}

.gallery-header {
  max-width: 1400px;

  margin: auto;

  padding: 0 40px;

  margin-bottom: 60px;
}

.gallery-header span {
  color: #c79a72;

  letter-spacing: 6px;

  font-size: 17px;
}

.gallery-header h2 {
  margin-top: 20px;

  font-size: 55px;

  font-weight: 300;

  line-height: 1.2;

  color: #222;
}

/* GRID */

.gallery-grid {
  max-width: 1400px;

  margin: auto;

  padding: 0 40px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.gallery-item {
  height: 400px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}


.gallery-item:hover img {
  transform: scale(1);
}

/* ================= GALLERY BUTTON ================= */

.gallery-btn-box {
  width: 100%;

  display: flex;

  justify-content: center;

  margin-top: 60px;
}

.gallery-btn {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  padding: 18px 45px;

  background: #171717;

  color: #d9aa78;

  text-decoration: none;

  font-size: 14px;

  letter-spacing: 3px;

  border: 1px solid #d9aa78;

  transition: 0.5s ease;
}

.gallery-btn i {
  font-size: 16px;

  transition: 0.4s;
}

.gallery-btn:hover {
  background: #d9aa78;

  color: #111;
}

.gallery-btn:hover i {
  transform: translateX(8px);
}

/* responsive */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;

    padding: 0 20px;
  }

  .gallery-header {
    padding: 0 20px;
  }

  .gallery-header h2 {
    font-size: 35px;
  }

  .gallery-item {
    height: 420px;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  position: relative;

  padding: 80px 0 30px;

  color: white;

  overflow: hidden;
}

/* BACKGROUND IMAGE */

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* DARK OVERLAY */

.footer-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.85);

  z-index: 1;
}

.footer-container {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;

  gap: 60px;

  position: relative;

  z-index: 2;
}

/* LOGO */

.footer-logo {
  width: 180px;

  height: 150px;
}

.footer-logo img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.footer-about p {
  margin-top: 25px;

  max-width: 300px;

  color: #ddd;

  line-height: 1.7;

  font-size: 15px;
}

/* TITLES */

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;

  font-weight: 400;

  margin-bottom: 25px;

  color: #ffffff;

  position: relative;

  padding-left: 15px;
}

.footer-links h3::before,
.footer-contact h3::before {
  content: "";

  position: absolute;

  left: 0;

  top: 3px;

  width: 3px;

  height: 18px;

  background: #d9aa78;
}

.footer-links a {
  display: block;

  text-decoration: none;

  color: #ddd;

  margin-bottom: 18px;

  font-size: 15px;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #d9aa78;

  padding-left: 8px;
}

/* CONTACT */

.footer-contact p {
  color: #ddd;

  font-size: 15px;

  line-height: 1.7;

  margin-bottom: 15px;
}

.footer-contact strong {
  color: #fff;
}

/* SOCIAL */

.social-icons {
  display: flex;

  gap: 25px;

  margin-top: 35px;
}

.social-icons a {
  color: #fff;

  font-size: 22px;

  transition: 0.3s;
}

.social-icons a:hover {
  color: #d9aa78;

  transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;

  max-width: 1200px;

  margin: 40px auto 0;

  padding-top: 35px;

  border-top: 1px solid rgba(255, 255, 255, 0.25);

  text-align: center;
}

.footer-bottom p {
  color: #ddd;

  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;

    padding: 0 25px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }

  .footer-links h3::before,
  .footer-contact h3::before {
    display: none;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-about p {
    margin: auto;
  }
}

/* =====================================================
   WHY US SECTION
   ABOUT PAGE ONLY
===================================================== */

.whyus-section {
  padding: 80px 0;

  background: #f7f5f1;

  overflow: hidden;
}

.whyus-wrapper {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.9fr 1fr;

  gap: 90px;

  align-items: center;

  padding: 0 20px;
}

/* LEFT */

.whyus-small-title {
  font-family: Georgia, serif;

  font-size: 14px;

  letter-spacing: 5px;

  color: #b58b60;

  display: block;

  margin-bottom: 25px;
}

.whyus-content h2 {
  font-family: Georgia, serif;

  font-size: 65px;

  font-weight: 300;

  line-height: 1.1;

  color: #51483f;

  margin: 0 0 35px;
}

.whyus-line {
  width: 90px;

  height: 2px;

  background: #c79a6b;

  margin-bottom: 35px;
}

.whyus-content p {
  font-family: Georgia, serif;

  font-size: 17px;

  line-height: 2;

  color: #555;

  margin-bottom: 20px;
}

.whyus-btn {
  display: inline-block;

  margin-top: 25px;

  padding: 17px 45px;

  background: #171717;

  border: 1px solid #c79a6b;

  color: #c79a6b;

  text-decoration: none;

  font-size: 13px;

  letter-spacing: 3px;

  transition: 0.5s;
}

.whyus-btn:hover {
  background: #c79a6b;

  color: #111;
}

/* CARDS */

.whyus-cards {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.whyus-card {
  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(10px);

  padding: 35px 30px;

  display: flex;
  flex-direction: column;
  gap: 25px;

  align-items: flex-start;

  border: 1px solid rgba(180, 140, 100, 0.25);

  transition: 0.5s;
}

.whyus-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.whyus-icon {
  width: 60px;

  height: 60px;

  min-width: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #c79a6b;

  color: white;

  font-size: 22px;
}

.whyus-card h3 {
  font-family: Georgia, serif;

  font-size: 22px;

  font-weight: 400;

  color: #332c26;

  margin: 0 0 12px;
}

.whyus-card p {
  font-family: Georgia, serif;

  font-size: 14px;

  line-height: 1.8;

  color: #666;

  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .whyus-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .whyus-content h2 {
    font-size: 45px;
  }
}

@media (max-width: 600px) {
  .whyus-cards {
    grid-template-columns: 1fr;
  }

  .whyus-card {
    padding: 25px;
  }

  .whyus-content h2 {
    font-size: 38px;
  }
}

/* -------------------------------------------------------------- About Page Ui Style -------------------------------------------------------------- */

/* =================================================
   ARTIST INTRO SECTION
   ABOUT PAGE ONLY
================================================= */

.artist-intro-section {
  padding: 80px 0;

  background: #f7f5f1;

  overflow: hidden;

  position: relative;
}

/* top brown area */

.artist-intro-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 350px;

  background: #5b5148;

  z-index: 0;
}

.artist-intro-wrapper {
  max-width: 1100px;

  margin: auto;

  position: relative;

  z-index: 2;

  text-align: center;
}

/* TITLE */

.artist-intro-title {
  position: relative;

  z-index: 3;

  margin-bottom: -70px;
}

.artist-intro-title span {
  font-family: Georgia, serif;

  font-size: 48px;

  font-weight: 300;

  letter-spacing: 5px;

  color: #eee7df;
}

/* IMAGE */

.artist-image-box {
  width: 450px;

  height: 520px;

  margin: auto;

  position: relative;
}

.artist-circle-bg {
  position: absolute;

  width: 390px;

  height: 390px;

  background: #ffc39873;

  border-radius: 50%;

  top: 0;

  left: 30px;

  animation: artistFloat 5s infinite ease-in-out;
}

.artist-frame {
  width: 450px;

  height: 470px;

  position: absolute;

  bottom: 0;

  overflow: hidden;

  z-index: 2;
}

.artist-frame img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  filter: brightness(0.95);

  transition: 0.8s;
}

.artist-frame:hover img {
  transform: scale(1.06);
}

/* floating dots */

.artist-dot {
  position: absolute;

  border-radius: 50%;

  background: #d9aa78;

  z-index: 3;
}

.dot-one {
  width: 65px;

  height: 65px;

  right: -80px;

  top: 150px;

  animation: artistFloat 3s infinite;
}

.dot-two {
  width: 108px;

  height: 108px;

  left: -80px;

  bottom: 100px;

  animation: artistFloat 4s infinite reverse;
}

/* CONTENT */

.artist-intro-content {
  max-width: 1050px;

  margin: 70px auto 0;
}

.artist-intro-content h3 {
  font-family: Georgia, serif;

  font-size: 22px;

  font-weight: 400;

  color: #222;

  margin-bottom: 25px;
}

.artist-intro-content p {
  font-family: Georgia, serif;

  font-size: 17px;

  line-height: 1.5;

  color: #444;

  margin-bottom: 18px;
}

.artist-contact-btn {
  display: inline-block;

  margin-top: 25px;

  padding: 18px 45px;

  background: #171717;

  color: #d9aa78;

  text-decoration: none;

  letter-spacing: 3px;

  font-size: 13px;

  border: 1px solid #d9aa78;

  transition: 0.5s;
}

.artist-contact-btn:hover {
  background: #d9aa78;

  color: #111;
}

/* animation */

@keyframes artistFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .artist-intro-title span {
    display: none;
  }

  .artist-image-box {
    width: 320px;

    height: 400px;
  }

  .artist-frame {
    width: 320px;

    height: 360px;
  }

  .artist-circle-bg {
    width: 280px;

    height: 280px;

    left: 20px;
  }

  .artist-intro-content {
    padding: 0 20px;
  }

  .artist-intro-content p {
    font-size: 16px;
  }
}

/* @media (max-width: 480px) {
  .artist-intro-title span {
    font-size: 28px;

    letter-spacing: 2px;
  }

} */

/* ===================================================
   LUXURY EXPERIENCE SECTION
   ABOUT PAGE ONLY
=================================================== */

.luxury-experience-section {
  padding: 60px 0;

  background: #f8f6f2;
}

.luxury-experience-wrapper {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 520px 1fr;

  gap: 100px;

  /* align-items: center; */
}

/* IMAGE */

.luxury-experience-image {
  height: 650px;

  position: relative;
}

.luxury-experience-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: relative;

  z-index: 2;
}

.luxury-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 1px solid #c9a46a;

  top: 25px;

  left: 25px;

  z-index: 1;
}

.luxury-number {
  position: absolute;

  bottom: -35px;

  right: -40px;

  width: 150px;

  height: 150px;

  background: #5b5148;

  color: #f4eee7;

  border-radius: 50%;

  z-index: 3;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  font-family: Georgia, serif;

  font-size: 55px;
}

.luxury-number span {
  font-size: 14px;

  letter-spacing: 3px;
}

/* CONTENT */

.luxury-small-title {
  font-size: 14px;

  letter-spacing: 6px;

  color: #b28a52;

  display: block;

  margin-bottom: 25px;
}

.luxury-experience-content h2 {
  font-family: Georgia, serif;

  font-size: 45px;

  font-weight: 300;

  line-height: 1.15;

  color: #29231f;

  margin: 0 0 35px;
}

.luxury-divider {
  width: 80px;

  height: 1px;

  background: #b28a52;

  margin-bottom: 35px;
}

.luxury-experience-content p {
  font-family: Georgia, serif;

  font-size: 17px;

  line-height: 1.4;

  color: #555;

  margin-bottom: 22px;
}

/* FEATURE */

.luxury-feature-box {
  display: flex;

  gap: 60px;

  margin-top: 45px;

  padding-top: 35px;

  border-top: 1px solid #ddd;
}

.luxury-feature-box div {
  display: flex;

  flex-direction: column;
}

.luxury-feature-box strong {
  font-family: Georgia, serif;

  font-size: 25px;

  font-weight: 400;

  color: #3b332d;
}

.luxury-feature-box span {
  font-size: 13px;

  letter-spacing: 2px;

  color: #8b8178;

  margin-top: 8px;
}

/* BRAND */

.luxury-brand-area {
  margin-top: 55px;
}

.luxury-brand-area span {
  font-family: cursive;

  font-size: 28px;

  color: #6b625b;
}

.luxury-brand-images {
  display: flex;

  gap: 45px;

  align-items: center;

  margin-top: 25px;
}

.luxury-brand-images img {
  max-width: 150px;

  height: auto;
}

/* HOVER */

.luxury-experience-image img {
  transition: 0.8s;
}

.luxury-experience-image:hover img {
  transform: scale(1.04);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .luxury-experience-wrapper {
    grid-template-columns: 1fr;

    padding: 0 25px;

    gap: 70px;
  }

  .luxury-experience-image {
    height: 520px;
  }

  .luxury-experience-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .luxury-experience-image {
    height: 400px;
  }

  .luxury-number {
    width: 110px;

    height: 110px;

    font-size: 38px;

    right: -15px;
  }

  .luxury-feature-box {
    gap: 25px;

    flex-direction: column;
  }

  .luxury-brand-images img {
    max-width: 100px;
  }
}

/* =====================================================
   BOOKING CTA SECTION
   ABOUT PAGE ONLY
===================================================== */

.booking-cta-section {
  padding: 80px 20px;

  background: #f7f5f1;

  position: relative;

  overflow: hidden;
}

.booking-cta-container {
  max-width: 1200px;

  margin: auto;

  text-align: center;
}

/* TITLE */

.booking-cta-container h2 {
  font-family: Georgia, serif;

  font-size: 48px;

  line-height: 1.15;

  font-weight: 300;

  letter-spacing: 2px;

  color: #111;

  margin: 0 auto 35px;

  text-transform: uppercase;
}

.booking-cta-container h2 em {
  font-family: "Times New Roman", serif;

  font-style: italic;

  font-weight: 400;

  text-transform: lowercase;
}

/* DESCRIPTION */

.booking-cta-container p {
  max-width: 850px;

  margin: auto;

  font-family: Georgia, serif;

  font-size: 19px;

  line-height: 1.4;

  color: #444;
}

/* BUTTON */

.booking-cta-btn {
  margin-top: 55px;

  display: inline-flex;

  align-items: center;

  gap: 20px;

  padding: 18px 38px;

  background: #111;

  color: #fff;

  text-decoration: none;

  font-family: Arial, sans-serif;

  font-size: 14px;

  letter-spacing: 1px;

  transition: 0.5s;
}

.booking-cta-btn i {
  font-size: 14px;

  transition: 0.4s;
}

.booking-cta-btn:hover {
  background: #c69b6d;
}

.booking-cta-btn:hover i {
  transform: translateX(8px);
}

/* luxury side lines */

.booking-cta-section::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  border: 1px solid #d8b18a;

  border-radius: 50%;

  left: -120px;

  top: -100px;

  opacity: 0.35;
}

.booking-cta-section::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border: 1px solid #d8b18a;

  border-radius: 50%;

  right: -150px;

  bottom: -120px;

  opacity: 0.35;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .booking-cta-container h2 {
    font-size: 42px;
  }

  .booking-cta-container p {
    font-size: 16px;

    padding: 0 20px;
  }
}

@media (max-width: 500px) {
  .booking-cta-section {
    padding: 80px 20px;
  }

  .booking-cta-container h2 {
    font-size: 28px;

    letter-spacing: 1px;
  }

  .booking-cta-btn {
    padding: 16px 28px;
  }
}

/* ----------------------------------------------------------------------- EDUCATION PAGE STYLE ------------------------------------------------------------------------------- */

/* EDUCATION BANNER */

.education-banner {
  height: 60vh;

  position: relative;

  overflow: hidden;

  /* background: #f8f8f6; */
}

.education-slide {
  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;
}

.education-content {
  width: 50%;

  padding-left: 18%;

  z-index: 5;
}

.education-content h1 {
  font-family: serif;

  font-size: 65px;

  font-weight: 400;

  line-height: 1.2;

  letter-spacing: 3px;

  color: #ffffff;

  margin-bottom: 35px;
}

.education-btn {
  display: inline-block;

  background: #ffffff;

  color: rgb(32, 32, 32);

  padding: 15px 25px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  border-radius: 5px;

  letter-spacing: 1px;
}

.education-image {
  position: absolute;

  right: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.education-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 1s ease;
}

/* DOTS */

.banner-dots {
  position: absolute;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

  background: white;

  padding: 10px 18px;

  border-radius: 30px;

  display: flex;

  gap: 15px;

  z-index: 10;
}

.dot {
  width: 12px;

  height: 12px;

  background: #aaa;

  border-radius: 50%;

  cursor: pointer;

  transition: 0.4s;
}

.dot.active {
  background: #13b7d3;
}

/* COLOR CHANGE EFFECT */

.education-image.color-change img {
  filter: sepia(20%) saturate(120%) hue-rotate(80deg);
}

@media (max-width: 900px) {
  .education-content {
    width: 100%;

    padding: 40px;
  }

  .education-content h1 {
    font-size: 40px;
  }

  .education-image {
    width: 100%;

    opacity: 0.45;
  }
}

/* EDUCATION FIRST SECTION */
/* ================= EDUCATION FIRST SECTION ================= */

.education-first-section {
  padding: 120px 80px;

  background: #f8f6f2;

  overflow: hidden;
}

.education-first-container {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 300px 300px 1fr;

  gap: 60px;

  position: relative;

  min-height: 720px;
}

/* vertical line */

.education-first-container::before {
  content: "";

  position: absolute;

  left: 260px;

  top: 0;

  height: 100%;

  width: 1px;

  background: #d7d0c6;
}

/* LEFT */

.education-left {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 30px 0;
}

/* CENTER */

.education-center {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 120px 0;
}

.education-step {
  width: 200px;
}

.education-step span {
  display: block;

  font-family: "Times New Roman", serif;

  font-size: 58px;

  font-weight: 200;

  line-height: 1;

  color: #222222;

  margin-bottom: 12px;
}

.education-step h3 {
  font-family: "Times New Roman", serif;

  font-size: 22px;

  font-weight: 300;

  letter-spacing: 0.5px;

  color: #b18b62;

  margin-bottom: 22px;
}

.education-step p {
  font-family: Georgia, serif;

  font-size: 14px;

  line-height: 1.5;

  color: #333;

  letter-spacing: 0.3px;
}

/* IMAGE */

.education-first-images {
  display: flex;

  flex-direction: column;

  gap: 90px;

  /* padding-left: 40px; */
}

.education-first-images img {
  width: 100%;

  height: 300px;

  object-fit: cover;
}

/* HOVER IMAGE */

.education-first-images img {
  transition: 0.6s ease;
}

.education-first-images img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .education-first-section {
    padding: 70px 25px;
  }

  .education-first-container {
    display: flex;

    flex-direction: column;

    gap: 60px;

    min-height: auto;
  }

  .education-first-container::before {
    display: none;
  }

  .education-left,
  .education-center {
    padding: 0;

    gap: 60px;

    justify-content: flex-start;
  }

  .education-step {
    width: 100%;
  }

  .education-first-images {
    padding: 0;

    gap: 30px;
  }

  .education-first-images img {
    height: 280px;
  }
}





/*==========================
SERVICES HERO
==========================*/

.services-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.services-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.services-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 20px;
}

.hero-subtitle {
  color: #d9aa78;

  letter-spacing: 6px;

  margin-bottom: 25px;

  font-size: 15px;
}

.services-hero h1 {
  font-size: 64px;

  color: #fff;

  font-weight: 300;

  line-height: 1.1;
}

.hero-line {
  width: 70px;

  height: 2px;

  background: #d9aa78;

  margin: 35px auto;
}

.services-hero p {
  max-width: 700px;

  color: #eee;

  line-height: 1.9;

  font-size: 18px;
}

.hero-btn {
  margin-top: 45px;

  padding: 18px 45px;

  background: #d9aa78;

  color: #111;

  text-decoration: none;

  letter-spacing: 2px;

  transition: 0.4s;
}

.hero-btn:hover {
  background: #111;

  color: #fff;
}

/*==========================
INTRO
==========================*/

.service-intro {
  padding: 80px 0;

  background: #fff;
}

.service-intro-wrapper {
  max-width: 1400px;

  margin: auto;

  display: flex;

  gap: 90px;

  align-items: center;

  padding: 0 20px;
}

.service-intro-image {
  width: 500px;

  height: 650px;

  position: relative;

  flex-shrink: 0;
}

.service-intro-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 0 0 120px 0;

  position: relative;

  z-index: 2;
}

.service-intro-content {
  flex: 1;
}

.service-intro-content span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.service-intro-content h2 {
  font-size: 60px;

  margin: 20px 0;

  font-weight: 300;

  color: #222;

  line-height: 1.15;
}

.section-line {
  width: 70px;

  height: 2px;

  background: #d9aa78;

  margin-bottom: 35px;
}

.service-intro-content p {
  color: #666;

  line-height: 1.9;

  margin-bottom: 25px;

  font-size: 17px;
}

.intro-btn {
  display: inline-block;

  margin-top: 20px;

  background: #111;

  color: #d9aa78;

  padding: 18px 45px;

  text-decoration: none;

  letter-spacing: 2px;
}

/*==========================
CATEGORY
==========================*/

.service-categories {
  background: #f7f7f7;

  padding: 60px 0;
}

.section-heading {
  text-align: center;

  margin-bottom: 70px;
}

.section-heading span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.section-heading h2 {
  margin-top: 20px;

  font-size: 58px;

  font-weight: 300;

  color: #222;
}

.category-grid {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;

  padding: 0 20px;
}

.category-card {
  height: 500px;

  position: relative;

  overflow: hidden;

  text-decoration: none;
}

.category-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0.45) 70%,
      rgba(0, 0, 0, 0.85) 90%,
      rgba(0, 0, 0, 1) 100%);
}

.category-content {
  position: absolute;

  left: 45px;

  bottom: 45px;

  color: #fff;

  z-index: 2;
}

.category-content small {
  color: #d9aa78;

  letter-spacing: 3px;
}

.category-content h3 {
  margin: 18px 0;

  font-size: 42px;

  font-weight: 300;
}

.category-content p {
  color: #ddd;

  line-height: 1.8;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .service-intro-wrapper {
    flex-direction: column;
  }

  .service-intro-image {
    width: 100%;

    height: 500px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    font-size: 48px;
  }

  .service-intro-content h2 {
    font-size: 42px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .services-hero-content {
    margin-top: 150px;
  }
}


@media (max-width: 576px) {
  .category-card {
    height: 380px;
  }

  .category-content h3 {
    font-size: 30px;
  }

  .services-hero p {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;

    text-align: center;
  }


  .services-hero h1 {
    font-size: 38px;
  }
}

/* =================================
MAKEUP SERVICES PAGE HERO
================================= */

.makeup-page-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.makeup-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.makeup-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.makeup-hero-content {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;

  padding: 20px;
}

.makeup-hero-content span {
  color: #d9aa78;

  letter-spacing: 6px;

  font-size: 15px;

  margin-bottom: 25px;
}

.makeup-hero-content h1 {
  font-size: 62px;

  font-weight: 300;

  line-height: 1.1;
}

.makeup-line {
  width: 80px;

  height: 2px;

  background: #d9aa78;

  margin: 30px 0;
}

.makeup-hero-content p {
  max-width: 700px;

  color: #eee;

  font-size: 18px;

  line-height: 1.8;
}

.makeup-hero-content a {
  margin-top: 40px;

  padding: 18px 45px;

  background: #d9aa78;

  color: #111;

  text-decoration: none;

  letter-spacing: 2px;

  transition: 0.4s;
}

.makeup-hero-content a:hover {
  background: white;
}

.service-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 35px;

  padding: 16px 34px;

  background: #d9aa78;

  color: #111;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 13px;

  font-weight: 600;

  transition: all 0.4s ease;
}

.service-btn i {
  transition: transform 0.4s ease;
}

.service-btn:hover {
  background: #111;

  color: #d9aa78;
}

.service-btn:hover i {
  transform: translateX(6px);
}

/* =================================
INTRO SECTION
================================= */

.makeup-intro {
  padding: 130px 0;

  background: #fff;
}

.makeup-container {
  max-width: 1400px;

  margin: auto;

  padding: 0 40px;

  display: flex;

  align-items: center;

  gap: 90px;
}

.makeup-image {
  width: 500px;

  height: 650px;

  position: relative;
}

.makeup-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  position: relative;

  z-index: 2;

  border-radius: 0 0 120px 0;
}

.makeup-border {
  position: absolute;

  inset: 0;

  border: 3px solid #d9aa78;

  top: -30px;

  left: -30px;

  border-radius: 0 0 120px 0;
}

.makeup-content {
  flex: 1;
}

.makeup-content span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.makeup-content h2 {
  font-size: 58px;

  font-weight: 300;

  color: #222;

  margin: 20px 0;
}

.gold-line {
  width: 70px;

  height: 2px;

  background: #d9aa78;

  margin-bottom: 30px;
}

.makeup-content p {
  color: #666;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 20px;
}

.makeup-content a {
  display: inline-block;

  margin-top: 20px;

  padding: 18px 40px;

  background: #111;

  color: #d9aa78;

  text-decoration: none;
}

/* =================================
MAKEUP DETAILS
================================= */

.makeup-details {
  padding: 80px 0;

  background: #f7f7f7;
}

.details-title {
  text-align: center;

  margin-bottom: 90px;
}

.details-title span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.details-title h2 {
  font-size: 60px;

  font-weight: 300;

  color: #222;

  margin-top: 20px;
}

.makeup-service-row {
  max-width: 1400px;

  margin: 0 auto 120px;

  padding: 0 40px;

  display: flex;

  align-items: center;

  gap: 80px;
}

.makeup-service-row.reverse {
  flex-direction: row-reverse;
}

.service-photo {
  width: 50%;

  height: 600px;

  overflow: hidden;
}

.service-photo img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s;
}

.service-photo:hover img {
  transform: scale(1.08);
}

.service-text {
  width: 50%;
}

.service-text h3 {
  font-size: 45px;

  font-weight: 300;

  color: #222;

  margin-bottom: 25px;
}

.service-text p {
  color: #666;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 25px;
}

.service-text ul {
  padding-left: 20px;
}

.service-text li {
  margin-bottom: 12px;

  color: #555;
}

.last-service-card {
  margin-bottom: 0;
}

/* =================================
BOOK CTA
================================= */

.makeup-book {
  padding: 120px 20px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/footerbg.png");

  background-size: cover;

  background-position: center;

  text-align: center;

  color: white;
}

.makeup-book h2 {
  font-size: 55px;

  font-weight: 300;
}

.makeup-book p {
  margin: 25px 0;

  font-size: 18px;
}

.makeup-book a {
  display: inline-block;

  padding: 18px 45px;

  background: #d9aa78;

  color: #111;

  text-decoration: none;
}

/* =================================
RESPONSIVE
================================= */

@media (max-width: 991px) {
  .makeup-container {
    flex-direction: column;
  }

  .makeup-image {
    width: 100%;

    height: 500px;
  }

  .makeup-content h2 {
    font-size: 40px;
  }

  .makeup-service-row,
  .makeup-service-row.reverse {
    flex-direction: column;
  }

  .service-photo,
  .service-text {
    width: 100%;
  }

  .service-photo {
    height: 450px;
  }

  .service-text h3 {
    font-size: 35px;
  }

  .makeup-hero-content h1 {
    font-size: 48px;
  }

  .details-title h2 {
    font-size: 42px;
  }

  .makeup-hero-content {
    margin-top: 150px;
  }
}

@media (max-width: 576px) {
  .makeup-hero-content h1 {
    font-size: 35px;
  }

  .makeup-hero-content span {
    letter-spacing: 3px;
  }

  .makeup-container {
    padding: 0 20px;
  }

  .makeup-service-row {
    padding: 0 20px;
  }

  .price-row {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .makeup-book h2 {
    font-size: 35px;
  }
}

/* =====================================================
   BRIDAL PRICING SECTION
===================================================== */

.bridal-pricing-section {
  background: #ffffff;

  padding: 80px 0;

  overflow: hidden;
}

/* HEADER */

.pricing-header {
  max-width: 900px;

  margin: 0 auto 90px;

  text-align: center;

  padding: 0 20px;
}

.pricing-header span {
  color: #d9aa78;

  letter-spacing: 6px;

  font-size: 14px;
}

.pricing-header h2 {
  margin-top: 25px;

  font-size: 60px;

  font-weight: 300;

  line-height: 1.2;

  color: #222;
}

.pricing-header p {
  margin-top: 25px;

  color: #666;

  line-height: 1.8;

  font-size: 17px;
}

/* CATEGORY BLOCK */

.pricing-category {
  max-width: 1400px;

  margin: 0 auto 40px;

  padding: 0 40px;
}

/* CATEGORY TITLE */

.category-title {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-bottom: 50px;
}

.category-title h3 {
  font-size: 38px;

  font-weight: 300;

  color: #222;

  white-space: nowrap;
}

.category-title div {
  height: 1px;

  background: #d9aa78;

  flex: 1;
}

/* SUB TITLE */

.sub-title {
  font-size: 28px;

  font-weight: 400;

  margin-bottom: 35px;

  color: #333;
}

/* PRICE GRID */

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.price-card {
  position: relative;

  background: #faf8f5;

  padding: 40px 35px;

  border: 1px solid rgba(217, 170, 120, 0.25);

  transition: 0.5s ease;
}

.price-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.price-card h4 {
  font-size: 25px;

  font-weight: 400;

  color: #222;

  line-height: 1.4;

  margin-bottom: 30px;
}

.price-card ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.price-card li {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 15px 0;

  border-bottom: 1px solid #ddd;

  color: #555;

  font-size: 16px;
}

.price-card li:last-child {
  border: none;
}

.price-card li span {
  color: #b58a5a;

  font-weight: 500;
}

/* FEATURED CARD */

.price-card.featured {
  background: #111;

  color: #fff;

  transform: translateY(-15px);
}

.price-card.featured h4 {
  color: #fff;
}

.price-card.featured li {
  border-color: rgba(255, 255, 255, 0.2);

  color: #ddd;
}

.price-card.featured li span {
  color: #d9aa78;
}

/* LUXURY CARD */

.price-card.luxury {
  background: linear-gradient(135deg, #fff, #f8efe5);

  border: 1px solid #d9aa78;
}

/* NOTE SECTION */

.pricing-note {
  margin-top: 45px;

  padding: 35px;

  background: #faf8f5;

  border-left: 3px solid #d9aa78;
}

.pricing-note strong {
  display: block;

  color: #222;

  font-size: 18px;

  margin-bottom: 12px;
}

.pricing-note p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 15px;
}

.pricing-note b {
  color: #b88a58;
}

/* GOLD TOP LINE EFFECT */

.price-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 0;

  height: 3px;

  background: #d9aa78;

  transition: 0.5s;
}

.price-card:hover::before {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }

  .includes-container h2,
  .bridal-addons .section-title h2,
  .bridal-pricing .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .includes-grid div {
    padding: 35px 25px;
  }

  .addon-list {
    padding: 0 20px;
  }

  .addon-list p {
    font-size: 15px;
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .bridal-pricing-section {
    padding: 80px 0;
  }

  .pricing-header h2 {
    font-size: 40px;
  }

  .pricing-category {
    padding: 0 20px;

    margin-bottom: 0px;
  }

  .category-title h3 {
    font-size: 28px;
  }

  .category-title {
    gap: 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .category-title {
    display: block;
  }

  .category-title div {
    margin-top: 20px;
  }

  .pricing-header h2 {
    font-size: 34px;
  }

  .price-card h4 {
    font-size: 22px;
  }

  .price-card li {
    flex-direction: column;

    gap: 8px;
  }
}

/* =====================================================
   HAIR PRICING
===================================================== */

.hair-pricing-section {
  background: white;

  padding: 130px 0;
}

.hair-pricing-header {
  max-width: 900px;

  margin: auto;

  text-align: center;

  padding: 0 20px;
}

.hair-pricing-header span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.hair-pricing-header h2 {
  font-size: 60px;

  font-weight: 300;

  color: #222;

  margin: 25px 0;
}

.hair-pricing-header p {
  color: #666;

  line-height: 1.8;
}

.hair-price-category {
  max-width: 1400px;

  margin: 90px auto;

  padding: 0 40px;
}

.hair-category-title {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-bottom: 45px;
}

.hair-category-title h3 {
  font-size: 38px;

  font-weight: 300;
}

.hair-category-title div {
  height: 1px;

  background: #d9aa78;

  flex: 1;
}

.hair-price-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.hair-price-card {
  background: #faf8f5;

  padding: 40px 35px;

  border: 1px solid rgba(217, 170, 120, 0.3);

  transition: 0.5s;
}

.hair-price-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hair-price-card h4 {
  font-size: 25px;

  font-weight: 400;

  margin-bottom: 30px;
}

.hair-price-card ul {
  padding: 0;

  list-style: none;
}

.hair-price-card li {
  display: flex;

  justify-content: space-between;

  padding: 15px 0;

  border-bottom: 1px solid #ddd;

  color: #666;
}

.hair-price-card li span {
  color: #b88a58;
}

.hair-price-card.featured {
  background: #111;

  color: white;
}

.hair-price-card.featured li {
  border-color: #333;

  color: #ddd;
}

.hair-price-card.luxury {
  border-color: #d9aa78;

  background: #fff8ef;
}

.hair-price-note {
  margin-top: 40px;

  padding: 30px;

  background: #faf8f5;

  border-left: 3px solid #d9aa78;
}

/* =====================================================
   ADDONS
===================================================== */

.hair-addons {
  background: #111;

  padding: 80px 0;
}

.hair-addon-container {
  max-width: 1300px;

  margin: auto;

  padding: 0 30px;
}

.hair-addon-title {
  text-align: center;

  color: white;

  margin-bottom: 70px;
}

.hair-addon-title span {
  color: #d9aa78;

  letter-spacing: 5px;
}

.hair-addon-title h2 {
  font-size: 55px;

  font-weight: 300;
}

.hair-addon-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;
}

.hair-addon-card {
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(217, 170, 120, 0.3);

  padding: 35px 25px;

  text-align: center;

  color: white;

  transition: 0.4s;
}

.hair-addon-card:hover {
  transform: translateY(-10px);

  border-color: #d9aa78;
}

.hair-addon-card i {
  font-size: 35px;

  color: #d9aa78;

  margin-bottom: 20px;
}

.hair-addon-card h3 {
  font-size: 20px;

  font-weight: 400;
}

.hair-addon-card p {
  color: #ddd;

  line-height: 1.7;
}

/* =====================================================
   CTA
===================================================== */

.hair-booking {
  padding: 80px 20px;

  text-align: center;

  background: #f8f6f2;
}

.hair-booking h2 {
  font-size: 55px;

  font-weight: 300;
}

.hair-booking a {
  display: inline-block;

  margin-top: 35px;

  background: #111;

  color: #d9aa78;

  padding: 18px 50px;

  text-decoration: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .hair-style-grid {
    grid-template-columns: 1fr;
  }

  .hair-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hair-addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hair-intro-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hair-hero-content h1 {
    font-size: 42px;
  }

  .hair-image {
    width: 100%;

    height: 500px;
  }

  .hair-content h2,
  .hair-pricing-header h2,
  .hair-addon-title h2,
  .hair-booking h2 {
    font-size: 38px;
  }

  .hair-price-grid,
  .hair-addon-grid {
    grid-template-columns: 1fr;
  }

  .hair-price-category {
    padding: 0 20px;
  }

  .hair-category-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hair-card {
    height: 400px;
  }

  .hair-card-content h3 {
    font-size: 30px;
  }
}

/* ----------------------------- GALLERY PAGE -------------------------- */

/*======================================
GALLERY PAGE
======================================*/

.gallery-page-section {
  padding: 120px 40px;

  background: #f8f8f8;
}

.gallery-page-heading {
  max-width: 800px;

  margin: auto;

  text-align: center;

  margin-bottom: 70px;
}

.gallery-page-heading span {
  color: #d9aa78;

  letter-spacing: 5px;

  font-size: 14px;

  text-transform: uppercase;

  display: block;

  margin-bottom: 15px;
}

.gallery-page-heading h2 {
  font-size: 60px;

  font-weight: 300;

  color: #222;

  margin-bottom: 20px;
}

.gallery-page-heading p {
  color: #666;

  line-height: 1.9;

  font-size: 17px;
}

/*======================================
FILTER
======================================*/

.gallery-page-filter {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 80px;
}

.gallery-page-filter button {
  padding: 15px 30px;

  border: 1px solid rgba(217, 170, 120, 0.3);

  background: rgba(255, 255, 255, 0.8);

  color: #555;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: 1px;

  border-radius: 50px;

  cursor: pointer;

  transition: 0.4s;

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);
}

.gallery-page-filter button:hover {
  background: #d9aa78;

  color: white;

  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(217, 170, 120, 0.25);
}

.gallery-page-filter button.active {
  background: #d9aa78;

  color: white;

  box-shadow: 0 15px 30px rgba(217, 170, 120, 0.3);
}

/*======================================
GRID
======================================*/

.gallery-page-grid {
  max-width: 1450px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.gallery-page-item {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  cursor: pointer;

  background: #fff;

  transition: 0.45s;
}

.gallery-page-item img {
  width: 100%;

  height: 450px;

  object-fit: cover;

  display: block;

  transition: 0.8s;
}

/*======================================
OVERLAY
======================================*/

.gallery-page-overlay {
  position: absolute;

  inset: 0;

  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.281), rgba(0, 0, 0, 0.15)); */

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  text-align: center;

  padding: 35px;

  opacity: 0;

  transition: 0.45s;
}

.gallery-page-overlay h3 {
  color: white;

  font-size: 26px;

  font-weight: 300;

  margin-bottom: 10px;

  transform: translateY(25px);

  transition: 0.45s;
}

.gallery-page-overlay span {
  color: rgba(255, 255, 255, 0.85);

  letter-spacing: 2px;

  font-size: 13px;

  text-transform: uppercase;

  transform: translateY(25px);

  transition: 0.55s;
}

.gallery-page-overlay i {
  width: 65px;

  height: 65px;

  margin-top: 28px;

  border-radius: 50%;

  background: #d9aa78;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  transform: scale(0.5);

  transition: 0.45s;
}

.gallery-page-item:hover img {
  transform: scale(1.12);
}

.gallery-page-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.gallery-page-item:hover .gallery-page-overlay {
  opacity: 1;
}

.gallery-page-item:hover h3,
.gallery-page-item:hover span {
  transform: translateY(0);
}

.gallery-page-item:hover i {
  transform: scale(1);
}

/*======================================
FILTER ANIMATION
======================================*/

.gallery-page-item.hide {
  opacity: 0;

  transform: scale(0.9);

  pointer-events: none;

  transition: 0.35s;

  display: none;
}

.gallery-page-item.show {
  display: block;

  animation: galleryFade 0.45s ease;
}

/*=====================================
LIGHTBOX
======================================*/

.gallery-lightbox {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, .92);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: .4s;

  z-index: 99999;

}

.gallery-lightbox.active {

  opacity: 1;

  visibility: visible;

}

.gallery-lightbox img {

  max-width: 85%;

  max-height: 85vh;

  border-radius: 18px;

  object-fit: contain;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);

}

.gallery-close {

  position: absolute;

  top: 30px;

  right: 40px;

  color: #fff;

  font-size: 38px;

  cursor: pointer;

}

.gallery-prev,
.gallery-next {

  position: absolute;

  width: 60px;

  height: 60px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, .15);

  color: #fff;

  cursor: pointer;

  font-size: 22px;

  transition: .3s;

  backdrop-filter: blur(10px);

}

.gallery-prev:hover,
.gallery-next:hover {

  background: #d9aa78;

}

.gallery-prev {

  left: 40px;

}

.gallery-next {

  right: 40px;

}

body.no-scroll {

  overflow: hidden;

}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.gallery-pagination button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: .35s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.gallery-pagination button:hover {
  background: #d9aa78;
  color: #fff;
}

.gallery-pagination button.active {
  background: #d9aa78;
  color: #fff;
}

.gallery-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}



@media(max-width:768px) {

  .gallery-prev {

    left: 10px;

  }

  .gallery-next {

    right: 10px;

  }

  .gallery-prev,
  .gallery-next {

    width: 48px;

    height: 48px;

  }

  .gallery-close {

    top: 15px;

    right: 20px;

  }

  .gallery-lightbox img {

    max-width: 92%;

  }

}

@keyframes galleryFade {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*======================================
RESPONSIVE
======================================*/

@media (max-width: 1200px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-page-heading h2 {
    font-size: 46px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .gallery-page-item img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .gallery-page-section {
    padding: 90px 20px;
  }

  .gallery-page-filter {
    gap: 12px;
  }

  .gallery-page-filter button {
    padding: 12px 22px;

    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-item img {
    height: 420px;
  }

  .gallery-page-heading h2 {
    font-size: 36px;
  }

  .gallery-page-heading p {
    font-size: 15px;
  }
}


/* ----------------------------------- Lesson ------------------------------------------ */

/*==========================================
        ABOUT EDUCATION SECTION
==========================================*/

.education-about {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.education-about-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/*========================
        LEFT IMAGE
========================*/

.education-about-image {
  width: 48%;
  position: relative;
}

.education-about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;

  border-radius: 0 0 120px 0;
  transition: 0.6s ease;
}

.education-about-image:hover img {
  transform: scale(1.03);
}

/* Decorative Border */

.image-frame {
  position: absolute;

  width: 100%;
  height: 100%;

  border: 2px solid #d9aa78;

  top: -28px;
  left: -28px;

  border-radius: 0 0 120px 0;

  z-index: 1;
}

/* Floating Badge */

.experience-box {
  position: absolute;

  right: -40px;
  bottom: 60px;

  background: #171717;

  color: #fff;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  z-index: 5;

  border: 5px solid #d9aa78;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.experience-box h3 {
  font-size: 48px;

  font-weight: 300;

  color: #d9aa78;

  margin-bottom: 10px;
}

.experience-box span {
  font-size: 14px;

  letter-spacing: 2px;

  text-transform: uppercase;

  text-align: center;

  line-height: 1.5;
}

/*==========================
        RIGHT CONTENT
==========================*/

.education-about-content {
  flex: 1;
}

.education-subtitle {
  display: inline-block;

  color: #c89a72;

  text-transform: uppercase;

  letter-spacing: 4px;

  font-size: 15px;

  margin-bottom: 18px;

  font-weight: 600;
}

.education-about-content h2 {
  font-size: 58px;

  line-height: 1.18;

  color: #171717;

  font-weight: 300;
}

.education-line {
  width: 70px;

  height: 3px;

  background: #d9aa78;

  margin: 28px 0 35px;
}

.education-about-content p {
  font-family: Georgia, serif;
  font-size: 17px;

  line-height: 1.95;

  color: #666;

  margin-bottom: 22px;
}

/*==========================
        FEATURES
==========================*/

.education-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 45px 0;
}

.feature-item {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px 22px;

  border: 1px solid #ece7df;

  transition: 0.4s;

  background: #faf8f5;
}

.feature-item:hover {
  transform: translateY(-6px);

  border-color: #d9aa78;

  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.06);
}

.feature-item i {
  font-size: 22px;

  color: #d9aa78;
}

.feature-item span {
  color: #222;

  font-size: 16px;

  font-weight: 500;
}

/*==========================
        BUTTON
==========================*/

.education-about-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 42px;

  background: #171717;

  color: #d9aa78;

  text-decoration: none;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: 0.4s;
}

.education-about-btn:hover {
  background: #d9aa78;

  color: #171717;

  transform: translateY(-3px);
}

/*==========================
 Decorative Shape
==========================*/

.education-about {
  position: relative;
}

.education-about::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  background: rgba(217, 170, 120, 0.05);

  border-radius: 50%;

  right: -180px;

  top: -120px;
}

.education-about::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  background: rgba(217, 170, 120, 0.04);

  left: -120px;

  bottom: -120px;

  border-radius: 50%;
}

/*==================================
        RESPONSIVE
==================================*/

@media (max-width: 1200px) {
  .education-about-container {
    flex-direction: column;

    gap: 70px;
  }

  .education-about-image {
    width: 100%;

    max-width: 700px;
  }

  .education-about-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .education-about {
    padding: 80px 0;
  }

  .education-about-container {
    padding: 0 20px;
  }

  .education-about-image img {
    height: 500px;

    border-radius: 0 0 70px 0;
  }

  .image-frame {
    top: -15px;

    left: -15px;

    border-radius: 0 0 70px 0;
  }

  .experience-box {
    width: 120px;

    height: 120px;

    right: 10px;

    bottom: 20px;
  }

  .experience-box h3 {
    font-size: 30px;
  }

  .experience-box span {
    font-size: 11px;

    letter-spacing: 1px;
  }

  .education-about-content h2 {
    font-size: 38px;
  }

  .education-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: 16px;
  }

  .education-about-btn {
    width: 100%;
  }
}

/*===============================
   EDUCATION LESSONS
================================*/

.education-lessons {
  padding: 120px 0;
  background: #f8f6f3;
  overflow: hidden;
}

.education-lessons .container {
  width: min(1400px, 92%);
  margin: auto;
}

/* Heading */

.section-heading {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading .subtitle {
  display: inline-block;
  color: #c79a72;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 54px;
  font-weight: 300;
  color: #171717;
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-heading p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
}

/* Grid */

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */

.lesson-card {
  position: relative;

  background: #ffffff;

  padding: 38px;

  border: 1px solid #ece6de;

  transition: 0.45s;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 320px;
}

/* top border animation */

.lesson-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: #d9aa78;

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.45s;
}

.lesson-card:hover::before {
  transform: scaleX(1);
}

.lesson-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);

  border-color: #d9aa78;
}

/* title */

.lesson-top h3 {
  font-size: 28px;

  font-weight: 300;

  line-height: 1.3;

  color: #171717;

  margin-bottom: 12px;
}

.lesson-top span {
  display: inline-block;

  color: #b98b62;

  font-size: 15px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* middle */

.lesson-info {
  margin: 45px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid #eee;

  border-bottom: 1px solid #eee;

  padding: 22px 0;
}

.lesson-duration {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #666;

  font-size: 15px;
}

.lesson-duration i {
  color: #d9aa78;

  font-size: 18px;
}

.lesson-price {
  font-size: 28px;

  color: #171717;

  font-weight: 600;

  white-space: nowrap;
}

/* Button */

.lesson-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  height: 55px;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 13px;

  font-weight: 600;

  color: #171717;

  border: 1px solid #171717;

  transition: 0.4s;
}

.lesson-btn:hover {
  background: #171717;

  color: #d9aa78;

  letter-spacing: 3px;
}

/* Decorative Circle */

.lesson-card::after {
  content: "";

  position: absolute;

  width: 170px;

  height: 170px;

  border-radius: 50%;

  background: rgba(217, 170, 120, 0.07);

  top: -60px;

  right: -60px;

  transition: 0.5s;
}

.lesson-card:hover::after {
  transform: scale(1.4);
}

/*===============================
 Responsive
================================*/

@media (max-width: 1200px) {
  .lesson-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .education-lessons {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .lesson-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .lesson-card {
    padding: 28px;

    min-height: auto;
  }

  .lesson-top h3 {
    font-size: 24px;
  }

  .lesson-info {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .lesson-price {
    font-size: 24px;

    width: 100%;
  }

  .lesson-btn {
    width: 100%;
  }
}

/*==========================================
        PROFESSIONAL COURSE CTA
==========================================*/

.education-course-cta {
  position: relative;

  padding: 130px 20px;

  background: url("assets/images/education/course-bg.jpg") center/cover;

  overflow: hidden;
}

.education-course-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(2px);
}

.education-course-container {
  position: relative;

  z-index: 2;

  max-width: 900px;

  margin: auto;

  text-align: center;

  color: #fff;
}

.course-subtitle {
  display: inline-block;

  color: #d9aa78;

  letter-spacing: 4px;

  text-transform: uppercase;

  font-size: 14px;

  margin-bottom: 18px;
}

.education-course-container h2 {
  font-size: 58px;

  font-weight: 300;

  line-height: 1.2;

  margin-bottom: 28px;
}

.course-line {
  width: 70px;

  height: 3px;

  background: #d9aa78;

  margin: 0 auto 35px;
}

.education-course-container p {
  max-width: 760px;

  margin: auto;

  font-size: 18px;

  line-height: 2;

  color: #dddddd;
}

.course-highlights {
  margin: 60px 0;

  display: flex;

  justify-content: center;

  gap: 50px;

  flex-wrap: wrap;
}

.highlight-item {
  display: flex;

  align-items: center;

  gap: 14px;

  color: #fff;

  font-size: 17px;
}

.highlight-item i {
  color: #d9aa78;

  font-size: 22px;
}

.course-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.course-btn {
  padding: 18px 42px;

  background: #d9aa78;

  color: #171717;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 2px;

  transition: 0.4s;

  font-weight: 600;
}

.course-btn:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .education-course-cta {
    padding: 90px 20px;
  }

  .education-course-container h2 {
    font-size: 38px;
  }

  .course-highlights {
    flex-direction: column;

    gap: 20px;

    align-items: flex-start;
  }

  .course-buttons {
    flex-direction: column;
  }

  .course-btn {
    width: 100%;

    text-align: center;
  }
}

/*==================================
      WHAT'S INCLUDED
==================================*/

.education-included {
  padding: 120px 0;

  background: #ffffff;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.included-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
  align-items: start;
}

.included-card {
  background: #fff;

  padding: 45px 35px;

  border: 1px solid #ececec;

  transition: 0.45s;

  position: relative;
  height: fit-content;
  overflow: hidden;
}

.included-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 4px;

  height: 0;

  background: #d9aa78;

  transition: 0.45s;
}

.included-card:hover::before {
  height: 100%;
}

.included-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.included-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #f8f4ef;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 30px;
}

.included-icon i {
  font-size: 28px;

  color: #d9aa78;
}

.included-card h3 {
  font-size: 24px;

  color: #171717;

  margin-bottom: 18px;

  font-weight: 400;
}

.included-card p {
  color: #666;

  line-height: 1.9;

  font-size: 16px;
}

.highlight {
  background: #171717;

  color: #fff;
}

.highlight h3 {
  color: #fff;
}

.highlight p {
  color: #d9d9d9;
}

.highlight strong {
  color: #d9aa78;
}

.highlight .included-icon {
  background: rgba(255, 255, 255, 0.08);
}

.highlight {
  background: linear-gradient(135deg, #111111, #1f1f1f);
  color: #fff;
}

.upgrade-tag {
  display: inline-block;
  padding: 7px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 170, 120, 0.4);
  color: #d9aa78;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.upgrade-list {
  margin: 28px 0 35px;
}

.upgrade-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  padding: 14px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.upgrade-item:last-child {
  border-bottom: none;
}

.upgrade-item span {
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.6;
}

.upgrade-item strong {
  color: #d9aa78;
  white-space: nowrap;
  font-size: 16px;
}

.upgrade-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 28px;

  text-decoration: none;

  color: #171717;
  background: #d9aa78;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.35s;
}

.upgrade-btn:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.upgrade-btn i {
  transition: 0.35s;
}

.upgrade-btn:hover i {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .education-included {
    padding: 80px 0;
  }

  .included-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }
}


/*====================================================
                FAQ PAGE
====================================================*/

.faq-info-section,
.faq-main-section {
  padding: 100px 7%;
}

.faq-info-section {
  padding-top: 170px;
  background: #faf8f6;
}

.faq-main-section {
  background: #fff;
}

/*====================================================
SECTION HEADING
====================================================*/

.section-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading span {
  display: inline-block;
  color: #d9aa78;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  color: #1b1b1b;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
}

.section-heading p {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
}

/*====================================================
INFO GRID
====================================================*/

.faq-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.faq-info-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(217, 170, 120, 0.15);
  transition: .45s;
  position: relative;
  overflow: hidden;
}

.faq-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(217, 170, 120, .12),
      transparent 60%);
  opacity: 0;
  transition: .4s;
}

.faq-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.faq-info-card:hover::before {
  opacity: 1;
}

.faq-icon {
  width: 78px;
  height: 78px;
  margin: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9aa78, #b8874f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon i {
  color: #fff;
  font-size: 30px;
}

.faq-info-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #222;
}

.faq-info-card p {
  color: #666;
  line-height: 1.8;
}

/*====================================================
FAQ LAYOUT
====================================================*/

.faq-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 25px;
  align-items: start;
}

.faq-left {
  min-width: 0;
}

/*====================================================
CATEGORY
====================================================*/

.faq-category {
  margin-bottom: 60px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.faq-category-title span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d9aa78;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-category-title h3 {
  font-size: 30px;
  color: #1d1d1d;
  font-family: "Cormorant Garamond", serif;
}

/*====================================================
SIDEBAR
====================================================*/

.faq-sidebar {
  position: relative;
}

.faq-help-card {
  position: sticky;
  top: 120px;
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 28px;
  overflow: hidden;
}

.faq-help-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(217, 170, 120, .18);
  right: -120px;
  top: -120px;
}

.faq-help-card>* {
  position: relative;
  z-index: 2;
}

.faq-help-card span {
  color: #d9aa78;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.faq-help-card h3 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
}

.faq-help-card>p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 35px;
}

/*====================================================
HELP ITEMS
====================================================*/

.help-item {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.help-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-icon i {
  color: #d9aa78;
  font-size: 20px;
}


.help-content {
  flex: 1;
  min-width: 0;
}

.help-content small {
  display: block;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 4px;
}

.help-content h4 {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/*====================================================
BUTTON
====================================================*/

.faq-help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 35px;
  padding: 18px;
  border-radius: 14px;
  background: #d9aa78;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
}

.faq-help-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}


/*==========================================
FAQ LEFT CONTENT
==========================================*/

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/*==========================================
FAQ CATEGORY
==========================================*/

.faq-category {
  background: #fff;
  border-radius: 22px;
  padding: 15px;
  border: 1px solid rgba(217, 170, 120, 0.15);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.faq-category+.faq-category {
  margin-top: 30px;
}

/*==========================================
CATEGORY TITLE
==========================================*/

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.faq-category-title span {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #d9aa78;
  color: #fff;

  font-size: 22px;
  font-weight: 700;
}

.faq-category-title h3 {
  font-size: 30px;
  color: #111;
  font-weight: 600;
}

/*==========================================
FAQ LIST
==========================================*/

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*==========================================
FAQ ITEM
==========================================*/

.faq-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
  background: #fff;
}

.faq-item:hover {
  border-color: #d9aa78;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(217, 170, 120, .15);
}

/*==========================================
QUESTION
==========================================*/

.faq-question {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 20px;

  background: transparent;
  border: none;
  cursor: pointer;

  text-align: left;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

.faq-question i {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f8f5f2;
  color: #d9aa78;

  font-size: 16px;

  transition: .35s;
}

/*==========================================
ANSWER
==========================================*/

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height .45s ease;
}

.faq-answer p {
  padding: 0 28px 24px;

  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/*==========================================
ACTIVE
==========================================*/

.faq-item.active {
  border-color: #d9aa78;
  box-shadow: 0 18px 45px rgba(217, 170, 120, .18);
}

.faq-item.active .faq-question {
  background: #fff8f2;
}

.faq-item.active .faq-question span {
  color: #111;
}

.faq-item.active .faq-question i {
  background: #d9aa78;
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/*==========================================
SMOOTH TRANSITION
==========================================*/

.faq-item,
.faq-question,
.faq-answer,
.faq-question i {
  transition: .35s;
}



/*====================================================
TABLET
====================================================*/

@media (max-width:1200px) {

  .faq-wrapper {

    grid-template-columns: 1fr 320px;

    gap: 40px;

  }

}

/*====================================================
MOBILE
====================================================*/

@media (max-width:991px) {

  .faq-info-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .faq-wrapper {

    grid-template-columns: 1fr;

  }

  .faq-sidebar {

    order: 2;

    margin-top: 60px;

  }

  .faq-help-card {

    position: relative;

    top: 0;

  }

}

@media (max-width:767px) {

  .faq-info-section,
  .faq-main-section {

    padding: 80px 20px;

  }

  .faq-info-section {

    padding-top: 140px;

  }

  .faq-info-grid {

    grid-template-columns: 1fr;

  }

  .faq-category {
    padding: 10px;
  }

  .faq-category-title {

    align-items: flex-start;

  }

  .faq-question i {
    min-width: 42px;
  }

  .faq-question {
    padding: 14px 28px;
  }

  .faq-category-title span {
    min-height: 42px !important;
    min-width: 42px !important;
  }

  .faq-category-title h3 {

    font-size: 26px;

  }

  .faq-help-card {

    padding: 30px;

  }

  .faq-help-card h3 {

    font-size: 34px;

  }

}


/* Home page - testimonials section */

/*======================================
TESTIMONIAL SECTION
======================================*/

.testimonial-section {
  background: #5d534b;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  width: min(1150px, 92%);
  margin: auto;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;

}

.testimonial-title {
  font-family: "Times New Roman", serif;
  font-size: clamp(65px, 9vw, 80px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -3px;
  line-height: .85;
  position: relative;
  z-index: 10;
  margin-bottom: -45px;
  margin-left: 40px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 420px 1px 1fr;
  gap: 70px;
  align-items: center;
}

.testimonial-left {
  position: relative;
}

.testimonial-image {
  width: 380px;
  margin-left: 30px;
  position: relative;
}

.testimonial-image img {
  width: 100%;
  display: block;
}

.testimonial-sign {
  position: absolute;
  right: -35px;
  bottom: -25px;
  font-family: cursive;
  font-size: 68px;
  color: #fff;
  line-height: 1;
}

.testimonial-divider {
  width: 1px;
  height: 580px;
  background: rgba(255, 255, 255, .5);
}

.testimonial-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-top {
  display: flex;

  align-items: center;

}

.testimonial-count {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
}

.testimonial-next {
  background: transparent;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  letter-spacing: 2px;
  font-size: 15px;
  transition: .35s;
}

.testimonial-next i {
  transition: .35s;
}

.testimonial-next:hover i {
  transform: translateX(8px);
}

.testimonial-content {
  max-width: 520px;
}

.testimonial-content p {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.testimonial-nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  flex-wrap: wrap;
}

.testimonial-item {
  background: transparent;
  color: #fff;
  border: 1px solid transparent;
  padding: 14px 34px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 2px;
  transition: .35s;
}

.testimonial-item:hover {
  border-color: rgba(255, 255, 255, .6);
}

.testimonial-item.active {
  border-color: #fff;
  background: rgba(255, 255, 255, .04);
}

/*==========================
Animation
==========================*/

.testimonial-image img,
.testimonial-content,
.testimonial-sign {
  transition: .45s ease;
}

.testimonial-change {
  opacity: 0;
  transform: translateY(20px);
}

/*==========================
Tablet
==========================*/

@media(max-width:1200px) {

  .testimonial-wrapper {
    grid-template-columns: 340px 1px 1fr;
    gap: 45px;
  }

  .testimonial-image {
    width: 320px;
  }

  .testimonial-divider {
    height: 500px;
  }

  .testimonial-content p {
    font-size: 23px;
    line-height: 1.8;
  }

}

/*==========================
Mobile
==========================*/

@media(max-width:991px) {

  .testimonial-title {
    margin-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-divider {
    display: none;
  }

  .testimonial-left {
    display: flex;
    justify-content: center;
  }

  .testimonial-image {
    margin: 0;
    width: 100%;
    max-width: 420px;
  }

  .testimonial-right {
    text-align: center;
  }


  .testimonial-content {
    max-width: 100%;
  }

  .testimonial-content p {
    font-size: 22px;
  }

  .testimonial-nav {
    justify-content: center;
  }

}

@media(max-width:768px) {

  .testimonial-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;

  }

  .testimonial-title {
    font-size: 68px;
  }

  .testimonial-sign {
    font-size: 60px;
    right: -10px;
  }

  .testimonial-content p {
    font-size: 21px;
    line-height: 1.8;
  }

  .testimonial-item {
    padding: 12px 28px;
    font-size: 14px;
  }

}

/*==========================
Small Mobile
==========================*/

@media(max-width:576px) {

  .testimonial-section {
    padding: 90px 0 50px;
  }

  .testimonial-title {
    font-size: 56px;
    margin-bottom: 20px;
  }

  .testimonial-sign {
    font-size: 48px;
    right: -5px;
  }



  .testimonial-content p {
    font-size: 19px;
    line-height: 1.9;
  }

  .testimonial-item {
    padding: 12px 22px;
    font-size: 13px;
  }

}

/*=============================================
 CONTACT PAGE
=============================================*/

.contact-page-section {
  background: #fff;
  padding: 120px 0;
}

.contact-page-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT */

.contact-page-left {
  width: 100%;
}

.contact-page-subtitle {
  display: inline-block;
  color: #d9aa78;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-page-left h2 {
  font-size: 55px;
  font-weight: 300;
  color: #1b1b1b;
  line-height: 1.2;
}

.contact-page-line {
  width: 70px;
  height: 2px;
  background: #d9aa78;
  margin: 28px 0;
}

.contact-page-text {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
  max-width: 720px;
  margin-bottom: 45px;
}

/* FORM */

.contact-page-form {
  width: 100%;
}

.contact-page-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.contact-page-field {
  width: 100%;
  margin-bottom: 22px;
}

.contact-page-row .contact-page-field {
  margin-bottom: 0;
}

/* INPUT */

.contact-page-field input,
.contact-page-field select,
.contact-page-field textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  background: transparent;
  color: #222;
  font-size: 16px;
  font-family: inherit;
  padding: 18px 18px;
  transition: .35s;
  outline: none;
  border-radius: 0;
}

/* HEIGHT */

.contact-page-field input,
.contact-page-field select {
  height: 58px;
}

.contact-page-field textarea {
  resize: vertical;
  min-height: 170px;
}

/* PLACEHOLDER */

.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
  color: #777;
}

/* SELECT */

.contact-page-field select {
  appearance: none;
  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, #444 50%),
    linear-gradient(135deg, #444 50%, transparent 50%);

  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);

  background-size: 7px 7px;
  background-repeat: no-repeat;
}

/* FOCUS */

.contact-page-field input:focus,
.contact-page-field select:focus,
.contact-page-field textarea:focus {
  border-color: #d9aa78;
  box-shadow: 0 0 0 4px rgba(217, 170, 120, .10);
}

/* DATE */

.contact-page-field input[type="date"],
.contact-page-field input[type="time"] {
  color: #666;
}

/* BUTTON */

.contact-page-btn {
  margin-top: 15px;
  width: 320px;
  height: 60px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: .4s;
  text-transform: uppercase;
}

.contact-page-btn:hover {
  background: #d9aa78;
  color: #111;
}

/* RIGHT COLUMN */

.contact-page-right {
  position: sticky;
  top: 120px;
}

/*=============================================
 CONTACT CARD
=============================================*/

.contact-card {
  background: #ffffff;
  padding: 55px 45px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #d9aa78;
}

.contact-card span {
  display: inline-block;
  color: #d9aa78;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  color: #1b1b1b;
}

.contact-card-line {
  width: 65px;
  height: 2px;
  background: #d9aa78;
  margin: 28px 0 40px;
}

/* INFO ITEM */

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
}

.contact-info-item:last-of-type {
  margin-bottom: 45px;
}

/* ICON */

.contact-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 1px solid #d9aa78;
  background: #faf8f5;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .35s ease;
}

.contact-icon i {
  color: #d9aa78;
  font-size: 20px;
}

.contact-info-item:hover .contact-icon {
  background: #d9aa78;
  transform: translateY(-4px);
}

.contact-info-item:hover .contact-icon i {
  color: #fff;
}

/* TEXT */

.contact-info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.contact-info-item p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* SOCIAL */

.contact-social {
  display: flex;
  gap: 15px;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border: 1px solid #d9aa78;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d9aa78;
  text-decoration: none;

  transition: .35s ease;
}

.contact-social a:hover {
  background: #d9aa78;
  color: #fff;
  transform: translateY(-4px);
}

/*=============================================
 MAP SECTION
=============================================*/

.contact-map-section {
  background: #fff;
  padding: 0 0 120px;
}

.contact-map-title {
  max-width: 1400px;
  margin: 0 auto 45px;
  padding: 0 40px;
}

.contact-map-title span {
  display: inline-block;
  color: #d9aa78;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-map-title h2 {
  font-size: 55px;
  font-weight: 300;
  color: #1b1b1b;
  line-height: 1.2;
}

.contact-map {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

.contact-map iframe {
  width: 100%;
  height: 550px;
  display: block;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}


/*=============================================
 RESPONSIVE
=============================================*/

@media (max-width:1200px) {

  .contact-page-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-page-right {
    position: static;
  }

  .contact-card {
    max-width: 650px;
  }

}


@media (max-width:991px) {

  .contact-page-section {
    padding: 90px 0;
  }

  .contact-page-container,
  .contact-map,
  .contact-map-title {
    padding: 0 25px;
  }

  .contact-page-left h2,
  .contact-map-title h2 {
    font-size: 42px;
  }

  .contact-page-text {
    font-size: 16px;
  }

  .contact-card {
    padding: 40px 35px;
  }

  .contact-card h3 {
    font-size: 30px;
  }

  .contact-map iframe {
    height: 450px;
  }

}


@media (max-width:768px) {

  .contact-page-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-page-left h2,
  .contact-map-title h2 {
    font-size: 34px;
  }

  .contact-page-btn {
    width: 100%;
  }

  .contact-card {
    padding: 35px 28px;
  }

  .contact-info-item {
    gap: 15px;
    margin-bottom: 28px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .contact-map iframe {
    height: 380px;
  }

}


@media (max-width:576px) {

  .contact-page-section {
    padding: 70px 0;
  }

  .contact-page-container,
  .contact-map,
  .contact-map-title {
    padding: 0 18px;
  }

  .contact-page-subtitle,
  .contact-map-title span {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .contact-page-left h2,
  .contact-map-title h2 {
    font-size: 28px;
  }

  .contact-page-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .contact-page-field input,
  .contact-page-field select,
  .contact-page-field textarea {
    font-size: 15px;
    padding: 16px;
  }

  .contact-page-field input,
  .contact-page-field select {
    height: 54px;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .contact-card h3 {
    font-size: 26px;
  }

  .contact-info-item h4 {
    font-size: 17px;
  }

  .contact-info-item p {
    font-size: 14px;
  }

  .contact-social {
    flex-wrap: wrap;
  }

  .contact-social a {
    width: 44px;
    height: 44px;
  }

  .contact-map iframe {
    height: 300px;
    border-radius: 8px;
  }

}