/* =====================================================
   JENIKA MITTAL
   COMMON CSS
===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

:root {

  --bg-main: #08070a;
  --bg-secondary: #0f0d12;
  --bg-card: #151219;

  --gold: #d4af5a;
  --gold-light: #e7c878;

  --wine: #5b182d;

  --white: #ffffff;
  --text-primary: #f5f3f5;
  --text-secondary: #b8b3bb;

  --border: rgba(255, 255, 255, 0.08);

  --container: 1280px;

  --header-height: 78px;

  --transition: 0.3s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


body {
  margin: 0;

  background: var(--bg-main);
  color: var(--text-primary);

  font-family: "Poppins", sans-serif;

  font-size: 15px;
  line-height: 1.7;

  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font-family: inherit;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.container {
  width: min(
    var(--container),
    calc(100% - 40px)
  );

  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {

  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;

  background: rgba(8, 7, 10, 0.94);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    background var(--transition),
    box-shadow var(--transition);
}


.header-container {

  width: min(
    var(--container),
    calc(100% - 40px)
  );

  min-height: var(--header-height);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    210px
    1fr
    150px;

  align-items: center;

  gap: 20px;
}


/* =====================================================
   LOGO
===================================================== */

.site-logo {

  display: flex;

  align-items: center;

  width: fit-content;
}


.site-logo img {

  width: auto;

  height: 48px;

  object-fit: contain;
}


/* =====================================================
   MAIN NAVIGATION
===================================================== */

.main-nav {

  display: flex;

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

  gap: 30px;
}


.main-nav a {

  position: relative;

  display: inline-flex;

  align-items: center;

  padding: 8px 0;

  color: var(--text-primary);

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;

  transition:
    color var(--transition);
}


/* GOLD UNDERLINE */

.main-nav a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition:
    width var(--transition);
}


.main-nav a:hover {

  color: var(--gold-light);
}


.main-nav a:hover::after {

  width: 100%;
}


/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.header-whatsapp {

  display: inline-flex;

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

  gap: 8px;

  min-height: 42px;

  padding: 9px 17px;

  border-radius: 24px;

  background: #25d366;

  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    transform var(--transition),
    background var(--transition);
}


.header-whatsapp i {

  font-size: 17px;
}


.header-whatsapp:hover {

  color: #ffffff;

  background: #20bd5a;

  transform: translateY(-1px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

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

  flex-direction: column;

  gap: 5px;
}


.menu-toggle span {

  display: block;

  width: 25px;
  height: 2px;

  border-radius: 2px;

  background: var(--white);

  transition:
    transform var(--transition),
    opacity var(--transition);
}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 991px) {

  .header-container {

    min-height: 70px;

    width: calc(100% - 30px);

    grid-template-columns:
      1fr
      auto;

    gap: 15px;
  }


  .site-logo img {

    height: 44px;
  }


  /* Hide desktop WhatsApp */

  .header-whatsapp {

    display: none;
  }


  /* Show hamburger */

  .menu-toggle {

    display: flex;
  }


  /* Mobile navigation */

  .main-nav {

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    padding: 8px 20px 18px;

    /* SOLID BACKGROUND */
    background: #08070a;

    border-top: 1px solid var(--border);

    box-shadow:
      0 15px 30px rgba(0, 0, 0, 0.45);

    display: none;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 0;

    z-index: 9998;
  }


  .main-nav.active {

    display: flex;
  }


  .main-nav a {

    width: 100%;

    padding: 14px 5px;

    border-bottom: 1px solid var(--border);

    color: var(--text-primary);

    font-size: 14px;
    font-weight: 500;
  }

 .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a::after {

    display: none;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .header-container {

    width: calc(100% - 24px);

    min-height: 66px;
  }


  .site-logo img {

    height: 40px;
  }


  .main-nav {

    top: 66px;
  }

}

/* =====================================================
   CITY BANNER
===================================================== */

.city-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--bg-main);
}


/* =====================================================
   BANNER IMAGE
===================================================== */

.city-banner > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center 20%;
}


/* =====================================================
   DARK GRADIENT OVERLAY
===================================================== */

.city-banner-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(8, 7, 10, 0.92) 0%,
      rgba(8, 7, 10, 0.78) 28%,
      rgba(8, 7, 10, 0.48) 52%,
      rgba(8, 7, 10, 0.14) 78%,
      rgba(8, 7, 10, 0.08) 100%
    );
}


/* =====================================================
   BANNER CONTENT
===================================================== */

.city-banner-content {
  position: absolute;

  z-index: 2;

  top: 50%;
  left: max(
    40px,
    calc((100% - var(--container)) / 2)
  );

  transform: translateY(-50%);

  width: 540px;
}


/* =====================================================
   EYEBROW
===================================================== */

