


/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  background: url("https://www.amaraya.ae/wp-content/uploads/hair-stylish-salon-dubai.jpg")
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 12, 5, 0.68) 0%,
    rgba(20, 12, 5, 0.45) 60%,
    rgba(180, 130, 60, 0.18) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-script {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 42px);
  color: var(--logo2);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 300;
}



.btn-hero-primary {
  background: var(--gold);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 0;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* ── SECTION HEADER ───────────────────────── */


.sec-script {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 50px);
  color: var(--logo1);
  line-height: 1;
  margin-bottom: 6px;
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--logo1);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--logo2);
  margin: 0 auto 20px;
}

.sec-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--logo1);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ── INTRO SECTION ────────────────────────── */
.intro-section {
  padding: 90px 0 70px;
}

/* ── SERVICES LIST ────────────────────────── */
.services-section {
  padding: 70px 0 90px;
  background: var(--white);
}

.service-category {
  margin-bottom: 60px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.category-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon i {
  font-size: 18px;
  color: var(--gold);
}

.category-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--logo1);
  margin: 0;
}

.category-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Service Cards */
.service-card {
  border: 1px solid var(--logo4);
  background: var(--white);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  margin-bottom: 10px;
}

.service-card:hover {
  border-color: var(--logo2);
  box-shadow: 0 4px 20px rgba(201, 169, 122, 0.12);
}

.service-card-left {
  flex: 1;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--logo1);
  margin: 0 0 5px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-duration {
  font-size: 12px;
  color: var(--logo1);
  letter-spacing: 1px;
  font-weight: 400;
}

.service-duration i {
  font-size: 11px;
  margin-right: 4px;
  color: var(--gold);
}

.service-card-right {
  text-align: right;
  flex-shrink: 0;
}

.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--logo1);
  line-height: 1;
  margin-bottom: 2px;
}

.service-currency {
  font-size: 13px;
  font-weight: 400;
  color: var(--logo1);
  font-family: "Cormorant Garamond", serif;
}

.explore-more-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--logo1);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  margin-top: 4px;
}

.explore-more-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hidden items */
.service-card.hidden-item {
  display: none;
}

.service-card.hidden-item.show {
  display: flex;
}

/* ── CTA BANNER ───────────────────────────── */
.cta-section {
  padding: 90px 0;
  background: url("https://www.amaraya.ae/wp-content/uploads/hair-care-in-dubaio.jpg")
    center / cover no-repeat;
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 5, 0.72);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-section .sec-title {
  color: var(--white);
}

.cta-section .sec-lead {
  color: rgba(255, 255, 255, 0.75);
}

/* ── RESPONSIVE TWEAKS ────────────────────── */
@media (max-width: 767px) {
  .hero {
    height: 100vh;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-card-right {
    text-align: left;
  }

  .category-header {
    flex-wrap: wrap;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    display: block;
    width: 100%;
    margin: 6px 0 !important;
    text-align: center;
  }

  .why-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .sec-title {
    letter-spacing: 3px;
  }

  .category-name {
    font-size: 20px;
  }
}
