
    body {
  background: #0a0a0a;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;

  background: #0a0a0a;
  border-bottom:3px solid rgba(255,255,255,0.06);
}

/* SITE NAME */
.site-logo {
  font-size: 22px;
  font-weight: 600;
  color: white;
  font-family: 'Yeseva One', serif;

}

.site-logo span {
  color: gold;
}

/* BUTTONS */
.back-btn,
.home-btn {
  color: gold;
  text-decoration: none;

  border: 1px solid gold;
  padding: 8px 14px;
  border-radius: 30px;

  transition: 0.3s;
}

.back-btn:hover,
.home-btn:hover {
  background: gold;
  color: black;
}

/* MOBILE */
@media (max-width: 600px) {
  .site-logo {
    font-size: 18px;
  }

  .back-btn,
  .home-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* BUTTONS */
.back-btn,
.home-btn {
  color: gold;
  text-decoration: none;

  border: 1px solid gold;
  padding: 8px 14px;
  border-radius: 30px;

  transition: 0.3s;
}

.back-btn:hover,
.home-btn:hover {
  background: gold;
  color: black;
}

/* CAROUSEL */
.carousel-section {
  width: 100%;
}

.carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  inset: 0;

  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel img.active {
  opacity: 1;
}

/* PROFILE INFO */
.profile-info {
  padding: 40px 30px 20px;

  display: flex;
  flex-direction: column;

  align-items: flex-end; /* 🔥 pushes everything right */
  text-align: right;
}

.profile-info h1 {
  font-size: 42px;
font-family: 'Domine', serif;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* VERIFIED */
.verified-badge i {
  color: gold;
  font-size: 22px;
}

/* TITLE */
.profile-title {
  color: #aaa;
  margin-top: 10px;
  font-size: 18px;
}

/* SOCIALS */
.profile-socials {
  display: flex;
  justify-content: flex-end;

  gap: 15px;
  margin-top: 18px;
}

/* ICONS */
.profile-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.05);
  color: #ccc;

  text-decoration: none;
  font-size: 18px;

  transition: 0.3s ease;

  backdrop-filter: blur(8px);
}

/* HOVER */
.profile-socials a:hover {
  color: gold;

  transform: translateY(-2px);

  box-shadow: 0 0 10px rgba(255,215,0,0.15);
}
.profile-socials a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.05);
  color: #ccc;

  text-decoration: none;

  font-size: 14px; /* smaller icon */

  transition: 0.3s ease;

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,215,0,0.08);
}

/* BIO */
.bio-section {
  max-width: 900px;
  margin: auto;

  padding: 40px 20px 80px;
}

.bio-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-family: 'Domine', serif;
}

.bio-section p {
  color: #ccc;
  line-height: 1.8;
  font-size: 16px;
}

/* TABLET */
@media (max-width: 992px) {
  .carousel {
    height: 55vh;
  }

  .profile-info h1 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .carousel {
    height: 40vh;
  }

  .profile-info h1 {
    font-size: 28px;
  }

  .profile-title {
    font-size: 15px;
  }
}

/* SECTION */
.booking-section {
  padding: 80px 20px;
}

/* HEADING */
.booking-heading {
  margin-bottom: 50px;
}

.booking-heading h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 10px;
  font-family: 'Domine', serif;
}

.booking-heading p {
  color: #aaa;
  font-size: 18px;
}

/* GRID */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.booking-card {
  position: relative;

  padding: 26px; /* reduced */

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,215,0,0.08);

  backdrop-filter: blur(12px);

  overflow: hidden;

  transition: 0.35s ease;
}
/* GOLD SWEEP */
.booking-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.12),
    transparent
  );
  
  filter: blur(8px);

  transition: 0.5s ease;
}
.booking-card:hover::before {
  left: 140%;
}
/* TOP ROW */
.booking-top {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 18px;
}
/* HOVER */
.booking-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255,215,0,0.25);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 20px rgba(255,215,0,0.08);
}
.booking-card:hover h3 {
  color: gold;
}

/* ICON */
.booking-icon {
  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,215,0,0.08);

  color: gold;

  font-size: 18px;

  flex-shrink: 0;

  transition: 0.35s ease;
}
/* ICON GLOW */
.booking-card:hover .booking-icon {

  background: gold;
  color: black;

  box-shadow:
    0 0 12px rgba(255,215,0,0.5),
    0 0 25px rgba(255,215,0,0.25);

  transform: scale(1.08);
}
/* TITLE */
.booking-card h3 {
  font-size: 20px;
  margin: 0;
  font-family: 'Domine', serif;
}

/* TEXT */
.booking-card p {
  color: #bbb;
  line-height: 1.8;
  font-size: 15px;

  margin-bottom: 5px;
}
.booking-bottom {
  display: flex;
  justify-content: flex-end;
}
/* LINK */
.booking-link {
width: 36px;
  height: 36px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  text-decoration: none;

  background: rgba(255,215,0,0.08);
  color: gold;

  transition: 0.3s ease;
}

/* LINK HOVER */
.booking-link:hover {
  background: gold;
  color: black;

  transform: translateX(4px);
}

/* TOOLTIP */
.tooltip {
  position: absolute;

  bottom: 48px;
  right: 0;

  background: rgba(0,0,0,0.95);
  color: gold;

  padding: 6px 10px;

  border-radius: 10px;

  font-size: 12px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transform: translateY(6px);

  transition: 0.3s ease;

  border: 1px solid rgba(255,215,0,0.15);
}

/* SHOW TOOLTIP */
.booking-link:hover .tooltip {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}
/* TABLET */
@media (max-width: 992px) {

  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-heading h2 {
    font-size: 32px;
  }

  .booking-card {
    padding: 28px;
  }

}


/* FOOTER */
.profile-footer {
  padding: 50px 20px;

  text-align: center;

  background: #080808;

  border-top: 1px solid rgba(255,215,0,0.08);
}

/* LOGO */
.footer-logo {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
font-family: 'Yeseva One', serif;

  margin-bottom: 4px;
}

.footer-logo span {
  color: gold;
}

/* TEXT */
.profile-footer p {
  color: #B8B8B8;

  max-width: 500px;

  margin: auto auto 5px;

  line-height: 1.7;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  justify-content: center;

  gap: 14px;

  margin-bottom: 25px;
}

/* ICONS */
.footer-socials a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  text-decoration: none;

  background: rgba(255,255,255,0.04);

  color: #B8B8B8;

  transition: 0.3s ease;
}

/* HOVER */
.footer-socials a:hover {
  color: gold;

  transform: translateY(-3px);

  box-shadow: 0 0 12px rgba(255,215,0,0.15);
}

/* COPYRIGHT */
.profile-footer small {
  color: #B8B8B8;
}

a,
button,
input,
textarea,
select {
  
  -webkit-tap-highlight-color: transparent;
  outline: none;
  
}

a:focus,
a:active,
button:focus,
button:active {
  
  outline: none;
  
}