.banner-eyebrow {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 13px;
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =====================================================
   VISUAL BANNER TITLE
   NOT H1
===================================================== */

.banner-title {
  display: block;

  margin: 0 0 18px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(46px, 5vw, 70px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -0.5px;
}


/* =====================================================
   BANNER DESCRIPTION
===================================================== */

.banner-description {
  display: block;

  max-width: 500px;

  margin: 0 0 28px;

  color: var(--text-secondary);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.75;
}


/* =====================================================
   BANNER BUTTON
===================================================== */

.banner-btn {
  display: inline-flex;

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

  min-height: 46px;

  padding: 11px 24px;

  border: 1px solid var(--gold);

  border-radius: 26px;

  background: var(--gold);

  color: #09070a;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}


.banner-btn:hover {
  background: var(--gold-light);

  color: #09070a;

  transform: translateY(-2px);

  box-shadow:
    0 8px 24px rgba(212, 175, 90, 0.18);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .city-banner {
    height: 540px;
  }


  .city-banner > img {
    object-position: 72% center;
  }


  .city-banner-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 7, 10, 0.94) 0%,
        rgba(8, 7, 10, 0.76) 40%,
        rgba(8, 7, 10, 0.32) 72%,
        rgba(8, 7, 10, 0.10) 100%
      );
  }


  .city-banner-content {
    left: 30px;
    right: 30px;

    width: auto;
    max-width: 520px;
  }


  .banner-title {
    font-size: clamp(42px, 7vw, 58px);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .city-banner {
    height: 500px;
  }


  .city-banner > img {
    object-position: 74% center;
  }


  .city-banner-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 7, 10, 0.95) 0%,
        rgba(8, 7, 10, 0.82) 48%,
        rgba(8, 7, 10, 0.42) 78%,
        rgba(8, 7, 10, 0.12) 100%
      );
  }


  .city-banner-content {
    left: 22px;
    right: 22px;

    top: 52%;

    width: auto;

    max-width: 420px;
  }


  .banner-eyebrow {
    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: 1.5px;
  }


  .banner-title {
    margin-bottom: 14px;

    font-size: 40px;

    line-height: 1.08;
  }


  .banner-description {
    max-width: 360px;

    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.65;
  }


  .banner-btn {
    min-height: 42px;

    padding: 9px 19px;

    font-size: 13px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

  .city-banner {
    height: 470px;
  }


  .city-banner-content {
    left: 18px;
    right: 18px;
  }


  .banner-title {
    font-size: 35px;
  }


  .banner-description {
    font-size: 13px;
  }

}

/* =====================================================
   HOME / INTRODUCTION
===================================================== */

.home-section {
  position: relative;

  padding: 90px 0;

  background: var(--bg-main);
}


.home-content {
  width: min(1200px, 100%);

  margin: 0 auto;

  text-align: center;
}


/* =====================================================
   EYEBROW
===================================================== */

.section-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}


/* =====================================================
   H1
===================================================== */

.home-content h1 {
  max-width: 1050px;

  margin: 0 auto 30px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(36px, 4vw, 52px);

  font-weight: 600;

  line-height: 1.18;

  letter-spacing: -0.4px;
}


/* =====================================================
   H2
===================================================== */

.home-content h2 {
  margin: 0 auto 20px;

  font-family: "Playfair Display", serif;

  color: var(--gold-light);

  font-size: clamp(25px, 2.5vw, 34px);

  font-weight: 500;

  line-height: 1.3;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.home-content p {
  max-width: 1120px;

  margin: 0 auto 20px;

  color: var(--text-secondary);

  font-size: 15px;

  line-height: 1.85;
}


/* =====================================================
   H3
===================================================== */

.home-content h3 {
  margin: 34px 0 16px;

  font-family: "Playfair Display", serif;

  color: var(--text-primary);

  font-size: 22px;

  font-weight: 500;

  line-height: 1.4;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.home-highlights {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin-top: 42px;

  text-align: left;
}


.home-highlight {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding: 21px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.home-highlight:hover {
  transform: translateY(-3px);

  border-color:
    rgba(212, 175, 90, 0.35);
}


.highlight-icon {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: flex;

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

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.10);

  color: var(--gold);

  font-size: 15px;
}


.home-highlight strong {
  display: block;

  margin-bottom: 3px;

  color: var(--text-primary);

  font-size: 13px;

  font-weight: 600;
}


.home-highlight div > span {
  display: block;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.6;
}

@media (max-width: 700px) {

  .home-section {
    padding: 60px 0;
  }


  .home-content {
    text-align: left;
  }


  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }


  .home-content h1 {
    max-width: none;

    margin-bottom: 24px;

    font-size: 31px;

    line-height: 1.2;
  }


  .home-content h2 {
    margin-bottom: 18px;

    font-size: 25px;

    line-height: 1.3;
  }


  .home-content h3 {
    margin-top: 28px;

    font-size: 21px;
  }


  .home-content p {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 17px;
  }


  .home-highlights {
    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 30px;
  }

}

/* =====================================================
   FEATURED PROFILES
===================================================== */

.featured-profiles {
  padding: 90px 0;
  background: var(--bg-main);
}


/* =====================================================
   PROFILE LIST
===================================================== */

.featured-profile-list {
  width: min(1050px, 100%);
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  gap: 22px;
}


/* =====================================================
   PROFILE CARD
===================================================== */

.featured-profile-card {
  display: grid;

  grid-template-columns: 240px 1fr;

  min-height: 280px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(91, 24, 45, 0.32),
      rgba(21, 18, 25, 0.96)
    );

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    border-color var(--transition),
    transform var(--transition);
}


.featured-profile-card:hover {
  border-color:
    rgba(212, 175, 90, 0.35);

  transform: translateY(-2px);
}


/* =====================================================
   IMAGE
===================================================== */

.featured-profile-image {
  position: relative;

  min-height: 280px;

  overflow: hidden;
}


.featured-profile-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.featured-badge {
  position: absolute;

  top: 14px;
  left: 14px;

  padding: 5px 11px;

  border-radius: 20px;

  background: var(--gold);

  color: #08070a;

  font-size: 10px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}


/* =====================================================
   CONTENT
===================================================== */

.featured-profile-content {
  padding: 30px 34px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.profile-label {
  margin-bottom: 6px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.featured-profile-content h3 {
  margin: 0 0 10px;

  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: 27px;

  font-weight: 600;
}


.featured-profile-content p {
  max-width: 600px;

  margin: 0 0 18px;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.8;
}


/* =====================================================
   META
===================================================== */

.featured-profile-meta {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-bottom: 20px;
}


.featured-profile-meta span {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--text-secondary);

  font-size: 12px;
}


.featured-profile-meta i {
  color: var(--gold);

  font-size: 11px;
}


.featured-profile-meta strong {
  color: var(--gold-light);

  font-size: 14px;
}


/* =====================================================
   ACTIONS
===================================================== */

.featured-profile-actions {
  display: flex;

  gap: 10px;
}


.featured-profile-actions a {
  min-width: 110px;

  min-height: 38px;

  padding: 8px 15px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  border-radius: 6px;

  font-size: 11px;

  font-weight: 600;

  transition:
    transform var(--transition),
    opacity var(--transition);
}


.featured-call {
  background: var(--gold);

  color: #08070a;
}


.featured-call:hover {
  color: #08070a;

  opacity: 0.9;

  transform: translateY(-1px);
}


.featured-whatsapp {
  background: #25d366;

  color: #ffffff;
}


.featured-whatsapp:hover {
  color: #ffffff;

  background: #20bd5a;

  transform: translateY(-1px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

  .featured-profile-card {
    grid-template-columns: 190px 1fr;

    min-height: 240px;
  }


  .featured-profile-image {
    min-height: 240px;
  }


  .featured-profile-content {
    padding: 24px;
  }


  .featured-profile-content h3 {
    font-size: 23px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .featured-profiles {
    padding: 60px 0;
  }


  .featured-profile-list {
    gap: 16px;
  }


  .featured-profile-card {
    grid-template-columns: 115px 1fr;

    min-height: 190px;

    border-radius: 9px;
  }


  .featured-profile-image {
    min-height: 190px;
  }


  .featured-profile-content {
    padding: 17px 15px;
  }


  .profile-label {
    margin-bottom: 4px;

    font-size: 8px;
  }


  .featured-profile-content h3 {
    margin-bottom: 6px;

    font-size: 18px;
  }


  .featured-profile-content p {
    margin-bottom: 10px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    font-size: 10px;

    line-height: 1.55;
  }


  .featured-profile-meta {
    gap: 12px;

    margin-bottom: 11px;
  }


  .featured-profile-meta span {
    font-size: 9px;
  }


  .featured-profile-meta strong {
    font-size: 11px;
  }


  .featured-profile-actions {
    gap: 6px;
  }


  .featured-profile-actions a {
    min-width: 0;

    min-height: 30px;

    padding: 6px 10px;

    font-size: 9px;

    gap: 5px;
  }

}
/* =====================================================
   PROFILES SECTION
===================================================== */

.profiles-section {
  padding: 90px 0;
  background: var(--bg-main);
}


/* SECTION HEADING */

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 15px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
}

.section-heading p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 14px;
  line-height: 1.8;
}


/* =====================================================
   PROFILE GRID
===================================================== */

.profiles-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}


/* =====================================================
   PROFILE CARD
===================================================== */

.profile-card {
  overflow: hidden;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 14px;

  transition:
    transform var(--transition),
    border-color var(--transition);
}

.profile-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(212, 175, 90, 0.35);
}


/* IMAGE */

.profile-image {
  width: 100%;

  aspect-ratio: 320 / 430;

  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.profile-card:hover .profile-image img {
  transform: scale(1.03);
}


/* =====================================================
   PROFILE INFO
===================================================== */

.profile-info {
  padding: 15px 16px 17px;
}

.profile-info h3 {
  margin: 0 0 7px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}


/* NAME / AGE / RATE */

.profile-meta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;
}

.profile-meta span {
  color: var(--text-secondary);

  font-size: 12px;
  line-height: 1.4;
}

.profile-meta span:last-child {
  color: var(--gold);

  font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .profiles-section {
    padding: 75px 0;
  }

  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .profiles-section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .profile-info {
    padding: 12px;
  }

  .profile-info h3 {
    font-size: 17px;
  }

  .profile-meta span {
    font-size: 11px;
  }

}
/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-section {
  padding: 100px 0;

  background: var(--bg-secondary);

  border-top: 1px solid rgba(255, 255, 255, 0.03);
}


/* =====================================================
   SECTION HEADER
===================================================== */

.why-header {
  width: min(1200px, 100%);

  margin: 0 auto 42px;

  text-align: center;
}


.why-header h2 {
  max-width: 900px;

  margin: 0 auto;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(34px, 4vw, 50px);

  font-weight: 600;

  line-height: 1.2;
}


.why-divider {
  width: 55px;
  height: 2px;

  margin: 22px auto 0;

  background: var(--gold);
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.why-content {
  width: min(1200px, 100%);

  margin: 0 auto;
}


.why-content p {
  max-width: 1120px;

  margin: 0 auto 20px;

  color: var(--text-secondary);

  font-size: 15px;

  line-height: 1.9;
}


.why-content p:last-child {
  margin-bottom: 0;
}


/* INTERNAL LINKS */

.why-content a,
.profile-range a {
  color: var(--gold-light);

  text-decoration: none;

  transition: color var(--transition);
}


.why-content a:hover,
.profile-range a:hover {
  color: var(--white);
}


/* =====================================================
   PROFILE RANGE
===================================================== */

.profile-range {
  width: min(1200px, 100%);

  margin: 62px auto 0;

  padding-top: 52px;

  border-top: 1px solid var(--border);
}


.profile-range .section-eyebrow {
  display: block;

  margin-bottom: 12px;
}


.profile-range h3 {
  margin: 0 0 22px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(28px, 3vw, 38px);

  font-weight: 500;

  line-height: 1.25;
}


.profile-range p {
  max-width: 1120px;

  margin: 0 0 18px;

  color: var(--text-secondary);

  font-size: 15px;

  line-height: 1.9;
}


/* =====================================================
   OCCASION GRID
===================================================== */

.occasion-grid {
  width: min(1200px, 100%);

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;

  margin: 42px auto 0;
}


.occasion-card {
  padding: 25px 22px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.occasion-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(212, 175, 90, 0.35);

  background: #18151c;
}


/* ICON */

.occasion-icon {
  width: 42px;
  height: 42px;

  display: flex;

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

  margin-bottom: 17px;

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.10);

  color: var(--gold);

  font-size: 15px;
}


.occasion-card h4 {
  margin: 0 0 8px;

  color: var(--text-primary);

  font-size: 15px;

  font-weight: 600;
}


.occasion-card p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
   CLOSING
===================================================== */

.why-closing {
  width: min(1200px, 100%);

  margin: 34px auto 0;

  padding-top: 28px;

  border-top: 1px solid var(--border);
}


.why-closing p {
  max-width: 1000px;

  margin: 0;

  color: var(--text-secondary);

  font-size: 15px;

  line-height: 1.85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .why-section {
    padding: 78px 0;
  }


  .why-content p,
  .profile-range p {
    max-width: 100%;
  }


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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .why-section {
    padding: 60px 0;
  }


  .why-header {
    margin-bottom: 32px;

    text-align: left;
  }


  .why-header h2 {
    font-size: 31px;

    line-height: 1.25;
  }


  .why-divider {
    margin: 18px 0 0;
  }


  .why-content p,
  .profile-range p,
  .why-closing p {
    font-size: 14px;

    line-height: 1.8;
  }


  .profile-range {
    margin-top: 45px;

    padding-top: 38px;
  }


  .profile-range h3 {
    font-size: 27px;

    line-height: 1.3;
  }


  .occasion-grid {
    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 30px;
  }


  .occasion-card {
    padding: 20px;
  }


  .why-closing {
    margin-top: 28px;

    padding-top: 24px;
  }

}

/* =====================================================
   CATEGORIES SECTION
===================================================== */

.categories-section {
  padding: 90px 0;

  background: var(--bg-secondary);
}


/* =====================================================
   CATEGORY GRID
===================================================== */

.categories-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  width: min(1200px, 100%);

  margin: 0 auto;
}


/* =====================================================
   CATEGORY CARD
===================================================== */

.category-card {

  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 16px;

  min-height: 155px;

  padding: 24px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 14px;

  overflow: hidden;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}


.category-card::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 2px;

  background: var(--gold);

  transform: scaleY(0);

  transform-origin: bottom;

  transition:
    transform var(--transition);
}


.category-card:hover {

  transform: translateY(-4px);

  background: #18151c;

  border-color:
    rgba(212, 175, 90, 0.35);
}


.category-card:hover::before {

  transform: scaleY(1);
}


/* =====================================================
   CATEGORY ICON
===================================================== */

.category-icon {

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: flex;

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

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.10);

  color: var(--gold);

  font-size: 16px;
}


/* =====================================================
   CATEGORY CONTENT
===================================================== */

.category-content {

  flex: 1;
}


.category-content h3 {

  margin: 0 0 7px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: 20px;

  font-weight: 500;

  line-height: 1.3;
}


.category-content p {

  margin: 0;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   ARROW
===================================================== */

.category-arrow {

  position: absolute;

  right: 18px;
  bottom: 18px;

  color: var(--gold);

  font-size: 12px;

  transition:
    transform var(--transition);
}


.category-card:hover .category-arrow {

  transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .categories-section {

    padding: 75px 0;
  }


  .categories-grid {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 15px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .categories-section {

    padding: 60px 0;
  }


  .categories-grid {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 12px;
  }


  .category-card {

    display: block;

    min-height: 175px;

    padding: 19px 16px;
  }


  .category-icon {

    width: 40px;
    height: 40px;

    margin-bottom: 14px;
  }


  .category-content h3 {

    font-size: 17px;
  }


  .category-content p {

    font-size: 11px;

    line-height: 1.6;
  }


  .category-arrow {

    right: 14px;
    bottom: 14px;
  }

}

/* =====================================================
   BOOKING SECTION
===================================================== */

.booking-section {
  padding: 90px 0;

  background: var(--bg-main);
}


/* =====================================================
   BOOKING STEPS
===================================================== */

.booking-steps {
  width: min(1200px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 14px;
}


/* =====================================================
   STEP CARD
===================================================== */

.booking-step {
  position: relative;

  padding: 28px 20px 24px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 14px;

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.booking-step:hover {
  transform: translateY(-4px);

  border-color:
    rgba(212, 175, 90, 0.35);
}


/* STEP NUMBER */

.step-number {
  position: absolute;

  top: 15px;
  right: 17px;

  color: rgba(212, 175, 90, 0.45);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;
}


/* STEP ICON */

.step-icon {
  width: 44px;
  height: 44px;

  display: flex;

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

  margin-bottom: 19px;

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.10);

  color: var(--gold);

  font-size: 16px;
}


/* STEP TITLE */

.booking-step h3 {
  margin: 0 0 10px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: 19px;

  font-weight: 500;

  line-height: 1.3;
}


/* STEP TEXT */

.booking-step p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   BOOKING NOTE
===================================================== */

.booking-note {
  width: min(900px, 100%);

  margin: 35px auto 0;

  padding: 18px 22px;

  display: flex;

  align-items: flex-start;

  gap: 13px;

  background:
    rgba(212, 175, 90, 0.05);

  border: 1px solid
    rgba(212, 175, 90, 0.15);

  border-radius: 10px;
}


.booking-note i {
  flex: 0 0 auto;

  margin-top: 4px;

  color: var(--gold);

  font-size: 14px;
}


.booking-note p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

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

}


@media (max-width: 991px) {

  .booking-section {
    padding: 75px 0;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .booking-section {
    padding: 60px 0;
  }


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

    gap: 12px;
  }


  .booking-step {
    padding: 22px 16px;
  }


  .step-number {
    top: 12px;
    right: 13px;
  }


  .step-icon {
    width: 40px;
    height: 40px;

    margin-bottom: 15px;
  }


  .booking-step h3 {
    font-size: 17px;
  }


  .booking-step p {
    font-size: 11px;

    line-height: 1.65;
  }


  .booking-note {
    margin-top: 25px;

    padding: 16px;

    gap: 10px;
  }

}

/* =====================================================
   RATES SECTION
===================================================== */

.rates-section {
  padding: 90px 0;

  background: var(--bg-secondary);
}


/* =====================================================
   RATES GRID
===================================================== */

.rates-grid {
  width: min(1050px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  align-items: stretch;
}


/* =====================================================
   RATE CARD
===================================================== */

.rate-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 32px 25px 26px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 15px;

  text-align: center;

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.rate-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(212, 175, 90, 0.35);
}


/* =====================================================
   FEATURED CARD
===================================================== */

.rate-card-featured {
  border-color:
    rgba(212, 175, 90, 0.38);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.20);
}


/* POPULAR BADGE */

.rate-badge {
  position: absolute;

  top: 14px;
  right: 14px;

  padding: 4px 9px;

  border-radius: 20px;

  background: var(--gold);

  color: #09070a;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}


/* LABEL */

.rate-label {
  display: block;

  margin-bottom: 10px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


/* TITLE */

.rate-card h3 {
  margin: 0 0 12px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: 25px;

  font-weight: 500;

  line-height: 1.25;
}


/* =====================================================
   PRICE
===================================================== */

.rate-price {
  margin-bottom: 17px;

  color: var(--gold-light);

  font-size: 34px;

  font-weight: 600;

  line-height: 1;
}


.rate-price span {
  font-size: 20px;

  vertical-align: 3px;

  margin-right: 2px;
}


/* DESCRIPTION */

.rate-description {
  min-height: 66px;

  margin: 0 0 20px;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   FEATURES
===================================================== */

.rate-features {
  list-style: none;

  margin: 0 0 24px;
  padding: 0;

  text-align: left;
}


.rate-features li {
  display: flex;

  align-items: center;

  gap: 9px;

  padding: 8px 0;

  border-bottom: 1px solid var(--border);

  color: var(--text-secondary);

  font-size: 12px;
}


.rate-features li:last-child {
  border-bottom: none;
}


.rate-features i {
  color: var(--gold);

  font-size: 10px;
}


/* =====================================================
   BUTTON
===================================================== */

.rate-btn {
  display: inline-flex;

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

  min-height: 42px;

  margin-top: auto;

  padding: 9px 20px;

  border: 1px solid var(--gold);

  border-radius: 24px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 600;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}


.rate-btn:hover {
  background: var(--gold);

  color: #09070a;

  transform: translateY(-2px);
}


/* =====================================================
   RATES NOTE
===================================================== */

.rates-note {
  width: min(900px, 100%);

  margin: 32px auto 0;

  padding: 16px 20px;

  display: flex;

  align-items: flex-start;

  gap: 11px;

  background:
    rgba(212, 175, 90, 0.05);

  border: 1px solid
    rgba(212, 175, 90, 0.14);

  border-radius: 10px;
}


.rates-note i {
  margin-top: 4px;

  color: var(--gold);

  font-size: 13px;
}


.rates-note p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .rates-section {
    padding: 75px 0;
  }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .rates-section {
    padding: 60px 0;
  }

  .rates-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .rate-card {
    padding: 27px 20px 22px;
  }

  .rate-description {
    min-height: auto;
  }

  .rates-note {
    padding: 15px;
  }
  .rate-btn {
    width: 45%;
    min-height: 42px;

    margin-left: auto;
    margin-right: auto;

    padding: 8px 16px;

    font-size: 12px;
  }


}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
  padding: 90px 0;

  background: var(--bg-main);
}


/* =====================================================
   CONTACT BOX
===================================================== */

.contact-box {

  width: min(1200px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.35fr
    0.65fr;

  gap: 60px;

  align-items: center;

  padding: 55px;

  background:
    linear-gradient(
      135deg,
      #17141b 0%,
      #100d13 100%
    );

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   CONTENT
===================================================== */

.contact-content h2 {

  margin: 0 0 18px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(32px, 4vw, 46px);

  font-weight: 600;

  line-height: 1.2;
}


.contact-content p {

  max-width: 650px;

  margin: 0;

  color: var(--text-secondary);

  font-size: 15px;

  line-height: 1.85;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.contact-actions {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;
}


.contact-btn {

  display: inline-flex;

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

  gap: 9px;

  min-height: 46px;

  padding: 10px 22px;

  border-radius: 25px;

  font-size: 13px;

  font-weight: 600;

  transition:
    transform var(--transition),
    background var(--transition);
}


/* WHATSAPP */

.contact-whatsapp {

  background: #25d366;

  color: #ffffff;
}


.contact-whatsapp:hover {

  color: #ffffff;

  background: #20bd5a;

  transform: translateY(-2px);
}


/* CALL */

.contact-call {

  background: var(--gold);

  color: #09070a;
}


.contact-call:hover {

  color: #09070a;

  background: var(--gold-light);

  transform: translateY(-2px);
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info {

  display: flex;

  flex-direction: column;

  gap: 18px;
}


.contact-info-item {

  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding-bottom: 18px;

  border-bottom: 1px solid var(--border);
}


.contact-info-item:last-child {

  padding-bottom: 0;

  border-bottom: none;
}


.contact-info-icon {

  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: flex;

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

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.10);

  color: var(--gold);

  font-size: 13px;
}


.contact-info-item strong {

  display: block;

  margin-bottom: 3px;

  color: var(--text-primary);

  font-size: 13px;

  font-weight: 600;
}


.contact-info-item div > span {

  display: block;

  color: var(--text-secondary);

  font-size: 11px;

  line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .contact-section {

    padding: 75px 0;
  }


  .contact-box {

    grid-template-columns: 1fr;

    gap: 35px;

    padding: 40px;
  }


  .contact-info {

    max-width: 600px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .contact-section {

    padding: 60px 0;
  }


  .contact-box {

    padding: 30px 20px;

    border-radius: 14px;

    gap: 30px;
  }


  .contact-content h2 {

    font-size: 31px;
  }


  .contact-content p {

    font-size: 14px;

    line-height: 1.8;
  }


  .contact-actions {

    gap: 9px;

    margin-top: 23px;
  }


  .contact-btn {

    flex: 1;

    min-height: 44px;

    padding: 9px 14px;

    font-size: 12px;
  }


  .contact-info-item {

    gap: 10px;
  }

}
/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
  padding: 90px 0;

  background: var(--bg-secondary);
}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {
  width: min(1000px, 100%);

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 10px;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {

  overflow: hidden;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 10px;

  transition:
    border-color var(--transition);
}


.faq-item.active {

  border-color:
    rgba(212, 175, 90, 0.35);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {

  width: 100%;

  min-height: 62px;

  padding: 17px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border: 0;

  background: transparent;

  color: var(--text-primary);

  font-family: "Poppins", sans-serif;

  font-size: 14px;

  font-weight: 500;

  text-align: left;

  cursor: pointer;
}


.faq-question:hover {

  color: var(--gold-light);
}


/* PLUS ICON */

.faq-question i {

  flex: 0 0 auto;

  color: var(--gold);

  font-size: 12px;

  transition:
    transform var(--transition);
}


.faq-item.active .faq-question i {

  transform: rotate(45deg);
}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.3s ease;
}


.faq-answer > p {

  overflow: hidden;

  margin: 0;

  padding: 0 20px;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.8;

  transition:
    padding 0.3s ease;
}


.faq-item.active .faq-answer {

  grid-template-rows: 1fr;
}


.faq-item.active .faq-answer > p {

  padding: 0 20px 20px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .faq-section {

    padding: 60px 0;
  }


  .faq-list {

    gap: 8px;
  }


  .faq-question {

    min-height: 58px;

    padding: 15px 16px;

    font-size: 13px;

    line-height: 1.5;
  }


  .faq-question i {

    font-size: 11px;
  }


  .faq-answer > p {

    padding-left: 16px;

    padding-right: 16px;

    font-size: 12px;

    line-height: 1.75;
  }


  .faq-item.active .faq-answer > p {

    padding-left: 16px;

    padding-right: 16px;

    padding-bottom: 17px;
  }

}

/* =====================================================
   JENIKA MITTAL
   FOOTER
===================================================== */

.jm-footer {
  background: #060509;

  border-top: 1px solid var(--border);

  color: var(--text-secondary);
}


/* =====================================================
   FOOTER INNER
===================================================== */

.jm-footer-inner {

  width: min(
    var(--container),
    calc(100% - 40px)
  );

  margin: 0 auto;

  padding: 70px 0 55px;

  display: grid;

  grid-template-columns:
    1.5fr
    0.8fr
    0.8fr
    1fr;

  gap: 50px;
}


/* =====================================================
   BRAND
===================================================== */

.jm-footer-brand h3 {

  margin: 0 0 15px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: 27px;

  font-weight: 600;

  line-height: 1.2;
}


.jm-footer-brand > p {

  max-width: 390px;

  margin: 0;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.8;
}


/* =====================================================
   SOCIAL
===================================================== */

.jm-footer-social {

  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 22px;
}


.jm-footer-social a {

  width: 36px;
  height: 36px;

  display: flex;

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

  border: 1px solid var(--border);

  border-radius: 50%;

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

  color: var(--text-secondary);

  font-size: 13px;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}


.jm-footer-social a:hover {

  color: var(--gold);

  background:
    rgba(212, 175, 90, 0.08);

  border-color:
    rgba(212, 175, 90, 0.35);

  transform: translateY(-2px);
}


/* =====================================================
   FOOTER HEADINGS
===================================================== */

.jm-footer-links h4,
.jm-footer-locations h4,
.jm-footer-contact h4 {

  position: relative;

  margin: 0 0 20px;

  padding-bottom: 10px;

  color: var(--white);

  font-size: 14px;

  font-weight: 600;
}


.jm-footer-links h4::after,
.jm-footer-locations h4::after,
.jm-footer-contact h4::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 30px;
  height: 2px;

  background: var(--gold);
}


/* =====================================================
   FOOTER LISTS
===================================================== */

.jm-footer-links ul,
.jm-footer-locations ul {

  list-style: none;

  margin: 0;
  padding: 0;
}


.jm-footer-links li,
.jm-footer-locations li {

  margin-bottom: 9px;
}


.jm-footer-links a,
.jm-footer-locations a {

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.6;

  transition:
    color var(--transition),
    padding-left var(--transition);
}


.jm-footer-links a:hover,
.jm-footer-locations a:hover {

  color: var(--gold-light);

  padding-left: 4px;
}


/* =====================================================
   CONTACT
===================================================== */

.jm-footer-contact {

  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


.jm-footer-contact > a {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.5;

  transition:
    color var(--transition);
}


.jm-footer-contact > a:hover {

  color: var(--gold-light);
}


.jm-footer-contact > a i {

  width: 17px;

  color: var(--gold);

  font-size: 13px;

  text-align: center;
}


/* LOCATION */

.jm-footer-contact > p {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin: 5px 0 0;

  color: var(--text-secondary);

  font-size: 13px;

  line-height: 1.6;
}


.jm-footer-contact > p i {

  width: 17px;

  margin-top: 4px;

  color: var(--gold);

  font-size: 13px;

  text-align: center;
}


/* =====================================================
   LEGAL
===================================================== */

.jm-footer-legal {

  width: min(
    var(--container),
    calc(100% - 40px)
  );

  margin: 0 auto;

  padding: 20px 0;

  display: flex;

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

  flex-wrap: wrap;

  gap: 10px;

  border-top: 1px solid var(--border);

  color: var(--text-secondary);

  font-size: 11px;
}


.jm-footer-legal a {

  color: var(--text-secondary);

  transition:
    color var(--transition);
}


.jm-footer-legal a:hover {

  color: var(--gold-light);
}


.jm-footer-legal span {

  color:
    rgba(255, 255, 255, 0.20);
}


/* =====================================================
   COPYRIGHT
===================================================== */

.jm-footer-copy {

  padding: 17px 20px;

  border-top: 1px solid
    rgba(255, 255, 255, 0.05);

  text-align: center;
}


.jm-footer-copy p {

  margin: 0;

  color:
    rgba(184, 179, 187, 0.75);

  font-size: 11px;

  line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .jm-footer-inner {

    padding: 60px 0 45px;

    grid-template-columns:
      repeat(2, 1fr);

    gap: 45px 35px;
  }


  .jm-footer-brand {

    grid-column: 1 / -1;
  }


  .jm-footer-brand > p {

    max-width: 600px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .jm-footer-inner {

    width: calc(100% - 30px);

    padding: 50px 0 38px;

    grid-template-columns: 1fr;

    gap: 32px;
  }


  .jm-footer-brand {

    grid-column: auto;
  }


  .jm-footer-brand h3 {

    font-size: 25px;
  }


  .jm-footer-brand > p {

    font-size: 12px;

    line-height: 1.8;
  }


  .jm-footer-social {

    margin-top: 18px;
  }


  .jm-footer-social a {

    width: 34px;
    height: 34px;

    font-size: 12px;
  }


  .jm-footer-links h4,
  .jm-footer-locations h4,
  .jm-footer-contact h4 {

    margin-bottom: 16px;
  }


  .jm-footer-links li,
  .jm-footer-locations li {

    margin-bottom: 8px;
  }


  .jm-footer-links a,
  .jm-footer-locations a,
  .jm-footer-contact > a,
  .jm-footer-contact > p {

    font-size: 12px;
  }


  .jm-footer-legal {

    width: calc(100% - 30px);

    padding: 18px 0;

    gap: 7px;

    font-size: 10px;
  }


  .jm-footer-copy {

    padding: 15px;
  }


  .jm-footer-copy p {

    font-size: 10px;
  }

}

/* =====================================================
   MOBILE FIXED CONTACT BAR
===================================================== */

.mobile-contact-bar {

  display: none;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .mobile-contact-bar {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    padding: 8px 10px;

    background: rgba(8, 7, 10, 0.96);

    border-top: 1px solid var(--border);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
  }


  .mobile-contact-btn {

    min-height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
      transform var(--transition),
      opacity var(--transition);
  }


  .mobile-contact-btn:active {

    transform: scale(0.98);

  }


  /* CALL */

  .mobile-call {

    background: var(--gold);

    color: #08070a;

  }


  .mobile-call:hover {

    color: #08070a;

    opacity: 0.92;

  }


  /* WHATSAPP */

  .mobile-whatsapp {

    background: #25d366;

    color: #ffffff;

  }


  .mobile-whatsapp:hover {

    color: #ffffff;

    background: #20bd5a;

  }


  .mobile-contact-btn i {

    font-size: 16px;

  }


  /* Prevent footer content from being hidden */

  body {

    padding-bottom: 68px;

  }

}


/* =====================================================
   SPLIT CONTENT SECTIONS
===================================================== */

.split-content-section {
  padding: 90px 0;
}

.split-content-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 45px;
}

.split-content-reverse .split-content-grid {
  grid-template-columns: 40% 60%;
}


/* CONTENT */

.split-content-text {
  padding: 10px 0;
}

.split-content-text h1,
.split-content-text h2 {
  margin: 0 0 22px;
  max-width: 750px;
}

.split-content-text p {
  margin: 0 0 18px;
  max-width: 760px;
  line-height: 1.85;
}


/* IMAGE */

.split-content-image {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 45px;

  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.split-content-image img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.split-content-image:hover img {
  transform: scale(1.03);
}


/* SECOND SECTION */

.split-content-reverse {
  background: rgba(255, 255, 255, 0.015);
}


/* MOBILE */

@media (max-width: 768px) {

  .split-content-section {
    padding: 60px 0;
  }

  .split-content-grid,
  .split-content-reverse .split-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-content-image {
    order: 2;
  }

  .split-content-text {
    order: 1;
  }

  .split-content-text h1,
  .split-content-text h2 {
    margin-bottom: 16px;
  }

  .split-content-text p {
    font-size: 14px;
    line-height: 1.75;
  }

}

/* =====================================================
   ABOUT / SPLIT CONTENT SECTION
===================================================== */

.split-content-section {
  padding: 90px 0;
  background: var(--bg-main);
}

.split-content-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 60px;
}


/* =====================================================
   CONTENT
===================================================== */

.split-content-text {
  padding: 5px 0;
}

.split-content-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--gold-light);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.split-content-text h2 {
  margin: 0 0 22px;

  max-width: 720px;

  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  font-weight: 600;
}

.split-content-text p {
  margin: 0 0 18px;

  max-width: 760px;

  color: var(--text-secondary);

  font-size: 14px;
  line-height: 1.85;
}

.split-content-text p:last-child {
  margin-bottom: 0;
}

.split-content-text a {
  color: var(--gold-light);
  text-decoration: none;
}

.split-content-text a:hover {
  color: var(--gold);
}


/* =====================================================
   IMAGE
===================================================== */

.split-content-image {
  width: 100%;
  max-width: 520px;

  margin-left: auto;
  margin-right: 20px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 14px;

  background: #111;
}

.split-content-image img {
  display: block;

  width: 100%;
  height: 580px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.split-content-image:hover img {
  transform: scale(1.025);
}


/* =====================================================
   REVERSE SECTION
   Image Left / Content Right
===================================================== */

.split-content-reverse .split-content-grid {
  grid-template-columns: 40% 60%;
}

.split-content-reverse .split-content-image {
  margin-left: 20px;
  margin-right: auto;
}

.split-content-reverse .split-content-text {
  order: 2;
}

.split-content-reverse .split-content-image {
  order: 1;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .split-content-section {
    padding: 75px 0;
  }

  .split-content-grid {
    grid-template-columns: 55% 45%;
    gap: 40px;
  }

  .split-content-reverse .split-content-grid {
    grid-template-columns: 45% 55%;
  }

  .split-content-text h2 {
    font-size: 36px;
  }

  .split-content-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .split-content-image {
    max-width: 100%;
    margin-right: 10px;
  }

  .split-content-reverse .split-content-image {
    margin-left: 10px;
  }

  .split-content-image img {
    height: 520px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .split-content-section {
    padding: 60px 0;
  }

  .split-content-grid,
  .split-content-reverse .split-content-grid {
    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  /* Image first */
  .split-content-image,
  .split-content-reverse .split-content-image {
    order: 2;

    width: 100%;
    max-width: 100%;

    margin: 0;
  }

  .split-content-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;
  }

  /* Content second */
  .split-content-text,
  .split-content-reverse .split-content-text {
    order: 2;

    width: 100%;
  }

  .split-content-text .section-eyebrow {
    margin-bottom: 8px;

    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .split-content-text h2 {
    margin-bottom: 16px;

    font-size: 30px;
    line-height: 1.2;
  }

  .split-content-text p {
    margin-bottom: 15px;

    font-size: 13px;
    line-height: 1.75;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .split-content-section {
    padding: 50px 0;
  }

  .split-content-image img {
    aspect-ratio: 4 / 5;
  }

  .split-content-text h2 {
    font-size: 27px;
  }

  .split-content-text p {
    font-size: 12.5px;
    line-height: 1.75;
  }

}

/* =====================================================
   CATEGORY SECTION
===================================================== */

.category-section {
  padding: 90px 0;
  background: var(--bg-main);
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.category-layout {
  display: grid;

  grid-template-columns: 40% 60%;

  align-items: center;

  gap: 55px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.category-intro {
  max-width: 480px;
}

.category-intro h2 {
  margin: 0 0 20px;

  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: clamp(32px, 3.4vw, 35px);

  line-height: 1.15;
}

.category-intro p {
  margin: 0 0 16px;

  color: var(--text-secondary);

  font-size: 14px;

  line-height: 1.8;
}


/* =====================================================
   BUTTON
===================================================== */

.category-btn {
  display: inline-flex;

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

  margin-top: 10px;

  min-height: 42px;

  padding: 10px 22px;

  border-radius: 5px;

  background: var(--gold);

  color: #08070a;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.category-btn:hover {
  color: #08070a;

  background: var(--gold-light);

  transform: translateY(-2px);
}


/* =====================================================
   CATEGORY GRID — 3 × 2
===================================================== */

.category-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}


/* =====================================================
   CATEGORY CARD
===================================================== */

.category-card {
  min-height: 125px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  gap: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(91, 24, 45, 0.28),
      rgba(20, 17, 24, 0.95)
    );

  border: 1px solid var(--border);

  border-radius: 10px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}


.category-card:hover {
  color: inherit;

  border-color:
    rgba(212, 175, 90, 0.55);

  background:
    linear-gradient(
      145deg,
      rgba(91, 24, 45, 0.42),
      rgba(24, 20, 28, 0.98)
    );

  transform: translateY(-3px);
}


/* =====================================================
   ICON
===================================================== */

.category-icon {
  width: 38px;
  height: 38px;

  display: flex;

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

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.12);

  border: 1px solid
    rgba(212, 175, 90, 0.22);

  color: var(--gold-light);

  font-size: 14px;
}


/* =====================================================
   TEXT
===================================================== */

.category-card h3 {
  margin: 0 0 3px;

  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: 18px;

  font-weight: 600;
}

.category-card span {
  color: var(--text-secondary);

  font-size: 10px;

  line-height: 1.4;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .category-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .category-intro {
    max-width: 700px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .category-section {
    padding: 60px 0;
  }

  .category-layout {
    gap: 30px;
  }

  .category-intro h2 {
    font-size: 29px;
  }

  .category-intro p {
    font-size: 13px;
  }

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

    gap: 10px;
  }

  .category-card {
    min-height: 115px;

    padding: 15px;

    gap: 9px;
  }

  .category-icon {
    width: 34px;
    height: 34px;

    font-size: 12px;
  }

  .category-card h3 {
    font-size: 16px;
  }

  .category-card span {
    font-size: 9px;
  }

}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 70px;
}


/* =====================================================
   CONTENT
===================================================== */

.contact-content {
  max-width: 520px;
}

.contact-content h2 {
  margin: 0 0 20px;

  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
}

.contact-content p {
  margin: 0 0 17px;

  color: var(--text-secondary);

  font-size: 14px;
  line-height: 1.85;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  width: 100%;

  min-height: 78px;

  padding: 15px 18px;

  display: flex;
  align-items: center;

  gap: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(91, 24, 45, 0.28),
      rgba(21, 18, 25, 0.95)
    );

  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--text-primary);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

a.contact-item:hover {
  color: var(--white);

  border-color:
    rgba(212, 175, 90, 0.45);

  transform: translateX(4px);
}


/* =====================================================
   ICON
===================================================== */

.contact-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

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

  border-radius: 50%;

  background:
    rgba(212, 175, 90, 0.12);

  border: 1px solid
    rgba(212, 175, 90, 0.22);

  color: var(--gold-light);

  font-size: 15px;
}

.whatsapp-icon {
  color: #25d366;

  background:
    rgba(37, 211, 102, 0.10);

  border-color:
    rgba(37, 211, 102, 0.22);
}


/* =====================================================
   TEXT
===================================================== */

.contact-item-content {
  display: flex;
  flex-direction: column;

  flex: 1;
}

.contact-item-content strong {
  color: var(--white);

  font-size: 14px;
  font-weight: 600;
}

.contact-item-content small {
  margin-top: 2px;

  color: var(--text-secondary);

  font-size: 11px;
}


/* =====================================================
   ARROW
===================================================== */

.contact-arrow {
  color: var(--gold);

  font-size: 11px;

  transition:
    transform var(--transition);
}

.contact-item:hover .contact-arrow {
  transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .contact-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .contact-content {
    max-width: 720px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-content h2 {
    font-size: 30px;
  }

  .contact-content p {
    font-size: 13px;
    line-height: 1.75;
  }

  .contact-item {
    min-height: 68px;

    padding: 12px 14px;

    gap: 12px;
  }

  .contact-icon {
    flex-basis: 38px;

    width: 38px;
    height: 38px;

    font-size: 13px;
  }

  .contact-item-content strong {
    font-size: 12px;
  }

  .contact-item-content small {
    font-size: 9px;
  }

}