:root {

  /* Brand Colors */
  --primary: #D97941;
  --primary-dark: #BF6431;
  --primary-light: #F7E8DE;

  /* Neutral Colors */
  --white: #FFFFFF;
  --light: #FCF8F5;
  --dark: #2F2F2F;
  --secondary: #8D8D8D;

  /* Text Colors */
  --text: #444444;
  --text-light: #777777;

  /* Borders */
  --border: #E8DDD6;

  /* Shadows */
  --shadow-sm: 0 8px 25px rgba(0, 0, 0, .05);
  --shadow-md: 0 15px 45px rgba(0, 0, 0, .08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);

  /* Border Radius */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  /* Transition */
  --transition: .35s ease;

}

body {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  position: relative;
}

.hero,
.ab-hero,
.ev-hero,
.gal-hero,
.svc-hero {
  overflow: hidden;
}

@media (max-width:767px) {

  .o1,
  .o2 {
    display: none;
  }
.mt-5{
    margin-top: 10px !important;
}
}












/*=========================================
    ROOT COLORS
==========================================*/



/*=========================================
    GLOBAL
==========================================*/

body {

  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--light);

}

section {

  position: relative;

}

img {

  max-width: 100%;

}

a {

  text-decoration: none;
  color: var(--primary);

}


/*==================================================
    ASHIYAA EVENTS - LIGHT LUXURY NAVBAR
===================================================*/



/*==================================================
    NAVBAR
===================================================*/
#nav {

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 999;

  height: var(--nav-h);

  display: flex;

  align-items: center;

  background: #FCF8F5;

  border-bottom: 1px solid rgba(217, 121, 65, .12);

  transition: var(--transition);

  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);

}

#nav.scrolled {

  height: var(--nav-h-scrolled);

  background: #FCF8F5;

  border-bottom: 1px solid rgba(217, 121, 65, .15);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}


/*==================================================
    LOGO
===================================================*/

.logo {

  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

  transition: var(--transition);

}


.logo:hover {

  transform: translateY(-2px);

}


.logo-mark {

  width: 55px;

  height: 55px;

  background: #fff;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

}


.logo:hover .logo-mark {

  transform: translateY(-4px);

  box-shadow: var(--shadow-md);

}


.logo-mark i {

  color: var(--primary);

  font-size: 22px;

}


.logo-name {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 700;

  color: var(--dark);

  margin: 0;

  letter-spacing: .5px;

}


.logo-name span {

  color: var(--primary);

  font-style: italic;

  font-weight: 500;

}


/*==================================================
    NAVIGATION LINKS
===================================================*/

.nav-links {

  display: flex;

  align-items: center;

  gap: 34px;

  margin: 0;

  padding: 0;

  list-style: none;

}


.nav-links li {

  position: relative;

}


.nav-links a {

  position: relative;

  display: inline-block;

  text-decoration: none;

  color: var(--text);

  font-size: 14px;

  font-weight: 500;

  letter-spacing: .5px;

  padding: 10px 0;

  transition: var(--transition);

}


.nav-links a::after {

  content: "";

  position: absolute;

  left: 50%;

  bottom: 0;

  width: 0;

  height: 2px;

  border-radius: 20px;

  background: var(--primary);

  transform: translateX(-50%);

  transition: var(--transition);

}


.nav-links a:hover {

  color: var(--primary);

}


.nav-links a:hover::after {

  width: 100%;

}


/* Active Link */

.nav-links .active {

  color: var(--primary);

}


.nav-links .active::after {

  width: 100%;

}


/*==================================================
    RIGHT NAVIGATION
===================================================*/

.nav-right {

  display: flex;

  align-items: center;

  gap: 25px;

}


.nav-tel {

  display: flex;

  align-items: center;

  gap: 8px;

  text-decoration: none;

  color: var(--text);

  font-size: 14px;

  font-weight: 500;

  transition: var(--transition);

}


.nav-tel i {

  color: var(--primary);

  font-size: 15px;

}


.nav-tel:hover {

  color: var(--primary);

}


/*==================================================
    PREMIUM BUTTON
===================================================*/

.btn-a {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  padding: 13px 30px;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .5px;

  border: none;

  transition: var(--transition);

  box-shadow: 0 12px 30px rgba(217, 121, 65, .20);

}


.btn-a:hover {

  background: var(--primary-dark);

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(217, 121, 65, .30);

}


.btn-a i {

  font-size: 15px;

}

/*==================================================
    BURGER MENU
===================================================*/

.burger {

  display: none;

  width: 30px;

  height: 22px;

  padding: 0;

  border: none;

  background: none;

  cursor: pointer;

  flex-direction: column;

  justify-content: space-between;

  z-index: 1001;

}

.burger span {

  width: 100%;

  height: 3px;

  background: var(--dark);

  border-radius: 20px;

  transition: var(--transition);

}

.burger:hover span {

  background: var(--primary);

}

.burger.open span:nth-child(1) {

  transform: translateY(9px) rotate(45deg);

  background: var(--primary);

}

.burger.open span:nth-child(2) {

  opacity: 0;

  transform: scaleX(0);

}

.burger.open span:nth-child(3) {

  transform: translateY(-9px) rotate(-45deg);

  background: var(--primary);

}


/*==================================================
    MOBILE DRAWER
===================================================*/

.mob-nav {

  position: fixed;

  top: 0;

  right: -100%;

  width: 340px;

  max-width: 100%;

  height: 100vh;

  background: var(--white);

  padding: 110px 35px 40px;

  z-index: 998;

  display: flex;

  flex-direction: column;

  gap: 5px;

  transition: .45s ease;

  box-shadow: -15px 0 50px rgba(0, 0, 0, .08);

  border-left: 1px solid var(--border);

  overflow-y: auto;

}

.mob-nav {

  background: #FCF8F5;

}

.mob-nav.open {

  right: 0;

}

.logo-mark {

  background: #FCF8F5;

  border: 1px solid rgba(217, 121, 65, .12);

}

/*==================================================
    MOBILE LINKS
===================================================*/

.mob-nav a {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 16px 0;

  text-decoration: none;

  color: var(--dark);

  font-size: 16px;

  font-weight: 500;

  border-bottom: 1px solid var(--border);

  transition: var(--transition);

}

.mob-nav a::after {

  content: "\F285";

  font-family: "bootstrap-icons";

  font-size: 14px;

  color: var(--primary);

  opacity: 0;

  transform: translateX(-10px);

  transition: var(--transition);

}

.mob-nav a:hover {

  color: var(--primary);

  padding-left: 8px;

}

.mob-nav a:hover::after {

  opacity: 1;

  transform: translateX(0);

}


/*==================================================
    MOBILE CTA BUTTON
===================================================*/

.mob-nav .btn-a {

  margin-top: 30px;

  justify-content: center;

}


/*==================================================
    BACKDROP
===================================================*/

.nav-backdrop {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, .15);

  backdrop-filter: blur(5px);

  opacity: 0;

  visibility: hidden;

  transition: .35s;

  z-index: 997;

}

.nav-backdrop.open {

  opacity: 1;

  visibility: visible;

}


/*==================================================
    HOVER EFFECTS
===================================================*/

.logo,
.nav-links a,
.btn-a,
.nav-tel,
.mob-nav a {

  transition: all .35s ease;

}

.logo:hover {

  transform: translateY(-2px);

}

.btn-a:active {

  transform: scale(.98);

}


/*==================================================
    NAVBAR SHADOW ON HOVER
===================================================*/

#nav:hover {

  box-shadow:

    0 12px 35px rgba(0, 0, 0, .08);

}


/*==================================================
    RESPONSIVE
===================================================*/

@media(max-width:991px) {

  .nav-links {

    display: none;

  }

  .nav-right {

    display: none;

  }

  .burger {

    display: flex;

  }

}


@media(max-width:767px) {

  #nav {

    padding: 0 5px;

  }

  .logo-mark {

    width: 48px;

    height: 48px;

    border-radius: 14px;

  }

  .logo-name {

    font-size: 24px;

  }

  .mob-nav {

    width: 100%;

    padding: 100px 30px 40px;

  }

}


@media(max-width:576px) {

  .logo-name {

    font-size: 22px;

  }

  .logo-mark {

    width: 44px;

    height: 44px;

  }

  .mob-nav a {

    font-size: 15px;

  }

}


/*==================================================
    SMOOTH SCROLL
===================================================*/

html {

  scroll-behavior: smooth;

}


/*==================================================
    SELECTION
===================================================*/

::selection {

  background: var(--primary);

  color: #fff;

}


/*==================================================
    OPTIONAL STICKY NAV ANIMATION
===================================================*/

@keyframes slideDown {

  from {

    transform: translateY(-100%);

    opacity: 0;

  }

  to {

    transform: translateY(0);

    opacity: 1;

  }

}

#nav.scrolled {

  animation: slideDown .4s ease;

}

.logo-mark {
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
  height: 70px;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}




























.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #FFFDFB 0%, #FCF8F5 100%);
    isolation: isolate;
}

/* Background Image */
.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-section .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Blur Effect */
    filter: blur(2px);
    opacity: .8;
}

/* Gradient Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(255,253,251,.88) 0%,
            rgba(252,248,245,.92) 100%
        ),
        radial-gradient(circle at 20% 15%, rgba(217,121,65,.10), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(217,121,65,.08), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(191,100,49,.06), transparent 35%);
}

/* Hero Content */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/*=========================================
    BACKGROUND DECORATION
==========================================*/

.hero-pattern {

  position: absolute;

  inset: 0;

  background-image:

    radial-gradient(circle at 10% 15%,
      rgba(217, 121, 65, .08) 0,
      transparent 30%),

    radial-gradient(circle at 90% 80%,
      rgba(217, 121, 65, .08) 0,
      transparent 25%);

  pointer-events: none;

}

.hero-section::before {

  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  background: var(--primary-light);

  border-radius: 50%;

  top: -80px;

  right: -80px;

  opacity: .45;

}

.hero-section::after {

  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  background: var(--primary-light);

  border-radius: 50%;

  bottom: -60px;

  left: -60px;

  opacity: .35;

}


/*=========================================
    LEFT CONTENT
==========================================*/

.hero-content {

  position: relative;

  z-index: 5;

}

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  background: var(--primary-light);

  color: var(--primary);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 25px;

  letter-spacing: .5px;

}

.hero-badge i {

  font-size: 15px;

}

.hero-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 70px;

  line-height: 1.1;

  color: var(--dark);

  font-weight: 600;

  margin-bottom: 25px;

}

.hero-title span {

  color: var(--primary);

  display: block;

  font-style: italic;

}

.hero-description {

  font-size: 16px;

  line-height: 1.9;

  color: var(--text-light);

  max-width: 560px;

  margin-bottom: 40px;

}


/*=========================================
    BUTTONS
==========================================*/

.hero-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-bottom: 45px;

}

.hero-btn-primary {

  background: var(--primary);

  color: #fff;

  padding: 15px 34px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  transition: var(--transition);

  box-shadow: 0 15px 40px rgba(217, 121, 65, .25);

}

.hero-btn-primary:hover {

  background: var(--primary-dark);

  color: #fff;

  transform: translateY(-4px);

}

.hero-btn-primary i {

  margin-left: 8px;

}

.hero-btn-outline {

  border: 1px solid var(--border);

  color: var(--dark);

  padding: 15px 34px;

  border-radius: 50px;

  background: #fff;

  font-size: 14px;

  font-weight: 500;

  transition: var(--transition);

}

.hero-btn-outline:hover {

  background: var(--primary-light);

  color: var(--primary);

  border-color: var(--primary);

}

.hero-btn-outline i {

  margin-right: 8px;

}


/*=========================================
    FEATURES
==========================================*/

.hero-features {

  margin-bottom: 45px;

}

.feature-item {

  display: flex;

  align-items: center;

  gap: 12px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 14px 18px;

  margin-bottom: 15px;

  transition: var(--transition);

  box-shadow: var(--shadow-sm);

  font-size: 14px;

  font-weight: 500;

}

.feature-item:hover {

  transform: translateY(-4px);

  border-color: var(--primary);

}

.feature-item i {

  color: var(--primary);

  font-size: 18px;

}


/*=========================================
    STATS
==========================================*/

.hero-stats {

  display: flex;

  gap: 25px;

  flex-wrap: wrap;

  margin-top: 15px;

}

.stat {

  min-width: 120px;

}

.stat h3 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 42px;

  color: var(--primary);

  margin-bottom: 5px;

  font-weight: 700;

}

.stat p {

  font-size: 13px;

  color: var(--text-light);

  text-transform: uppercase;

  letter-spacing: 1px;

  margin: 0;

}


/*=========================================
    SPACING FIX
==========================================*/

.hero-content>* {

  animation: fadeUp .7s ease forwards;

}

/*=========================================
    HERO IMAGE WRAPPER
==========================================*/

.hero-image-wrapper {

  position: relative;

  padding: 25px;

}

.hero-image-wrapper::before {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: var(--primary-light);

  border-radius: 40px;

  top: 0;

  right: 0;

  z-index: 0;

  opacity: .8;

}

.hero-image-wrapper::after {

  content: "";

  position: absolute;

  width: 140px;

  height: 140px;

  border: 2px dashed rgba(217, 121, 65, .25);

  border-radius: 30px;

  left: 20px;

  bottom: 10px;

  z-index: 0;

}


/*=========================================
    BOOTSTRAP CAROUSEL
==========================================*/

#heroCarousel {

  position: relative;

  z-index: 2;

  overflow: hidden;

  border-radius: 32px;

  box-shadow: var(--shadow-lg);

  background: #fff;

}

.carousel-inner {

  border-radius: 32px;

}

.carousel-item {

  position: relative;

}

.hero-carousel-image {

  width: 100%;

  height: 650px;

  object-fit: cover;

  transition: transform 6s ease;

}

.carousel-item.active .hero-carousel-image {

  transform: scale(1.08);

}


/*=========================================
    IMAGE OVERLAY
==========================================*/

.carousel-item::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,

      rgba(0, 0, 0, .05),

      rgba(0, 0, 0, .45));

  z-index: 2;

}


/*=========================================
    CAPTION
==========================================*/

.carousel-caption-custom {

  position: absolute;

  left: 35px;

  bottom: 35px;

  z-index: 5;

  color: #fff;

  max-width: 320px;

}

.event-category {

  display: inline-block;

  background: rgba(255, 255, 255, .18);

  backdrop-filter: blur(12px);

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 12px;

  font-weight: 600;

  margin-bottom: 15px;

}

.carousel-caption-custom h4 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;

  margin-bottom: 12px;

  font-weight: 700;

}

.carousel-caption-custom p {

  margin: 0;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 15px;

  color: #f8f8f8;

}

.carousel-caption-custom i {

  color: #FFD48A;

}


/*=========================================
    CAROUSEL INDICATORS
==========================================*/

.carousel-indicators {

  margin-bottom: 18px;

}

.carousel-indicators button {

  width: 10px !important;

  height: 10px !important;

  border-radius: 50%;

  border: none;

  background: #fff !important;

  opacity: .45;

}

.carousel-indicators .active {

  background: var(--primary) !important;

  opacity: 1;

}


/*=========================================
    CAROUSEL CONTROL BUTTONS
==========================================*/

.carousel-control-prev,

.carousel-control-next {

  width: 48px;

  height: 48px;

  background: rgba(255, 255, 255, .85);

  border-radius: 50%;

  top: 50%;

  transform: translateY(-50%);

  margin: 0 18px;

  opacity: 1;

}

.carousel-control-prev-icon,

.carousel-control-next-icon {

  filter: invert(1);

  transform: scale(.65);

}


/*=========================================
    REVIEW CARD
==========================================*/

.review-card {
  position: absolute;
  right: -24px;
  bottom: 40%;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  z-index: 8;
  width: 180px;
  transition: var(--transition);
}

.review-card:hover {

  transform: translateY(-6px);

}

.stars {

  color: #F7B500;

  margin-bottom: 12px;

}

.review-card h5 {

  font-size: 34px;

  margin-bottom: 4px;

  color: var(--dark);

  font-weight: 700;

  font-family: 'Cormorant Garamond', serif;

}

.review-card small {

  color: var(--text-light);

  font-size: 13px;

}


/*=========================================
    EXPERIENCE CARD
==========================================*/

.experience-card {

  position: absolute;

  right: -25px;

  top: 55px;

  background: #fff;

  border-radius: 18px;

  padding: 18px 22px;

  display: flex;

  align-items: center;

  gap: 15px;

  box-shadow: var(--shadow-md);

  z-index: 8;

  transition: var(--transition);

}

.experience-card:hover {

  transform: translateY(-6px);

}

.experience-card i {

  width: 52px;

  height: 52px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: var(--primary-light);

  color: var(--primary);

  font-size: 22px;

}

.experience-card h6 {

  margin: 0;

  font-size: 18px;

  color: var(--dark);

  font-weight: 700;

}

.experience-card small {

  color: var(--text-light);

}


/*=========================================
    IMAGE HOVER
==========================================*/

.hero-image-wrapper:hover .hero-carousel-image {

  transform: scale(1.12);

}


/*=========================================
    SOFT GLOW
==========================================*/

.hero-image-wrapper .glow {

  position: absolute;

  width: 280px;

  height: 280px;

  background: rgba(217, 121, 65, .10);

  filter: blur(80px);

  border-radius: 50%;

  right: -100px;

  bottom: -100px;

  z-index: 0;

}


/*=========================================
    CAROUSEL SHADOW
==========================================*/

#heroCarousel {

  transition: .5s;

}

#heroCarousel:hover {

  box-shadow:

    0 30px 80px rgba(0, 0, 0, .15),

    0 10px 30px rgba(217, 121, 65, .15);

}

/*=========================================
    ANIMATIONS
==========================================*/

@keyframes fadeUp {

  from {

    opacity: 0;
    transform: translateY(40px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@keyframes float {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-12px);

  }

}

@keyframes pulse {

  0% {

    box-shadow: 0 0 0 0 rgba(217, 121, 65, .35);

  }

  70% {

    box-shadow: 0 0 0 20px rgba(217, 121, 65, 0);

  }

  100% {

    box-shadow: 0 0 0 0 rgba(217, 121, 65, 0);

  }

}

.hero-badge {

  animation: pulse 2.5s infinite;

}

.review-card {

  animation: float 6s ease-in-out infinite;

}

.experience-card {

  animation: float 5s ease-in-out infinite;

}

.feature-item {

  animation: fadeUp .6s ease forwards;

}

.stat {

  animation: fadeUp .7s ease forwards;

}

.hero-content {

  animation: fadeUp .8s ease;

}


/*=========================================
    BUTTON EFFECTS
==========================================*/

.hero-btn-primary,
.hero-btn-outline {

  overflow: hidden;
  position: relative;

}

.hero-btn-primary::before,
.hero-btn-outline::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, .25);

  transform: skewX(-25deg);

  transition: .8s;

}

.hero-btn-primary:hover::before,
.hero-btn-outline:hover::before {

  left: 130%;

}


/*=========================================
    FEATURE HOVER
==========================================*/

.feature-item:hover {

  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.feature-item:hover i {

  transform: rotate(10deg) scale(1.15);

}

.feature-item i {

  transition: .35s;

}


/*=========================================
    STAT HOVER
==========================================*/

.stat {

  transition: .35s;

}

.stat:hover {

  transform: translateY(-5px);

}

.stat:hover h3 {

  color: var(--primary-dark);

}


/*=========================================
    CAROUSEL IMAGE EFFECT
==========================================*/

.carousel-item {

  overflow: hidden;

}

.carousel-item img {

  transition: transform 8s ease;

}

.carousel-item.active img {

  transform: scale(1.06);

}


/*=========================================
    SCROLLBAR
==========================================*/

::-webkit-scrollbar {

  width: 10px;

}

::-webkit-scrollbar-track {

  background: #f5f5f5;

}

::-webkit-scrollbar-thumb {

  background: var(--primary);

  border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

  background: var(--primary-dark);

}


/*==================================================
        MOBILE HERO
==================================================*/

.mhero{
    position:relative;
    overflow:hidden;
    background:#FCF8F5;
    padding:90px 0 40px;
}

/* Background */

.mhero-bg{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    background:
        radial-gradient(circle at top left,
            rgba(217,121,65,.10),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(217,121,65,.08),
            transparent 30%),
        linear-gradient(180deg,#FFFDFB,#FCF8F5);
}
.mhero-bg img{
     max-width:100%;
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

    /* Shift towards right */
    object-position:80% center;
}
.mhero-overlay{
    position:absolute;
    inset:0;
    background:
        url("../images/patterns/floral-pattern.svg") center/cover no-repeat;
    opacity:.03;
    pointer-events:none;
    z-index:0;
}

.mhero .container{
    position:relative;
    z-index:5;
}

/*==================================
        BADGE
===================================*/

.mhero-top{
    margin-bottom:22px;
}

.mhero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(217,121,65,.08);
    border:1px solid rgba(217,121,65,.12);
    color:var(--primary);
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    backdrop-filter:blur(10px);
}

.mhero-badge i{
    font-size:14px;
}

/*==================================
        CONTENT
===================================*/

.mhero-content{
    margin-bottom:32px;
}

.mhero-title{
    font-family:'Cormorant Garamond',serif;
    font-size:44px;
    line-height:1.08;
    font-weight:600;
    color:var(--dark);
    margin-bottom:18px;
}

.mhero-title span{
    display:block;
    color:var(--primary);
    font-style:italic;
}

.mhero-description{
    font-size:15px;
    line-height:1.8;
    color:var(--text-light);
    margin:0;
    max-width:330px;
}

/*==================================
        SLIDER
===================================*/

.mhero-slider{
    position:relative;
    margin: 10px;
    margin-bottom:28px;
}

#mobileHeroCarousel{
    overflow:hidden;
    border-radius:28px;
    box-shadow:
        0 30px 60px rgba(0,0,0,.10);
}

#mobileHeroCarousel img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:transform 8s ease;
}

.carousel-item.active img{
    transform:scale(1.06);
}

.mhero-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.60),
        rgba(0,0,0,.08),
        transparent
    );
}
/*==================================================
        GLASS CAPTION
==================================================*/

.mhero-caption{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:5;

    padding:18px;

    border-radius:22px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;
}

.mhero-category{

    display:inline-flex;

    align-items:center;

    padding:6px 14px;

    border-radius:30px;

    background:rgba(255,255,255,.18);

    font-size:11px;

    font-weight:600;

    letter-spacing:.6px;

    text-transform:uppercase;

    margin-bottom:12px;
}

.mhero-caption h3{

    margin:0 0 10px;

    font-size:24px;

    line-height:1.2;

    font-family:'Cormorant Garamond',serif;

    font-weight:600;

    color:#fff;
}

.mhero-location{

    display:flex;

    align-items:center;

    gap:8px;

    color:rgba(255,255,255,.90);

    font-size:13px;
}

.mhero-location i{

    color:#FFD26A;

    font-size:14px;
}


/*==================================================
        FLOATING RATING CARD
==================================================*/

.mhero-rating{

    position:absolute;

    top:18px;

    right:18px;

    z-index:8;

    width:92px;

    padding:14px;

    border-radius:18px;

    text-align:center;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    animation:mheroFloat 5s ease-in-out infinite;
}

.mhero-stars{

    color:#F7B731;

    font-size:11px;

    margin-bottom:8px;
}

.mhero-rating h5{

    margin:0;

    color:var(--dark);

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;
}

.mhero-rating small{

    display:block;

    margin-top:4px;

    color:var(--text-light);

    font-size:10px;

    line-height:1.4;
}


/*==================================================
        CAROUSEL INDICATORS
==================================================*/

#mobileHeroCarousel .carousel-indicators{

    margin-bottom:-28px;
}

#mobileHeroCarousel .carousel-indicators button{

    width:8px;

    height:8px;

    border-radius:50%;

    border:none;

    background:#d7c7bc;

    opacity:1;

    margin:0 5px;

    transition:.35s;
}

#mobileHeroCarousel .carousel-indicators .active{

    width:28px;

    border-radius:30px;

    background:var(--primary);
}


/*==================================================
        IMAGE HOVER
==================================================*/

.mhero-slider:hover img{

    transform:scale(1.08);
}


/*==================================================
        FLOAT ANIMATION
==================================================*/

@keyframes mheroFloat{

    0%,
    100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-8px);
    }

}




/*==================================================
        CATEGORY PILLS
==================================================*/

.mhero-tags{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;

    margin:30px 0;
}

.mhero-tags span{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 12px;

    background:#fff;

    border:1px solid rgba(217,121,65,.12);

    border-radius:50px;

    font-size:12px;
    font-weight:500;
    color:var(--dark);

    transition:.35s ease;
}

.mhero-tags span:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(217,121,65,.25);

}
/*==================================
        SERVICES
===================================*/

.mhero-services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin:28px 0 35px;
}

.mhero-services span{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);

    border:1px solid rgba(217,121,65,.12);

    border-radius:50px;

    color:var(--dark);

    font-size:12px;
    font-weight:500;

    transition:all .35s ease;
}

.mhero-services span i{
    color:var(--primary);
    font-size:13px;
    transition:.35s;
}

.mhero-services span:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(217,121,65,.25);
}

.mhero-services span:hover i{
    color:#fff;
    transform:scale(1.1);
}

/* Mobile Optimization */

@media (max-width:480px){

    .mhero-services{
        gap:8px;
        margin:24px 0 30px;
    }

    .mhero-services span{
        padding:8px 14px;
        font-size:11px;
    }

    .mhero-services span i{
        font-size:12px;
    }

}
/*==================================================
        CTA BUTTON
==================================================*/

.mhero-btn{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:10px;

    width:100%;

    height:56px;

    border-radius:18px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    letter-spacing:.4px;

    transition:.35s;

    box-shadow:
        0 20px 40px rgba(217,121,65,.28);

}

.mhero-btn:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-4px);

}

.mhero-btn i{

    transition:.35s;

}

.mhero-btn:hover i{

    transform:translateX(5px);

}

/*==================================================
        STATS
==================================================*/

.mhero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

    margin-top:32px;
}

.mhero-stat{

    background:#fff;

    border:1px solid rgba(217,121,65,.10);

    border-radius:22px;

    padding:20px 10px;

    text-align:center;

    box-shadow:
        0 12px 30px rgba(0,0,0,.05);

    transition:.35s;
}

.mhero-stat:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 40px rgba(217,121,65,.12);

}

.mhero-stat h4{

    margin:0;

    color:var(--primary);

    font-size:30px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;
}

.mhero-stat p{

    margin-top:6px;

    color:var(--text-light);

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;
}

/*==================================================
        SCROLL
==================================================*/

.mhero-scroll{

    margin-top:32px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    color:#999;

    font-size:11px;

    letter-spacing:1px;

    text-transform:uppercase;
}

.mhero-scroll i{

    font-size:18px;

    color:var(--primary);

    animation:mheroScroll 2s infinite;
}

@keyframes mheroScroll{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    50%{

        transform:translateY(8px);

        opacity:.4;

    }

    100%{

        transform:translateY(0);

        opacity:1;

    }

}

/*==================================================
        ENTRANCE ANIMATIONS
==================================================*/

.mhero-title{

    animation:mheroFadeUp .8s ease;
}

.mhero-description{

    animation:mheroFadeUp 1s ease;
}

.mhero-slider{

    animation:mheroZoom .9s ease;
}

.mhero-tags{

    animation:mheroFadeUp 1.1s ease;
}

.mhero-btn{

    animation:mheroFadeUp 1.2s ease;
}

.mhero-stats{

    animation:mheroFadeUp 1.3s ease;
}

@keyframes mheroFadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes mheroZoom{

    from{

        opacity:0;

        transform:scale(.92);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}



















/*=========================================
    TABLET
==========================================*/

@media(max-width:991px) {

  .hero-section {

    padding: 60px 0 70px;

    text-align: center;

  }

  .hero-title {

    font-size: 56px;

  }

  .hero-description {

    margin: auto;
    margin-bottom: 35px;

  }

  .hero-buttons {

    justify-content: center;

  }

  .hero-features {

    margin-top: 10px;

  }

  .hero-stats {

    justify-content: center;

  }

  .hero-image-wrapper {

    margin-top: 60px;

    padding: 0;

  }

  .review-card {

    left: 10px;
    bottom: -20px;

  }

  .experience-card {

    right: 10px;

  }

  .hero-carousel-image {

    height: 520px;

  }

  .carousel-caption-custom {

    left: 25px;
    bottom: 25px;

  }

}

































/* ===============================
   PREMIUM MOBILE HERO
=================================*/

@media (max-width:767px){

    .hero-section{
        min-height:auto;
        padding:95px 0 40px;
        text-align:center;
    }

    .hero-section .container{
        position:relative;
        z-index:5;
    }

    /* Heading */

    .hero-title{
        font-size:34px;
        line-height:1.15;
        margin-bottom:18px;
    }

    .hero-title span{
        display:inline;
    }

    .hero-description{
        font-size:15px;
        line-height:1.8;
        margin:0 auto 25px;
        max-width:95%;
    }

    /* Badge */

    .hero-badge{
        margin-bottom:18px;
        padding:8px 18px;
        font-size:12px;
    }

    /* Buttons */

    .hero-buttons{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
        margin-bottom:28px;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width:100%;
        padding:14px;
        font-size:14px;
        border-radius:14px;
    }

    /* Features */

    .hero-features{
        margin-bottom:25px;
    }

    .hero-features .row{
        gap:12px;
    }

    .hero-features .col-6{
        width:100%;
    }

    .feature-item{
        margin:0;
        padding:14px 16px;
        border-radius:16px;
        justify-content:center;
        text-align:center;
    }

    /* Stats */

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        margin-top:20px;
    }

    .stat{
        background:#fff;
        border:1px solid var(--border);
        border-radius:18px;
        padding:15px 8px;
        min-width:unset;
        box-shadow:var(--shadow-sm);
    }

    .stat h3{
        font-size:28px;
        margin-bottom:4px;
    }

    .stat p{
        font-size:10px;
        letter-spacing:.5px;
    }

    /* Image */

    .hero-image-wrapper{
        margin-top:35px;
        padding:0;
    }

    #heroCarousel{
        border-radius:24px;
    }

    .hero-carousel-image{
        height:260px;
        border-radius:24px;
    }

    /* Caption */

    .carousel-caption-custom{
        left:15px;
        right:15px;
        bottom:15px;
        max-width:100%;
        text-align:left;
    }

    .carousel-caption-custom h4{
        font-size:22px;
        margin-bottom:6px;
    }

    .carousel-caption-custom p{
        font-size:13px;
    }

    .event-category{
        padding:6px 12px;
        font-size:10px;
        margin-bottom:10px;
    }

    /* Controls */

    .carousel-control-prev,
    .carousel-control-next{
        width:38px;
        height:38px;
        margin:0 10px;
    }

    /* Hide Floating Cards */

    .review-card,
    .experience-card{
        display:none;
    }

    /* Decorative Shapes */

    .hero-image-wrapper::before,
    .hero-image-wrapper::after,
    .hero-section::before,
    .hero-section::after{
        display:none;
    }

}


/* ===============================
   EXTRA SMALL
=================================*/

@media (max-width:480px){

    .hero-section{
        padding:85px 0 30px;
    }

    .hero-title{
        font-size:30px;
    }

    .hero-description{
        font-size:14px;
    }

    .hero-carousel-image{
        height:220px;
    }

    .carousel-caption-custom h4{
        font-size:18px;
    }

    .carousel-caption-custom p{
        display:none;
    }

    .hero-stats{
        grid-template-columns:repeat(3,1fr);
    }

    .stat{
        padding:12px 5px;
    }

    .stat h3{
        font-size:22px;
    }

    .stat p{
        font-size:9px;
    }

}


/*=========================================
    SMOOTH TRANSITIONS
==========================================*/

* {

  transition:
    background .3s,
    color .3s,
    border-color .3s,
    transform .3s;

}


/*=========================================
    IMAGE BORDER
==========================================*/

.hero-carousel-image {

  border: 8px solid rgba(255, 255, 255, .55);

}


/*=========================================
    GLASS EFFECT
==========================================*/

.review-card,
.experience-card {

  backdrop-filter: blur(18px);

}


/*=========================================
    SECTION END
==========================================*/

.hero-section {

  isolation: isolate;

}




























/* Toast Notification */
.lux-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(26, 22, 20, 0.95);
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  z-index: 1050;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  gap: 12px;
}

.lux-toast.show {
  display: flex;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%) scale(0.9);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}



/* ── ABOUT SECTION EXCLUSIVES ── */
/* ── ABOUT SECTION EXCLUSIVES ── */



/*==================================================
                ABOUT SECTION
==================================================*/

.about {

  position: relative;

  padding: 60px 0 ;

  background: var(--light);

  overflow: hidden;

}


/* Decorative Background */

.about::before {

  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: var(--primary-light);

  top: -120px;

  left: -120px;

  opacity: .45;

}

.about::after {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: var(--primary-light);

  right: -100px;

  bottom: -100px;

  opacity: .35;

}


/*==================================================
                IMAGE WRAPPER
==================================================*/

.about-imgs {

  position: relative;

  padding-bottom: 45px;

  z-index: 2;

}


/* Main Image */

.about-img-main {

  width: 100%;

  height: 520px;

  object-fit: cover;

  border-radius: 28px;

  border: 6px solid var(--white);

  box-shadow: var(--shadow-lg);

  transition: var(--transition);

}

.about-img-main:hover {

  transform: scale(1.02);

}


/* Small Floating Image */

.about-img-sm {

  position: absolute;

  bottom: 0;

  right: -20px;

  width: 52%;

  height: 220px;

  object-fit: cover;

  border-radius: 22px;

  border: 6px solid var(--light);

  background: var(--white);

  box-shadow: var(--shadow-md);

  transition: var(--transition);

}

.about-img-sm:hover {

  transform: translateY(-6px);

}


/*==================================================
                EXPERIENCE BADGE
==================================================*/

.about-badge {

  position: absolute;

  top: 30px;

  left: -25px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 18px 24px;

  box-shadow: var(--shadow-md);

  z-index: 5;

  transition: var(--transition);

}

.about-badge:hover {

  transform: translateY(-5px);

}


.ab-num {

  font-family: 'Cormorant Garamond', serif;

  font-size: 38px;

  font-weight: 700;

  color: var(--primary);

  line-height: 1;

}


.ab-lbl {

  margin-top: 6px;

  color: var(--text-light);

  font-size: 12px;

  font-weight: 500;

  letter-spacing: .5px;

}


/*==================================================
                HEADING
==================================================*/

.heading {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(36px, 4vw, 52px);

  font-weight: 600;

  line-height: 1.2;

  color: var(--dark);

  margin-bottom: 10px;

}

.heading em {

  color: var(--primary);

  font-style: italic;

  font-weight: 500;

}


/*==================================================
                DIVIDER
==================================================*/

.bar {

  width: 70px;

  height: 4px;

  border-radius: 20px;

  background: var(--primary);

  margin: 22px 0 28px;

}

/*==================================================
                FEATURE CARDS
==================================================*/

.feat {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 20px;

  height: 100%;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

}

.feat:hover {

  transform: translateY(-6px);

  border-color: var(--primary);

  box-shadow: var(--shadow-md);

}


/*==================================================
                FEATURE ICON
==================================================*/

.feat-ico {

  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: var(--primary-light);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: var(--transition);

}

.feat:hover .feat-ico {

  background: var(--primary);

}

.feat-ico i {

  font-size: 20px;

  color: var(--primary);

  transition: var(--transition);

}

.feat:hover .feat-ico i {

  color: #fff;

}


/*==================================================
                FEATURE TEXT
==================================================*/

.feat-ttl {

  font-size: 16px;

  font-weight: 600;

  color: var(--dark);

  margin-bottom: 6px;

}

.feat-txt {

  font-size: 13px;

  color: var(--text-light);

  line-height: 1.7;

  margin: 0;

}


/*==================================================
                ABOUT PARAGRAPH
==================================================*/

.about p {

  color: var(--text-light);

  line-height: 1.9;

  font-size: 15px;

}


/*==================================================
                AVATARS
==================================================*/

.t-avatar {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  object-fit: cover;

  margin-left: -12px;

  border: 3px solid var(--light);

  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);

}

.t-avatar:first-child {

  margin-left: 0;

}


/*==================================================
                MORE AVATAR
==================================================*/

.t-more {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: -12px;

  background: var(--primary);

  color: #fff;

  font-size: 11px;

  font-weight: 700;

  border: 3px solid var(--light);

  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);

}


/*==================================================
                BUTTON INSIDE ABOUT
==================================================*/

.about .btn {

  margin-top: 18px;

}


/*==================================================
                IMAGE HOVER EFFECT
==================================================*/

.about-imgs:hover .about-img-main {

  transform: scale(1.02);

}

.about-imgs:hover .about-img-sm {

  transform: translateY(-8px);

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px) {

  .about {

    padding: 90px 0;

  }

  .about-imgs {

    margin-bottom: 60px;

  }

  .about-img-main {

    height: 450px;

  }

  .about-img-sm {

    width: 55%;

    height: 180px;

    right: 0;

  }

  .about-badge {

    left: 15px;

    top: 20px;

  }

  .heading {

    font-size: 42px;

  }

}


@media(max-width:767px) {

  .about {

    padding: 70px 0;

  }

  .about-img-main {

    height: 380px;

    border-radius: 22px;

  }

  .about-img-sm {

    width: 65%;

    height: 160px;

    border-radius: 18px;

  }

  .about-badge {

    padding: 15px 18px;

    border-radius: 16px;

  }

  .ab-num {

    font-size: 30px;

  }

  .heading {

    font-size: 34px;

  }

  .bar {

    margin: 18px 0 22px;

  }

  .feat {

    padding: 18px;

  }

  .feat-ico {

    width: 42px;

    height: 42px;

  }

  .feat-ico i {

    font-size: 18px;

  }

  .t-avatar,

  .t-more {

    width: 40px;

    height: 40px;

  }

}


@media(max-width:576px) {

  .about-img-main {

    height: 320px;

  }

  .about-img-sm {

    right: 0;

    width: 62%;

    height: 140px;

  }

  .about-badge {

    left: 10px;

    top: 12px;

    padding: 12px 15px;

  }

  .heading {

    font-size: 30px;

  }

  .feat {

    padding: 15px;

    gap: 12px;

  }

  .feat-ttl {

    font-size: 15px;

  }

  .feat-txt {

    font-size: 12px;

  }

}









/*==================================================
                SERVICES SECTION
==================================================*/
/*==================================================
                SERVICES SECTION
==================================================*/

.services {

  position: relative;

  padding: 60px 0 ;

  background: var(--light);

  overflow: hidden;

}


/* Decorative Background */

.services::before {

  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: var(--primary-light);

  top: -120px;

  right: -120px;

  opacity: .45;

}

.services::after {

  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  border-radius: 50%;

  background: var(--primary-light);

  left: -80px;

  bottom: -80px;

  opacity: .35;

}


/*==================================================
                SECTION HEADING
==================================================*/

.services .heading {

  color: var(--dark);

}

.services .heading em {

  color: var(--primary);

}

.services .text-muted {

  color: var(--text-light) !important;

  max-width: 650px;

  margin: auto;

  line-height: 1.8;

}


/*==================================================
                SERVICE CARD
==================================================*/

.svc {

  position: relative;

  height: 100%;

  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 24px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

}

.svc:hover {

  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow-lg);

}


/* Premium Top Border */

.svc::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background: var(--primary);

  transform: scaleX(0);

  transform-origin: left;

  transition: .4s;

  z-index: 5;

}

.svc:hover::before {

  transform: scaleX(1);

}


/*==================================================
                IMAGE
==================================================*/

.svc-img-wrapper {

  position: relative;

  overflow: hidden;

  height: 230px;

}

.svc-img-wrapper::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(transparent 45%,

      rgba(0, 0, 0, .10));

  z-index: 1;

}

.svc-img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .7s;

}

.svc:hover .svc-img {

  transform: scale(1.08);

}


/*==================================================
                CARD BODY
==================================================*/

.svc-body {

  position: relative;

}


/*==================================================
                ICON
==================================================*/

.svc-ico {

  width: 58px;

  height: 58px;

  border-radius: 16px;

  background: var(--primary-light);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  box-shadow: 0 10px 20px rgba(217, 121, 65, .12);

  transition: var(--transition);

}

.svc:hover .svc-ico {

  background: var(--primary);

  transform: rotate(-8deg);

}

.svc-ico i {

  font-size: 24px;

  color: var(--primary);

  transition: var(--transition);

}

.svc:hover .svc-ico i {

  color: #fff;

}


/*==================================================
                TITLE
==================================================*/

.svc-ttl {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 600;

  color: var(--dark);

  margin-bottom: 12px;

  transition: .3s;

}

.svc:hover .svc-ttl {

  color: var(--primary);

}


/*==================================================
                DESCRIPTION
==================================================*/

.svc-txt {

  color: var(--text-light);

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 20px;

}

/*==================================================
                TAGS
==================================================*/


.stag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 16px;

  background: #FFF9F5;

  border: 1px solid rgba(217, 121, 65, .15);

  border-radius: 50px;

  color: var(--primary);

  font-size: 12px;

  font-weight: 500;

  transition: .35s;

  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  margin-bottom: 8px;

}

.stag i {

  font-size: 13px;

  color: var(--primary);

  transition: .35s;

}

.stag:hover {

  background: var(--primary);

  color: #fff;

}

.stag:hover i {

  color: #fff;

}



/*==================================================
                SERVICE NUMBER
==================================================*/

.svc-number {

  position: absolute;

  top: 18px;

  left: 18px;

  width: 46px;

  height: 46px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--border);

  font-family: 'Cormorant Garamond', serif;

  font-size: 18px;

  font-weight: 700;

  color: var(--primary);

  box-shadow: var(--shadow-sm);

  z-index: 6;

}


/*==================================================
                POPULAR BADGE
==================================================*/

.hot-badge {

  position: absolute;

  top: 18px;

  right: 18px;

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 8px 16px;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: .4px;

  box-shadow: 0 12px 25px rgba(217, 121, 65, .25);

  z-index: 6;

}

.hot-badge i {

  font-size: 12px;

}


/*==================================================
                FEATURED CARD
==================================================*/

.svc.hot {

  border-color: rgba(217, 121, 65, .25);

  background: linear-gradient(180deg,

      #FFFFFF,

      #FFF9F4);

}


/*==================================================
                FOOTER
==================================================*/

.svc-footer {

  margin-top: auto;

  padding-top: 20px;

}


/*==================================================
                LINK
==================================================*/
/*=========================================
            SERVICE CTA
==========================================*/

.svc-link {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 18px;

  border-radius: 50px;

  background: var(--primary-light);

  border: 1px solid rgba(217, 121, 65, .18);

  color: var(--primary);

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .3px;

  transition: all .35s ease;

}

.svc-link i {

  width: 26px;

  height: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(217, 121, 65, .12);

  color: var(--primary);

  transition: all .35s ease;

}

.svc-link:hover {

  background: var(--primary);

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(217, 121, 65, .22);

}

.svc-link:hover i {

  background: #fff;

  color: var(--primary);

  transform: translateX(4px);

}

/*==================================================
                CTA SECTION
==================================================*/

.services-cta {

  margin-top: 20px;

  padding: 60px;

  background: linear-gradient(135deg,

      #FFFFFF,

      #FFF9F4);

  border: 1px solid var(--border);

  border-radius: 28px;

  text-align: center;

  box-shadow: var(--shadow-md);

}

.services-cta h4 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 40px;

  font-weight: 600;

  color: var(--dark);

  margin-bottom: 15px;

}

.services-cta p {

  max-width: 650px;

  margin: 0 auto 30px;

  color: var(--text-light);

  line-height: 1.8;

  font-size: 15px;

}


/*==================================================
                CARD HOVER EFFECTS
==================================================*/

.svc:hover {

  transform: translateY(-10px);

}

.svc:hover .svc-img {

  transform: scale(1.08);

}

.svc:hover .svc-number {

  background: var(--primary);

  color: #fff;

}

.svc:hover .stag {

  border-color: rgba(217, 121, 65, .35);

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px) {

  .services {

    padding: 90px 0;

  }

  .services-cta {

    padding: 45px;

  }

  .services-cta h4 {

    font-size: 34px;

  }

}


@media(max-width:768px) {

  .services {

    padding: 75px 0;

  }

  .svc {

    border-radius: 20px;

  }

  .svc-img-wrapper {

    height: 200px;

  }

  .svc-number {

    width: 42px;

    height: 42px;

    font-size: 16px;

  }

  .hot-badge {

    font-size: 10px;

    padding: 7px 13px;

  }

  .services-cta {

    padding: 35px 25px;

  }

  .services-cta h4 {

    font-size: 30px;

  }

}


@media(max-width:576px) {

  .svc-img-wrapper {

    height: 180px;

  }

  .svc-ttl {

    font-size: 24px;

  }

  .services-cta {

    padding: 30px 20px;

    border-radius: 22px;

  }

  .services-cta h4 {

    font-size: 26px;

  }

  .services-cta p {

    font-size: 14px;

  }

}



/*==================================
    SERVICES MOBILE SCROLL
===================================*/

@media (max-width:767px){

    .services .row.g-4{
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;

        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;

        margin:0 -15px;
        padding:0 15px 15px;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .services .row.g-4::-webkit-scrollbar{
        display:none;
    }

    .services .row.g-4 > div{
        flex:0 0 90%;
        max-width:90%;
        scroll-snap-align:start;
margin: 8px;
        padding-left:15px;
        padding-right:0;
    }

    /* Premium Card */

    .services .svc{

        height:100%;

        border-radius:24px;

        overflow:hidden;

        box-shadow:0 15px 35px rgba(0,0,0,.08);
    }

    .services .svc-img{

        height:220px;

        object-fit:cover;
    }

    .services .svc-body{

        padding:24px !important;
    }

    .services .svc-ttl{

        font-size:24px;
    }

    .services .svc-tags{

        margin-top:18px;
    }

}
















/* ── EVENTS SECTION EXCLUSIVES ── */
/*==================================================
                EVENTS SECTION
==================================================*/

.events {

  position: relative;

  padding: 60px 0 ;

  background: var(--white);

  overflow: hidden;

}


/* Decorative Background */

.events::before {

  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: var(--primary-light);

  top: -120px;

  left: -120px;

  opacity: .35;

}

.events::after {

  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  border-radius: 50%;

  background: var(--primary-light);

  right: -80px;

  bottom: -80px;

  opacity: .30;

}


/*==================================================
                EVENT CARD
==================================================*/

.ev-card {

  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 24px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

}


.ev-card:hover {

  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow-lg);

}


/* Premium Top Line */

.ev-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: var(--primary);

  transform: scaleX(0);

  transform-origin: left;

  transition: .4s;

  z-index: 5;

}

.ev-card:hover::before {

  transform: scaleX(1);

}


/*==================================================
                IMAGE
==================================================*/

.ev-img-wrap {

  position: relative;

  overflow: hidden;

}


.ev-img {

  width: 100%;

  height: 240px;

  object-fit: cover;

  transition: .7s;

}


.ev-card:hover .ev-img {

  transform: scale(1.08);

}


/* Featured Card */

@media(min-width:992px) {

  .ev-card.tall .ev-img {

    height: 360px;

  }

}


/* Image Overlay */

.ev-img-wrap::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(transparent 45%,

      rgba(0, 0, 0, .15));

  pointer-events: none;

}


/*==================================================
                CATEGORY BADGE
==================================================*/

.ev-cat {

  position: absolute;

  top: 18px;

  left: 18px;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 16px;

  background: rgba(255, 255, 255, .95);

  backdrop-filter: blur(12px);

  border: 1px solid var(--border);

  border-radius: 50px;

  color: var(--primary);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: .5px;

  text-transform: uppercase;

  box-shadow: var(--shadow-sm);

  z-index: 5;

}


.ev-cat::before {

  content: "";

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--primary);

}


/*==================================================
                DATE BADGE
==================================================*/

.ev-date-pill {

  position: absolute;

  top: 18px;

  right: 18px;

  width: 65px;

  padding: 10px 0;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(12px);

  border: 1px solid var(--border);

  border-radius: 18px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  z-index: 5;

}


.ev-date-pill .d {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 700;

  color: var(--primary);

  line-height: 1;

}


.ev-date-pill .m {

  margin-top: 5px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;

  color: var(--text-light);

  text-transform: uppercase;

}

/*==================================================
                EVENT BODY
==================================================*/

.ev-body {

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 26px;

}


/*==================================================
                LOCATION
==================================================*/

.ev-loc {

  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 14px;

  font-size: 13px;

  font-weight: 500;

  color: var(--text-light);

}

.ev-loc i {

  color: var(--primary);

  font-size: 14px;

}


/*==================================================
                EVENT TITLE
==================================================*/

.ev-name {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 600;

  line-height: 1.3;

  color: var(--dark);

  margin-bottom: auto;

  transition: .35s;

}

.ev-card:hover .ev-name {

  color: var(--primary);

}


.ev-card.tall .ev-name {

  font-size: 34px;

}


/*==================================================
                FOOTER
==================================================*/

.ev-foot {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 28px;

  padding-top: 18px;

  border-top: 1px solid var(--border);

}


/*==================================================
                PRICE
==================================================*/

.ev-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 700;

  color: var(--primary);

}

.ev-seats {

  margin-top: 4px;

  font-size: 12px;

  color: var(--text-light);

}


/*==================================================
                DETAILS BUTTON
==================================================*/

.ev-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 18px;

  border-radius: 50px;

  background: var(--primary-light);

  border: 1px solid rgba(217, 121, 65, .18);

  color: var(--primary);

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  transition: all .35s ease;

}

.ev-btn i {

  width: 26px;

  height: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(217, 121, 65, .12);

  transition: .35s;

}

.ev-btn:hover {

  background: var(--primary);

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(217, 121, 65, .25);

}

.ev-btn:hover i {

  background: #fff;

  color: var(--primary);

  transform: translateX(5px);

}


/*==================================================
                CARD HOVER
==================================================*/

.ev-card:hover {

  transform: translateY(-10px);

}

.ev-card:hover .ev-date-pill {

  background: var(--primary);

  border-color: var(--primary);

}

.ev-card:hover .ev-date-pill .d,

.ev-card:hover .ev-date-pill .m {

  color: #fff;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px) {

  .events {

    padding: 90px 0;

  }

  .ev-card.tall .ev-img {

    height: 280px;

  }

  .ev-name {

    font-size: 24px;

  }

  .ev-card.tall .ev-name {

    font-size: 28px;

  }

}


@media(max-width:768px) {

  .events {

    padding: 75px 0;

  }

  .ev-body {

    padding: 22px;

  }

  .ev-img {

    height: 220px;

  }

  .ev-card.tall .ev-img {

    height: 220px;

  }

  .ev-name {

    font-size: 22px;

  }

  .ev-card.tall .ev-name {

    font-size: 24px;

  }

  .ev-price {

    font-size: 24px;

  }

  .ev-date-pill {

    width: 58px;

    padding: 8px 0;

  }

  .ev-date-pill .d {

    font-size: 24px;

  }

  .ev-date-pill .m {

    font-size: 10px;

  }

}


@media(max-width:576px) {

  .ev-body {

    padding: 20px;

  }

  .ev-img {

    height: 200px;

  }

  .ev-foot {

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

  }

  .ev-btn {

    width: 100%;

    justify-content: center;

  }

}


/*==================================
    EVENTS HORIZONTAL SCROLL
===================================*/

@media (max-width:767px){

  .events .row.g-4:first-child{
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;

        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;

        margin:0 -15px;
        padding:0 15px 10px;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .events .row.g-4::-webkit-scrollbar{
        display:none;
    }

    /* Cards */

    .events .row.g-4 > div{
        flex:0 0 88%;
        max-width:88%;
        scroll-snap-align:start;
    }

    /* Remove nested row layout */

    .events .col-lg-7{
        display:flex;
    }

    .events .col-lg-7 > .row{
        flex-wrap:nowrap;
        width:max-content;
        margin:0;
        gap:20px;
    }

    .events .col-lg-7 > .row > div{
        flex:0 0 300px;
        max-width:300px;
        padding:0;
    }

}



















/* ── WHY SECTION EXCLUSIVES ── */
/* ===============================
   WHY ASHIYAA
=================================*/

.why {
  padding: 60px 0 ;
  background: var(--light, #FCF8F5);
  color: var(--dark, #2F2F2F);
  overflow: hidden;
}

/* Benefit List */

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wi {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border, #E8DDD6);
  background: #fff;
  transition: .35s ease;
}

.wi:hover {
  border-color: var(--primary, #D97941);
  background: var(--primary-light, #F7E8DE);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(217, 121, 65, .10);
}

.wi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary, #D97941);
  line-height: 1;
  min-width: 42px;
}

.wi-ttl {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark, #2F2F2F);
  margin-bottom: 6px;
}

.wi-txt {
  font-size: 14px;
  color: var(--text-light, #777777);
  line-height: 1.8;
}


/* ===============================
   STAT CARDS
=================================*/

.wstat {
  border-radius: 18px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: .35s ease;
}

.wstat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.wstat i {
  font-size: 30px;
  margin-bottom: 8px;
}


/* Card 1 */

.wstat.gold-theme {
  background: var(--primary, #D97941);
  color: #fff;
}

.wstat.gold-theme i {
  color: rgba(255, 255, 255, .75);
}

.wstat.gold-theme .ws-num {
  color: #fff;
}

.wstat.gold-theme .ws-lbl {
  color: rgba(255, 255, 255, .85);
}


/* Card 2 */

.wstat.dark-theme {
  background: var(--dark, #2F2F2F);
  color: #fff;
}

.wstat.dark-theme i {
  color: var(--primary, #D97941);
}

.wstat.dark-theme .ws-num {
  color: #fff;
}

.wstat.dark-theme .ws-lbl {
  color: rgba(255, 255, 255, .78);
}


/* Card 3 */

.wstat.dark2-theme {
  background: var(--primary-dark, #BF6431);
  color: #fff;
}

.wstat.dark2-theme i {
  color: rgba(255, 255, 255, .8);
}

.wstat.dark2-theme .ws-num {
  color: #fff;
}

.wstat.dark2-theme .ws-lbl {
  color: rgba(255, 255, 255, .82);
}


/* Card 4 */

.wstat.trans-gold-theme {
  background: var(--primary-light, #F7E8DE);
  border: 1px solid var(--border, #E8DDD6);
  color: var(--dark, #2F2F2F);
}

.wstat.trans-gold-theme i {
  color: var(--primary, #D97941);
}

.wstat.trans-gold-theme .ws-num {
  color: var(--primary, #D97941);
}

.wstat.trans-gold-theme .ws-lbl {
  color: var(--text, #444444);
}


/* Numbers */

.ws-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.ws-lbl {
  font-size: 14px;
  line-height: 1.6;
}


/* Heading */

.why .heading {
  color: var(--dark, #2F2F2F);
}

.why .heading em {
  color: var(--primary, #D97941);
  font-style: italic;
}

.why .lead {
  color: var(--text, #444444) !important;
}

.why .bar {
  width: 70px;
  height: 3px;
  background: var(--primary, #D97941);
  border-radius: 20px;
  margin: 18px 0 24px;
}




















/* ── PROCESS SECTION EXCLUSIVES ── */
/* ===================================
   PROCESS SECTION
=================================== */

.process {
  position: relative;
  padding: 60px 0 ;
  background: var(--light, #FCF8F5);
  overflow: hidden;
  z-index: 1;
}

/* Abstract Background */
.process::before,
.process::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

/* Top Right Glow */
.process::before {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
  background: rgba(217, 121, 65, .12);
}

/* Bottom Left Glow */
.process::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -100px;
  background: rgba(191, 100, 49, .10);
}

.process-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.process-bg .shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 121, 65, .15);
  animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  top: 8%;
  left: 5%;
  background: rgba(217, 121, 65, .05);
}

.shape-2 {
  width: 260px;
  height: 260px;
  right: 6%;
  top: 18%;
  background: rgba(247, 232, 222, .7);
  animation-delay: 2s;
}

.shape-3 {
  width: 140px;
  height: 140px;
  bottom: 12%;
  left: 18%;
  background: rgba(217, 121, 65, .08);
  animation-delay: 4s;
}

.shape-4 {
  width: 220px;
  height: 220px;
  bottom: 5%;
  right: 10%;
  background: rgba(191, 100, 49, .05);
  animation-delay: 6s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

/* Timeline */

.process-timeline-track {
  position: relative;
}

@media (min-width: 992px) {
  .process-timeline-track::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary, #D97941) 15%,
        rgba(217, 121, 65, .35) 50%,
        var(--primary, #D97941) 85%,
        transparent);
    z-index: 1;
  }
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 10px;
}

/* Circle */

.step-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--border, #E8DDD6);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 22px;
  transition: .35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.step-ring i {
  font-size: 24px;
  color: var(--primary, #D97941);
}

.step-node:hover .step-ring {
  border-color: var(--primary, #D97941);
  background: var(--primary-light, #F7E8DE);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 18px 35px rgba(217, 121, 65, .18);
}

/* Step Number */

.s-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary, #D97941);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

/* Title */

.s-ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark, #2F2F2F);
  margin-bottom: 10px;
}

/* Text */

.s-txt {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light, #777777);
  max-width: 220px;
}

/* Header */

.process .heading {
  color: var(--dark, #2F2F2F);
}

.process .heading em {
  color: var(--primary, #D97941);
  font-style: italic;
}

.process .text-secondary {
  color: var(--text, #444444) !important;
}

/* Mobile */

@media (max-width:991px) {

  .process {
    padding: 90px 0;
  }

  .step-node {
    margin-bottom: 20px;
  }

  .step-ring {
    width: 68px;
    height: 68px;
  }

  .s-ttl {
    font-size: 22px;
  }

}


/*==================================
    Mobile Horizontal Scroll
===================================*/
@media (max-width:767px){

    .process-timeline-track{
        overflow-x:auto;
        overflow-y:hidden;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        padding:10px 0 20px;
        margin:0 -15px;
        padding-left:15px;

        /* Hide scrollbar */
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .process-timeline-track::-webkit-scrollbar{
        display:none;
    }

    .process-timeline-track .row{
        flex-wrap:nowrap;
        width:max-content;
        gap:18px;
        margin:0;
    }

    .process-timeline-track .col{
        flex:0 0 285px;
        width:285px;
        max-width:285px;
        scroll-snap-align:start;
        padding:0;
    }

    .process-timeline-track .step-node{
      
        border-radius:22px;
        padding:28px 22px;
        box-shadow:0 12px 30px rgba(0,0,0,.05);
        min-height:270px;
        justify-content:center;
    }

    /* Hide desktop timeline line */
    .process-timeline-track::before{
        display:none;
    }

}

/* ── TESTIMONIALS SECTION EXCLUSIVES ── */
/*=================================
    TESTIMONIALS
=================================*/

.testimonials {
  position: relative;
  padding: 60px 0 ;
  background: var(--light, #FCF8F5);
  overflow: hidden;
  z-index: 1;
}

/* Abstract Background */

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}

.testimonials::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  background: rgba(217, 121, 65, .10);
}

.testimonials::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -120px;
  background: rgba(191, 100, 49, .08);
}

/* Floating Shapes */

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .heading {
  color: var(--dark, #2F2F2F);
}

.testimonials .heading em {
  color: var(--primary, #D97941);
  font-style: italic;
}

/* Card */

.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border, #E8DDD6);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.tcard:hover {
  transform: translateY(-8px);
  border-color: var(--primary, #D97941);
  box-shadow: 0 22px 45px rgba(217, 121, 65, .15);
}

/* Featured Card */

.tcard.ft {
  background: linear-gradient(135deg, #fff, #F7E8DE);
  border-color: rgba(217, 121, 65, .25);
}

/* Quote */

.tcard::before {
  content: "❝";
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 90px;
  color: rgba(217, 121, 65, .08);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

/* Stars */

.t-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.t-stars i {
  color: var(--primary, #D97941);
  font-size: 14px;
}

/* Review */

.t-text {
  flex: 1;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text, #444444);
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Footer */

.t-foot {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #E8DDD6);
}

/* Avatar */

.t-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light, #F7E8DE);
}

/* Name */

.t-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark, #2F2F2F);
}

/* Role */

.t-role {
  font-size: 13px;
  color: var(--text-light, #777777);
}

.testimonials {
  position: relative;
  overflow: hidden;
  background: #FCF8F5;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(217, 121, 65, .08) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(217, 121, 65, .06) 2px, transparent 2px);
  background-size: 80px 80px;
  opacity: .5;
}

.testimonials::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(217, 121, 65, .08);
  border-radius: 50%;
  top: -250px;
  right: -180px;
}


/* ── GALLERY ── */
.gallery {
  padding: 60px 0 ;
  background: var(--dark3)
}

.g-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto 44px;
  padding: 0 5%;
  gap: 20px;
}

.g-head .heading {
  color: var(--dark, #2F2F2F);
  margin-top: 10px;
}

.g-head .heading em {
  color: var(--primary, #D97941);
  font-style: italic;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;
  text-decoration: none;
  white-space: nowrap;

  color: var(--primary, #D97941);
  background: #fff;

  border: 1.5px solid var(--border, #E8DDD6);
  border-radius: 12px;

  padding: 14px 34px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .04);

  transition: all .35s ease;
}

.btn-g:hover {
  background: var(--primary, #D97941);
  color: #fff;
  border-color: var(--primary, #D97941);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217, 121, 65, .18);
}

.btn-g i {
  transition: .35s ease;
}

.btn-g:hover i {
  transform: translateX(4px);
}

@media (max-width:768px) {

  .g-head {
    flex-direction: column;
    align-items: flex-start;
  }

}

.g-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px
}

.g-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform .5s
}

.g-item:hover img {
  transform: scale(1.06)
}

.g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2
}

.g-item:nth-child(1) img {
  min-height: 340px
}

.g-item:nth-child(6) {
  grid-column: span 2
}

.g-item:nth-child(6) img {
  min-height: 180px
}

.g-hover {
  position: absolute;
  inset: 0;
  background: rgba(17, 15, 14, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s
}

.g-item:hover .g-hover {
  background: rgba(17, 15, 14, .45);
  opacity: 1
}

.g-zoom {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(240, 146, 60, .85);
  display: grid;
  place-items: center
}

.g-zoom i {
  font-size: 18px;
  color: #fff
}

.g-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(17, 15, 14, .78);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  font-weight: 500
}

/* ── CTA ── */
/*=================================
        CTA
==================================*/

.cta {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #FCF8F5 0%, #FFF 55%, #F7E8DE 100%);
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* Decorative Background */

.cta::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -280px;
  right: -180px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .08);
  filter: blur(90px);
}

.cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -120px;
  border-radius: 50%;
  background: rgba(191, 100, 49, .06);
  filter: blur(70px);
}

/* Background Image */

.cta-bg-img {
  position: absolute;
  inset: 0;
  opacity: .05;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative Watermark */

.cta-deco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px;
  font-weight: 700;
  letter-spacing: -8px;
  color: #D97941;
  opacity: .035;
  pointer-events: none;
  white-space: nowrap;
}

/* Content */

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
}

.cta .heading {
  color: #2F2F2F;
  margin: 18px 0;
}

.cta .heading em {
  color: #D97941;
  font-style: italic;
}

.cta .muted-text {
  color: #444444;
  max-width: 520px;
  margin: 18px auto 38px;
  line-height: 1.8;
}

/* Buttons */

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Trust Strip */

.cta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;

  margin-top: 55px;
  padding-top: 35px;

  border-top: 1px solid #E8DDD6;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #777777;
  font-size: 14px;
  font-weight: 500;
}

.cs-item i {
  color: #D97941;
  font-size: 17px;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-pattern svg {
  width: 100%;
  height: 100%;
}

/* ── SECONDARY CALL BUTTON (GHOST VARIANT) ── */

/* ── CONTACT SECTION EXCLUSIVES ── */


/*==================================================
                CONTACT SECTION
==================================================*/
/*=========================================================
                    CONTACT SECTION
=========================================================*/

.contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  overflow: hidden;
  z-index: 1;
}

/*==========================================
            Background Decoration
==========================================*/

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -180px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .06);
  filter: blur(90px);
  z-index: -2;
}

.contact::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -180px;
  left: -120px;
  border-radius: 50%;
  background: rgba(191, 100, 49, .05);
  filter: blur(80px);
  z-index: -2;
}

.contact .container {
  position: relative;
  z-index: 2;
}

/*==========================================
                Section Heading
==========================================*/

.contact .heading {

  color: var(--dark);

}

.contact .heading em {

  color: var(--primary);

  font-style: italic;

}

.contact .lead {

  color: var(--text-light);

  font-size: 15px;

  line-height: 1.9;

  max-width: 680px;

  margin: auto;

}

.contact .bar {

  width: 70px;

  height: 3px;

  background: var(--primary);

  border-radius: 50px;

  margin: 20px auto;

}

/*=========================================================
                    CONTACT CARDS
=========================================================*/

.ci {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 22px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition: var(--transition);

  box-shadow: var(--shadow-sm);

}

.ci:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow-md);

  border-color: var(--primary);

}

.ci-ico {

  width: 58px;

  height: 58px;

  border-radius: 16px;

  background: var(--primary-light);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: var(--transition);

}

.ci:hover .ci-ico {

  background: var(--primary);

}

.ci-ico i {

  color: var(--primary);

  font-size: 22px;

  transition: var(--transition);

}

.ci:hover .ci-ico i {

  color: var(--white);

}

.ci-lbl {

  font-size: 12px;

  font-weight: 700;

  color: var(--secondary);

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 6px;

}

.ci-val {

  color: var(--dark);

  font-size: 15px;

  line-height: 1.7;

  font-weight: 500;

}

/*=========================================================
                    TRUST BOX
=========================================================*/

.trust-box {

  background: var(--primary-light);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 30px;

}

.trust-icon {

  width: 62px;

  height: 62px;

  border-radius: 18px;

  background: var(--white);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

  box-shadow: var(--shadow-sm);

}

.trust-icon i {

  color: var(--primary);

  font-size: 26px;

}

.trust-box h5 {

  color: var(--dark);

  font-size: 22px;

  font-family: 'Cormorant Garamond', serif;

  margin-bottom: 18px;

}

.trust-box ul {

  list-style: none;

  padding: 0;

  margin: 0;

}

.trust-box li {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--text);

  margin-bottom: 14px;

  font-size: 15px;

}

.trust-box li:last-child {

  margin-bottom: 0;

}

.trust-box li i {

  color: var(--primary);

}

/*=========================================================
                    SOCIAL
=========================================================*/

.social-block h6 {

  color: var(--dark);

  font-size: 16px;

  font-weight: 600;

  margin-bottom: 18px;

}

.soc-row {

  display: flex;

  gap: 14px;

  flex-wrap: wrap;

}

.soc {

  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: var(--white);

  border: 1px solid var(--border);

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: var(--transition);

  box-shadow: var(--shadow-sm);

}

.soc i {

  color: var(--primary);

  font-size: 18px;

  transition: var(--transition);

}

.soc:hover {

  background: var(--primary);

  border-color: var(--primary);

  transform: translateY(-5px);

}

.soc:hover i {

  color: var(--white);

}


/*=========================================================
                    CONTACT FORM
=========================================================*/

.cform.home {

  position: relative;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 42px;

  box-shadow: var(--shadow-md);

  overflow: hidden;

}

.cform.home::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,
      var(--primary),
      var(--primary-dark));

}

/*=========================================================
                    FORM HEADER
=========================================================*/

.cform-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 36px;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 8px;

}

.cform-sub {

  color: var(--text-light);

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 35px;

}

/*=========================================================
                    FORM GROUP
=========================================================*/

.fg {

  display: flex;

  flex-direction: column;

  margin-bottom: 22px;

}

.fg label {

  color: var(--text);

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 8px;

}

/*=========================================================
                    INPUTS
=========================================================*/

.fg input,
.fg textarea,
.fg select {

  width: 100%;

  border: 1px solid var(--border);

  background: var(--light);

  color: var(--text);

  border-radius: var(--radius-sm);

  padding: 14px 18px;

  font-size: 14px;

  transition: var(--transition);

  outline: none;

}

.fg input {

  height: 54px;

}

.fg select {

  height: 54px;

  cursor: pointer;

}

.fg textarea {

  resize: vertical;

  min-height: 150px;

}

.fg input::placeholder,
.fg textarea::placeholder {

  color: var(--secondary);

}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {

  background: var(--white);

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(217, 121, 65, .10);

}

/*=========================================================
                BUTTON
=========================================================*/

.btn-submit {

  width: 100%;

  height: 56px;

  border: none;

  border-radius: var(--radius-sm);

  background: var(--primary);

  color: var(--white);

  font-size: 15px;

  font-weight: 600;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  cursor: pointer;

  transition: var(--transition);

}

.btn-submit i {

  transition: var(--transition);

}

.btn-submit:hover {

  background: var(--primary-dark);

  transform: translateY(-3px);

  box-shadow: var(--shadow-md);

}

.btn-submit:hover i {

  transform: translateX(5px);

}

/*=========================================================
                FORM NOTE
=========================================================*/

.form-note {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 18px;

  color: var(--text-light);

  font-size: 13px;

  line-height: 1.6;

  text-align: center;

}

.form-note i {

  color: var(--primary);

  font-size: 15px;

}

/*=========================================================
                FORM ANIMATION
=========================================================*/

.cform.home:hover {

  box-shadow: var(--shadow-lg);

}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media (max-width:991px) {

  .contact {

    padding: 90px 0;

  }

  .cform.home {

    margin-top: 10px;

  }

}

@media (max-width:767px) {

  .contact {

    padding: 80px 0;

  }

  .cform.home {

    padding: 30px;

    border-radius: 24px;

  }

  .cform-title {

    font-size: 30px;

  }

  .cform-sub {

    font-size: 14px;

    margin-bottom: 28px;

  }

  .btn-submit {

    height: 54px;

  }

}

@media (max-width:575px) {

  .contact {

    padding: 70px 0;

  }

  .cform.home {

    padding: 24px;

  }

  .cform-title {

    font-size: 28px;

  }

  .fg {

    margin-bottom: 18px;

  }

  .fg input,
  .fg select {

    height: 50px;

    padding: 12px 15px;

  }

  .fg textarea {

    min-height: 130px;

    padding: 14px 15px;

  }

  .form-note {

    font-size: 12px;

  }

}































/* ── FOOTER ── */
/*=========================================================
                        PREMIUM FOOTER
=========================================================*/

.footer {
  position: relative;
  padding: 60px 0 40px;
  background: linear-gradient(180deg,
      var(--white) 0%,
      var(--light) 100%);
  border-top: 1px solid var(--border);
  overflow: hidden;
  z-index: 1;
}

/*=========================================================
                LUXURY BACKGROUND
=========================================================*/

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(217, 121, 65, .05) 2px, transparent 2px),
    radial-gradient(circle at 85% 70%, rgba(217, 121, 65, .05) 2px, transparent 2px),
    radial-gradient(circle at 50% 100%, rgba(217, 121, 65, .04) 1.5px, transparent 1.5px);

  background-size:
    90px 90px,
    90px 90px,
    70px 70px;

  opacity: .6;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/*=========================================================
                FLORAL DECORATION
=========================================================*/

.footer-flower {
  position: absolute;
  pointer-events: none;
  opacity: .5;
}

.footer-flower img {
  width: 260px;
  display: block;
}

.flower-left {
  top: 0;
  left: 0;
}

.flower-right {
  right: 0;
  bottom: 0;

}

/*=========================================================
                BRAND
=========================================================*/

.footer-brand {

  max-width: 720px;

  margin: auto auto 30px;

}

.footer-brand h2 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 48px;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 18px;

}

.footer-brand p {

  color: var(--text-light);

  line-height: 1.9;

  font-size: 15px;

  max-width: 620px;

  margin: auto;

}

/*=========================================================
                DIVIDER
=========================================================*/

.footer-divider {

  display: flex;

  justify-content: center;

  margin: 55px 0;

}

.footer-divider span {

  width: 120px;

  height: 2px;

  border-radius: 20px;

  background: linear-gradient(90deg,
      transparent,
      var(--primary),
      transparent);

}

/*=========================================================
                FOOTER BOX
=========================================================*/

.footer-box {

  height: 100%;

}

.footer-box h5 {

  color: var(--dark);

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 22px;

  position: relative;

  display: inline-block;

}

.footer-box h5::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 38px;

  height: 2px;

  background: var(--primary);

  border-radius: 20px;

}

.footer-box p {

  color: var(--text-light);

  font-size: 15px;

  line-height: 1.9;

}

/*=========================================================
                LINKS
=========================================================*/

.footer-box ul {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-box ul li {

  margin-bottom: 14px;

}

.footer-box ul li:last-child {

  margin-bottom: 0;

}

.footer-box ul li a {

  text-decoration: none;

  color: var(--text);

  transition: var(--transition);

  position: relative;

  display: inline-block;

}

.footer-box ul li a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: -3px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: var(--transition);

}

.footer-box ul li a:hover {

  color: var(--primary);

  transform: translateX(5px);

}

.footer-box ul li a:hover::before {

  width: 100%;

}

/*=========================================================
                CONTACT
=========================================================*/

.footer-contact {

  display: flex;

  flex-direction: column;

  gap: 18px;

}

.footer-contact div {

  display: flex;

  align-items: flex-start;

  gap: 14px;

}

.footer-contact i {

  color: var(--primary);

  font-size: 18px;

  margin-top: 2px;

}

.footer-contact span,
.footer-contact a {

  color: var(--text);

  text-decoration: none;

  line-height: 1.8;

  transition: var(--transition);

}

.footer-contact a:hover {

  color: var(--primary);

}

/*=========================================================
                    FOOTER SOCIAL
=========================================================*/

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.footer-social a i {
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/*=========================================================
                    FOOTER BOTTOM
=========================================================*/

.footer-bottom {
  padding-top: 10px;
}

.copyright {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.copyright strong {
  color: var(--dark);
  font-weight: 600;
}

/*=========================================================
                    BOTTOM LINKS
=========================================================*/

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-bottom-links span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .35;
}

/*=========================================================
                    CREDIT
=========================================================*/

.footer-credit {
  text-align: center;
  padding-top: 28px;
}

.footer-credit p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.footer-credit i {
  color: var(--primary);
  margin: 0 4px;
  animation: footerHeart 2s infinite ease-in-out;
}

@keyframes footerHeart {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }

}

/*=========================================================
                    SCROLL TO TOP
=========================================================*/

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

.scroll-top i {
  transition: var(--transition);
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media (max-width:991px) {

  .footer {
    padding: 80px 0 35px;
  }

  .footer-brand h2 {
    font-size: 40px;
  }

  .footer-divider {
    margin: 45px 0;
  }

  .footer-box {
    margin-bottom: 10px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }

}

@media (max-width:767px) {

  .footer {
    text-align: center;
  }

  .footer-brand h2 {
    font-size: 34px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-box h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact div {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-credit {
    padding-top: 20px;
  }

  .flower-left img,
  .flower-right img {
    width: 170px;
    opacity: .45;
  }

}

@media (max-width:575px) {

  .footer {
    padding: 70px 0 30px;
  }

  .footer-brand h2 {
    font-size: 30px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-social a i {
    font-size: 16px;
  }

  .footer-bottom-links {
    gap: 10px;
  }

  .footer-bottom-links span {
    display: none;
  }

  .scroll-top {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
  }

}









/* ── SCROLL TO TOP ACCELERATOR ── */
#stBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold, #e5a962);
  color: #110f0e;
  border: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 500;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(229, 169, 98, 0.3);
}

#stBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#stBtn:hover {
  background: #d99950;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(229, 169, 98, 0.45);
}

/* responsive */
@media(max-width:1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ev-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
  }

  .steps::before {
    display: none
  }

  .test-grid {
    grid-template-columns: 1fr 1fr
  }

  .g-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .g-item:nth-child(1) {
    grid-column: span 2
  }

  .ft-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-tel,
  .nav-right .btn-a {
    display: none
  }

  .burger {
    display: flex
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 50px);
    text-align: center
  }

  .hero-h em {
    display: block
  }

  .hero-btns,
  .hero-stats {
    justify-content: center
  }

  .hero-right {
    justify-content: center
  }

  .about-in,
  .why-in,
  .contact-in {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .about-imgs {
    padding-bottom: 20px
  }

  .about-img-sm {
    right: 0
  }

  .about-badge {
    left: 0
  }

  .why-right {
    grid-template-columns: 1fr 1fr
  }

  .svc-grid,
  .ev-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .test-grid {
    grid-template-columns: 1fr
  }

  .g-grid {
    grid-template-columns: 1fr 1fr
  }

  .g-item:nth-child(1) {
    grid-column: span 2
  }

  .g-item:nth-child(6) {
    grid-column: span 2
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .ev-head,
  .g-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }
}

@media(max-width:480px) {
  .hero-h {
    font-size: 44px
  }

  .why-right,
  .steps {
    grid-template-columns: 1fr
  }

  .ft-top {
    grid-template-columns: 1fr
  }

  .g-grid {
    grid-template-columns: 1fr
  }

  .g-item:nth-child(n) {
    grid-column: span 1
  }
}






/* about page csss */


/* ── PAGE HERO ── */
/*=========================================
ABOUT HERO
==========================================*/

/*=====================================
    ABOUT HERO
======================================*/
.about-hero {
  background: var(--light);
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* soft background */

.about-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--primary-light);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  opacity: .8;
}

/* Text */

.hero-label {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin: 18px 0;
  color: var(--dark);
}

.about-hero h1 span {
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.about-hero p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 450px;
}

/* Images */

.hero-gallery {
  position: relative;
  width: 100%;
  height: 420px;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Main image */

.img-lg {
  position: absolute;
  width: 72%;
  height: 340px;
  right: 0;
  top: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

/* Small image */

.img-sm {
  position: absolute;
  width: 42%;
  height: 220px;
  left: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.img-lg:hover,
.img-sm:hover {
  transform: translateY(-6px);
  transition: .4s;
}

/* Mobile */

@media(max-width:991px) {

  .about-hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-gallery {
    margin-top: 50px;
    height: 360px;
  }

}

@media(max-width:576px) {

  .hero-gallery {
    height: 300px;
  }

  .img-lg {
    width: 78%;
    height: 230px;
  }

  .img-sm {
    width: 45%;
    height: 150px;
    border-width: 6px;
  }

}












/*=========================================
    ABOUT STATS
=========================================*/
/*==================================================
    ABOUT STATS
==================================================*/

.ab-statsbar {
  position: relative;
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.ab-stat-item {
  position: relative;
  text-align: center;
  padding: 15px 30px;
  transition: all .35s ease;
}

/* Elegant Vertical Separator */

.ab-stat-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(217, 121, 65, .15),
      rgba(217, 121, 65, .45),
      rgba(217, 121, 65, .15),
      transparent);
}

/* Remove last separator */

.row>div:last-child .ab-stat-item::after {
  display: none;
}

/* Hover */

.ab-stat-item:hover {
  transform: translateY(-6px);
}

.ab-stat-item:hover .ab-stat-num {
  color: var(--primary-dark);
}

/* Number */

.ab-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  transition: .35s ease;
}

.ab-stat-num em {
  font-style: normal;
  color: var(--primary-dark);
}

/* Label */

.ab-stat-lbl {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* Subtitle */

.ab-stat-sub {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 180px;
  margin-inline: auto;
}

/* Tablet */

@media (max-width:991px) {

  .ab-statsbar {
    padding: 70px 0;
  }

  .ab-stat-item {
    margin-bottom: 35px;
  }

  .ab-stat-item::after {
    display: none;
  }

}

/* Mobile */

@media (max-width:767px) {

  .ab-statsbar {
    padding: 60px 0;
  }

  .ab-stat-num {
    font-size: 48px;
  }

  .ab-stat-lbl {
    font-size: 16px;
  }

  .ab-stat-sub {
    font-size: 13px;
  }

}
















/* ── STORY ── */
/*==================================================
    OUR STORY
==================================================*/

.ab-story {
  position: relative;
  padding: 120px 0;
  background: var(--light);
  overflow: hidden;
}

/* Decorative Background */

.ab-story::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--primary-light);
  border-radius: 50%;
  top: -180px;
  right: -150px;
  opacity: .8;
}

.ab-story::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(217, 121, 65, .08);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
}

/*=========================================
Images
=========================================*/

.story-images {
  position: relative;
  max-width: 540px;
  margin: auto;
  padding-bottom: 80px;
}

.story-img-main {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
}

.story-img-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: .6s ease;
}

.story-img-main:hover img {
  transform: scale(1.05);
}

.story-img-small {
  position: absolute;
  width: 220px;
  height: 260px;
  right: -40px;
  bottom: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.story-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=========================================
Experience Card
=========================================*/

.story-exp {
  position: absolute;
  left: -30px;
  bottom: 40px;
  background: #fff;
  border-radius: 22px;
  padding: 24px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  text-align: center;
}

.story-exp h2 {
  margin: 0;
  font-size: 52px;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  line-height: 1;
}

.story-exp span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-light);
}

/*=========================================
Content
=========================================*/

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}

.section-title span {
  display: block;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
}

.section-text {
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/*=========================================
Features
=========================================*/

.story-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: .35s ease;
  height: 100%;
}

.story-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 121, 65, .25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.story-feature i {
  font-size: 20px;
  color: var(--primary);
}

.story-feature span {
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}

/*=========================================
Button
=========================================*/

.btn-lux-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: .35s ease;
}

.btn-lux-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(217, 121, 65, .25);
}

/*=========================================
Responsive
=========================================*/

@media (max-width:991px) {

  .ab-story {
    padding: 90px 0;
  }

  .story-images {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .story-img-main img {
    height: 500px;
  }

  .story-img-small {
    width: 180px;
    height: 220px;
    right: 10px;
  }

  .story-exp {
    left: 20px;
    bottom: 20px;
  }

}

@media (max-width:767px) {

  .ab-story {
    padding: 70px 0;
  }

  .story-img-main img {
    height: 420px;
  }

  .story-img-small {
    width: 150px;
    height: 180px;
    border-width: 6px;
  }

  .story-exp {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
    width: fit-content;
  }

  .section-title {
    font-size: 36px;
  }

  .section-text {
    font-size: 16px;
  }

}

/* ── MISSION / VISION / VALUES (light bg) ── */
/*=========================================
MISSION • VISION • VALUES
=========================================*/

.ab-mvv {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative */

.ab-mvv::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--primary-light);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  opacity: .7;
}

/* Heading */

.section-head {
  max-width: 620px;
}

.section-tag {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(38px, 5vw, 54px);
  color: var(--dark);
  font-weight: 700;
}

.section-title span {
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.section-subtitle {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 17px;
}

/* Cards */

.mvv-card {

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 45px 35px;

  text-align: center;

  height: 100%;

  transition: .35s ease;

}

.mvv-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, .06);

  border-color: rgba(217, 121, 65, .20);

}

/* Featured */

.mvv-card.featured {

  background: linear-gradient(180deg,
      #fff,
      var(--primary-light));

}

/* Icon */

.mvv-icon {

  width: 78px;

  height: 78px;

  margin: auto auto 24px;

  border-radius: 50%;

  background: var(--primary-light);

  display: flex;

  justify-content: center;

  align-items: center;

}

.mvv-icon i {

  font-size: 32px;

  color: var(--primary);

}

/* Title */

.mvv-card h3 {

  font-size: 30px;

  margin-bottom: 18px;

  color: var(--dark);

  font-family: "Cormorant Garamond", serif;

  font-weight: 600;

}

/* Text */

.mvv-card p {

  margin: 0;

  color: var(--text-light);

  line-height: 1.9;

  font-size: 16px;

}

/* Responsive */

@media(max-width:991px) {

  .ab-mvv {

    padding: 90px 0;

  }

}

@media(max-width:767px) {

  .mvv-card {

    padding: 35px 25px;

  }

}

/* ── TEAM ── */





/*=========================================
TEAM
=========================================*/
.ab-team {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

/* Team Card Modernization */
.team-member {
  background: #fff;
  padding: 15px;
  border-radius: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.team-image img {
  width: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.08);
}

/* Overlay & Icons */
.team-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 24px;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, .6));
  opacity: 0;
  transition: var(--transition);
}

.team-member:hover .team-overlay {
  opacity: 1;
}

.team-overlay a {
  width: 42px;
  height: 42px;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.team-overlay a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

/* Content Styling */
.team-content {
  text-align: center;
  padding: 24px 10px 10px;
}

.team-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-content span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto 15px;
}

.team-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media(max-width:991px) {
  .ab-team {
    padding: 80px 0;
  }
}




















/* ── CULTURE (light bg) ── */
/*==================================================
    ASHIYAA EVENTS - CULTURE SECTION
==================================================*/

.ab-culture {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, #F7E8DE 0%, transparent 35%),
    radial-gradient(circle at bottom left, #FFF5EF 0%, transparent 40%),
    #FCF8F5;
}

/*==========================
 Decorative Background
==========================*/

.culture-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 350px;
  height: 350px;
  background: rgba(217, 121, 65, .08);
  top: -180px;
  right: -120px;
  filter: blur(10px);
}

.shape-2 {
  width: 280px;
  height: 280px;
  background: rgba(217, 121, 65, .06);
  bottom: -120px;
  left: -120px;
  filter: blur(15px);
}

/*==========================
 Heading
==========================*/

.ab-culture .heading {
  color: #2F2F2F;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.ab-culture .heading span {
  display: block;
  color: #D97941;
}

.culture-text {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  max-width: 560px;
}

/*==========================
 Feature Cards
==========================*/

.feat {
  background: #fff;
  border: 1px solid #E8DDD6;
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

.feat:hover {
  transform: translateY(-8px);
  border-color: #D97941;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.feat-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D97941, #BF6431);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feat h5 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #2F2F2F;
  line-height: 1.2;
}

.feat p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

/*==========================
 Buttons
==========================*/

.ab-culture .btn-primary {
  background: #D97941;
  border: none;
  border-radius: 50px;
  padding: 15px 34px;
  font-weight: 600;
  transition: .35s;
}

.ab-culture .btn-primary:hover {
  background: #BF6431;
  transform: translateY(-3px);
}

.ab-culture .btn-outline-dark {
  border-radius: 50px;
  padding: 15px 34px;
  border: 1px solid #D7C9C0;
  color: #2F2F2F;
  transition: .35s;
}

.ab-culture .btn-outline-dark:hover {
  background: #2F2F2F;
  color: #fff;
}

/*==========================
 Gallery Wrapper
==========================*/

.culture-gallery {
  position: relative;
  min-height: 640px;
}

.gallery-main {
  width: 78%;
  height: 480px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, .12);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.gallery-main:hover img {
  transform: scale(1.08);
}

/*==========================
 Badge
==========================*/

.gallery-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #2F2F2F;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .10);
}

.gallery-badge i {
  color: #D97941;
}

/*==================================================
    ASHIYAA EVENTS - CULTURE SECTION
    CSS PART 2
==================================================*/

/*==========================
 Floating Images
==========================*/

.gallery-small {
  position: absolute;
  width: 220px;
  height: 180px;
  padding: 8px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
  transition: .45s ease;
  animation: floatImage 6s ease-in-out infinite;
}

.gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: .6s ease;
}

.gallery-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .16);
}

.gallery-small:hover img {
  transform: scale(1.08);
}

.gallery-one {
  top: 60px;
  right: 0;
}

.gallery-two {
  right: 50px;
  bottom: 35px;
  animation-delay: 2s;
}

/*==========================
 Statistics Card
==========================*/

.gallery-card {
  position: absolute;
  left: 40px;
  bottom: 0;
  background: #fff;
  border: 1px solid #E8DDD6;
  border-radius: 24px;
  padding: 26px 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
  animation: floatCard 5s ease-in-out infinite;
}

.counter h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #D97941;
}

.counter span {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/*==========================
 Image Shine Effect
==========================*/

.gallery-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);
  transform: skewX(-25deg);
  transition: 1s;
  z-index: 2;
}

.gallery-main:hover::before {
  left: 130%;
}

/*==========================
 Decorative Border
==========================*/

.gallery-main::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  pointer-events: none;
}

/*==========================
 Animations
==========================*/

@keyframes floatImage {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes floatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }

}

/*==========================
 Hover Enhancements
==========================*/

.gallery-main,
.gallery-small,
.gallery-card {
  transition: all .45s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .14);
}

.gallery-main:hover {
  transform: translateY(-4px);
}

/*==========================
 Responsive
==========================*/

@media (max-width:1199px) {

  .gallery-main {
    width: 100%;
  }

}

@media (max-width:991px) {

  .ab-culture {
    padding: 90px 0;
  }

  .ab-culture .heading {
    font-size: 38px;
  }

  .culture-gallery {
    min-height: auto;
    margin-top: 40px;
  }

  .gallery-main {
    width: 100%;
    height: 380px;
  }

  .gallery-small {
    position: relative;
    width: 48%;
    height: 180px;
    display: inline-block;
    top: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    animation: none;
  }

  .gallery-two {
    margin-left: 4%;
  }

  .gallery-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 25px;
    width: 100%;
    animation: none;
  }

}

@media (max-width:767px) {

  .ab-culture {
    padding: 70px 0;
  }

  .ab-culture .heading {
    font-size: 30px;
    line-height: 1.3;
  }

  .culture-text {
    font-size: 15px;
  }

  .feat {
    padding: 22px;
  }

  .feat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 20px;
    border-radius: 18px;
  }

  .feat h5 {
    font-size: 17px;
  }

  .gallery-main {
    height: 300px;
    border-radius: 22px;
  }

  .gallery-small {
    width: 100%;
    display: block;
    margin-left: 0;
    height: 170px;
  }

  .gallery-two {
    margin-top: 18px;
  }

  .gallery-badge {
    left: 15px;
    right: 15px;
    bottom: 15px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  .gallery-card {
    padding: 22px;
  }

  .counter h2 {
    font-size: 38px;
  }

}

@media (max-width:575px) {

  .gallery-main {
    height: 260px;
  }

  .counter h2 {
    font-size: 34px;
  }

  .gallery-card {
    text-align: center;
  }

  .gallery-badge {
    font-size: 12px;
  }

}

/*==================================================
    END
==================================================*/

/* ── AWARDS ── */
.ab-awards {
  padding: 60px 0 ;
  background-color: var(--bg-dark, #0d0b0a);
  overflow: hidden;
}

.ab-award-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-lux, all 0.4s cubic-bezier(0.16, 1, 0.3, 1));
}

.ab-award-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 169, 98, 0.22);
  background: rgba(229, 169, 98, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.ab-award-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(229, 169, 98, 0.2), rgba(229, 169, 98, 0.08));
  border: 1px solid rgba(229, 169, 98, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--transition-lux);
}

.ab-award-card:hover .ab-award-ico {
  background: linear-gradient(135deg, rgba(229, 169, 98, 0.35), rgba(229, 169, 98, 0.15));
  transform: scale(1.05) rotate(5deg);
}

.ab-award-ico i {
  font-size: 22px;
  color: var(--accent-gold);
}

.ab-award-year {
  font-size: 11px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ab-award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 5px;
}

.ab-award-org {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 991.98px) {
  .ab-cm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-cm-item:last-child {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ab-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ab-culture-mosaic .ab-cm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-award-card {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .ab-cm-grid {
    grid-template-columns: 1fr;
  }

  .ab-cm-item {
    height: 180px;
  }

  .ab-cm-item:last-child {
    display: block;
  }
}




/* contact page css */





















/* ── HERO ── */
/*==============================================================
CONTACT HERO
PART 1
==============================================================*/
/*==============================================================
CONTACT HERO
PART 1
==============================================================*/

.ct-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: #FCF8F5;
}

/*====================================
Background Glow
====================================*/

.ct-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.ct-glow-1 {

  width: 420px;
  height: 420px;

  left: -180px;
  top: -120px;

  background: rgba(217, 121, 65, .12);

}

.ct-glow-2 {

  width: 320px;
  height: 320px;

  right: -120px;
  bottom: -60px;

  background: rgba(217, 121, 65, .08);

}

/*====================================
Flowers
====================================*/

.ct-flower {

  position: absolute;

  opacity: .08;

  pointer-events: none;

}

.ct-flower img {

  width: 100%;
  display: block;

}

.ct-flower-left {

  width: 240px;

  left: -60px;
  top: 120px;

}

.ct-flower-right {

  width: 220px;

  right: -60px;
  bottom: 80px;

  transform: scaleX(-1);

}

/*====================================
Container
====================================*/

.ct-hero .container {

  position: relative;

  z-index: 5;

}

/*====================================
Breadcrumb
====================================*/

.ct-breadcrumb {

  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;

  font-size: 14px;

}

.ct-breadcrumb a {

  color: var(--text-light);

  text-decoration: none;

  transition: .35s;

}

.ct-breadcrumb a:hover {

  color: var(--primary);

}

.ct-breadcrumb .active {

  color: var(--primary);

  font-weight: 600;

}

/*====================================
Label
====================================*/

.ct-label {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 10px 20px;

  background: #fff;

  border-radius: 50px;

  border: 1px solid rgba(217, 121, 65, .12);

  color: var(--primary);

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .6px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);

}

.ct-label span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--primary);

}

/*====================================
Heading
====================================*/

.ct-title {

  margin: 28px 0;

  font-size: 64px;

  line-height: 1.08;

  color: var(--dark);

  font-weight: 500;

  letter-spacing: -1px;

}

.ct-title em {

  color: var(--primary);

  font-style: normal;

  position: relative;

}

.ct-title em::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 3px;

  border-radius: 20px;

  background: linear-gradient(90deg,
      var(--primary),
      transparent);

}

/*====================================
Description
====================================*/

.ct-desc {

  max-width: 560px;

  margin-bottom: 40px;

  font-size: 17px;

  line-height: 1.9;

  color: var(--text-light);

}

/*====================================
Buttons
====================================*/

.ct-actions {

  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 55px;

}

.ct-actions .btn-main {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

  box-shadow: 0 18px 35px rgba(217, 121, 65, .20);

}

.ct-actions .btn-main:hover {

  transform: translateY(-4px);

  background: var(--primary-dark);

}

.ct-actions .btn-light {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 16px 30px;

  border-radius: 50px;

  background: #fff;

  border: 1px solid var(--border);

  color: var(--dark);

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.ct-actions .btn-light:hover {

  background: var(--primary);

  color: #fff;

  border-color: var(--primary);

}

/*====================================
Info Strip
====================================*/

.ct-info {

  display: flex;

  align-items: center;

  gap: 28px;

}

.ct-info-item {

  display: flex;

  flex-direction: column;

}

.ct-info-item small {

  margin-bottom: 6px;

  color: var(--text-light);

  text-transform: uppercase;

  font-size: 11px;

  letter-spacing: 1.5px;

}

.ct-info-item strong {

  font-size: 22px;

  color: var(--dark);

  font-weight: 600;

}

.ct-info-line {

  width: 1px;

  height: 42px;

  background: rgba(217, 121, 65, .15);

}


/*==============================================================
CONTACT HERO
PART 2
==============================================================*/

/*====================================
Image Area
====================================*/

.ct-image-area {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}

/* Decorative Background */

.ct-image-bg {
  position: absolute;
  width: 420px;
  height: 460px;
  right: -30px;
  top: 35px;
  border-radius: 40px;
  background: linear-gradient(135deg,
      rgba(217, 121, 65, .08),
      rgba(217, 121, 65, .02));
  z-index: 0;
}

/*====================================
Image Frame
====================================*/

.ct-image-frame {
  position: relative;
  z-index: 2;
}

/* Luxury Border */

.ct-image-border {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(217, 121, 65, .25);
  border-radius: 260px 260px 28px 28px;
}

/* Main Image */

.ct-image {

  position: relative;

  overflow: hidden;

  border-radius: 250px 250px 24px 24px;

  background: #fff;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .08);

}

.ct-image img {

  width: 100%;
  height: 680px;

  object-fit: cover;

  display: block;

  transition: .8s;

}

.ct-image:hover img {

  transform: scale(1.05);

}

/*====================================
Booking Ribbon
====================================*/

.ct-ribbon {

  position: absolute;

  top: 70px;
  left: -50px;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 24px;

  background: #fff;

  border-radius: 50px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .08);

  border: 1px solid rgba(217, 121, 65, .10);

}

.ct-ribbon-dot {

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--primary);

}

/*====================================
Contact Badge
====================================*/

.ct-contact-badge {

  position: absolute;

  right: -25px;
  bottom: 45px;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 16px;

  background: #fff;

  padding: 22px 26px;

  border-radius: 22px;

  border: 1px solid rgba(217, 121, 65, .10);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, .08);

}

.ct-contact-icon {

  width: 60px;
  height: 60px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(217, 121, 65, .10);

  color: var(--primary);

  font-size: 22px;

}

.ct-contact-badge small {

  display: block;

  margin-bottom: 4px;

  color: var(--text-light);

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;

}

.ct-contact-badge h6 {

  margin: 0;

  font-size: 18px;

  color: var(--dark);

  font-weight: 600;

}

/*====================================
Decorative Leaf
====================================*/

.ct-leaf {

  position: absolute;

  right: -40px;
  top: 180px;

  width: 150px;

  opacity: .10;

  z-index: 1;

}

.ct-leaf img {

  width: 100%;

  display: block;

}

/*====================================
Bottom Decoration
====================================*/

.ct-bottom {

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  line-height: 0;

}

.ct-bottom svg {

  width: 100%;
  height: 90px;

  fill: #fffdfb;

}

/*====================================
Scroll Indicator
====================================*/

.ct-scroll {

  position: absolute;

  left: 50%;
  top: -65px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

}

.ct-scroll span {

  font-size: 11px;

  letter-spacing: 2px;

  color: var(--text-light);

  text-transform: uppercase;

}

.ct-scroll i {

  color: var(--primary);

  font-size: 18px;

  animation: ctScroll 1.8s infinite;

}

@keyframes ctScroll {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(8px);

  }

}


/*====================================
Mobile
====================================*/

@media (max-width: 991px) {

  .ct-title {

    margin: 20px 0;

    font-size: 42px;

    line-height: 1.15;

    text-align: center;

    letter-spacing: 0;

  }

  .ct-title em::after {

    height: 2px;

    bottom: -5px;

  }

  .ct-desc {

    max-width: 100%;

    margin: 0 auto 30px;

    font-size: 15px;

    line-height: 1.8;

    text-align: center;

  }
.ct-breadcrumb {
   
    justify-content: center;
}

.ct-hero {
    text-align: center;
}
  .ct-actions {

    flex-direction: initial;

    gap: 12px;

    margin-bottom: 35px;

  }

  .ct-actions .btn-main,

  .ct-actions .btn-light {

    width: 100%;

    justify-content: center;

    padding: 15px 20px;

    font-size: 15px;

  }

}

@media (max-width: 576px) {

  .ct-title {

    font-size: 34px;

    line-height: 1.2;

  }

  .ct-desc {

    font-size: 14px;

    margin-bottom: 25px;

  }

  .ct-actions .btn-main,

  .ct-actions .btn-light {

    padding: 14px 18px;

    border-radius: 16px;

  }

}






































/*═══════════════════════════════════════
    CONTACT MAIN
═══════════════════════════════════════*/

.ct-main {
  position: relative;
  padding: 90px 0;
  background: #FCF8F5;
  overflow: hidden;
}

.ct-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,
      rgba(217, 121, 65, .08),
      transparent 35%),

    radial-gradient(circle at bottom right,
      rgba(217, 121, 65, .06),
      transparent 40%);
  pointer-events: none;
}

/*═══════════════════════════════════════
    INFO CARD
═══════════════════════════════════════*/

.ct-info-card {

  position: relative;

  height: 100%;

  padding: 32px 28px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid rgba(217, 121, 65, .10);

  overflow: hidden;

  transition: .4s ease;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, .04);

}

.ct-info-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg,
      var(--primary),
      transparent);

  transform: scaleX(0);

  transform-origin: left;

  transition: .45s;

}

.ct-info-card:hover {

  transform: translateY(-8px);

  border-color: rgba(217, 121, 65, .22);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .08);

}

.ct-info-card:hover::before {

  transform: scaleX(1);

}

/*═══════════════════════════════════════
    Featured Card
═══════════════════════════════════════*/

.ct-info-card-gold {

  background: linear-gradient(135deg,
      #D97941,
      #BF6431);

  border: none;

  color: #fff;

}

.ct-info-card-gold:hover {

  transform: translateY(-8px);

  box-shadow:
    0 28px 65px rgba(217, 121, 65, .28);

}

.ct-info-card-gold::before {

  background: rgba(255, 255, 255, .45);

}

/*═══════════════════════════════════════
    Icon
═══════════════════════════════════════*/

.ct-ic-ico {

  width: 62px;
  height: 62px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  background: rgba(217, 121, 65, .08);

  border: 1px solid rgba(217, 121, 65, .12);

  transition: .35s;

}

.ct-info-card:hover .ct-ic-ico {

  background: var(--primary);

  transform: rotate(-8deg);

}

.ct-info-card:hover .ct-ic-ico i {

  color: #fff;

}

.ct-ic-ico i {

  font-size: 24px;

  color: var(--primary);

  transition: .35s;

}

/* Featured Icon */

.ct-info-card-gold .ct-ic-ico {

  background: rgba(255, 255, 255, .18);

  border-color: rgba(255, 255, 255, .20);

}

.ct-info-card-gold .ct-ic-ico i {

  color: #fff;

}

/*═══════════════════════════════════════
    Label
═══════════════════════════════════════*/

.ct-ic-lbl {

  display: block;

  margin-bottom: 10px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #9a9a9a;

}

.ct-info-card-gold .ct-ic-lbl {

  color: rgba(255, 255, 255, .75);

}

/*═══════════════════════════════════════
    Value
═══════════════════════════════════════*/

.ct-ic-val {

  font-size: 17px;

  line-height: 1.8;

  font-weight: 500;

  color: var(--dark);

}

.ct-info-card-gold .ct-ic-val {

  color: #fff;

}

/*═══════════════════════════════════════
    Link
═══════════════════════════════════════*/

.ct-ic-link {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 22px;

  color: var(--primary);

  font-weight: 600;

  text-decoration: none;

  transition: .35s;

}

.ct-ic-link i {

  transition: .35s;

}

.ct-ic-link:hover {

  gap: 12px;

  color: var(--primary-dark);

}

.ct-ic-link:hover i {

  transform: translateX(4px);

}

.ct-info-card-gold .ct-ic-link {

  color: #fff;

}

/*═══════════════════════════════════════
    Responsive
═══════════════════════════════════════*/

@media (max-width:991px) {

  .ct-info-card {

    padding: 28px 24px;

  }

}

@media (max-width:767px) {

  .ct-main {

    padding: 70px 0;

  }

  .ct-info-card {

    border-radius: 20px;

  }

  .ct-ic-ico {

    width: 56px;
    height: 56px;

  }

  .ct-ic-val {

    font-size: 16px;

  }

}






/* ── FORM UPGRADES ── */


.cform {
  position: relative;
  padding: 48px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(217, 121, 65, .10);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.cform::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      var(--primary),
      transparent);

}

/*====================================
Header
====================================*/

.cform-header {

  margin-bottom: 36px;

}

.cform-title {

  margin: 0 0 10px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 40px;

  font-weight: 600;

  line-height: 1.1;

  color: var(--dark);

}

.cform-sub {

  margin: 0;

  font-size: 16px;

  line-height: 1.8;

  color: var(--text-light);

  max-width: 460px;

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .cform {

    padding: 38px;

  }

  .cform-title {

    font-size: 34px;

  }

}

@media(max-width:767px) {

  .cform {

    padding: 30px;

    border-radius: 22px;

  }

  .cform-title {

    font-size: 30px;

  }

  .cform-sub {

    font-size: 15px;

  }

}

@media(max-width:575px) {

  .cform {

    padding: 24px;

    border-radius: 18px;

  }

  .cform-title {

    font-size: 26px;

  }

  .cform-sub {

    font-size: 14px;

    line-height: 1.7;

  }

}







/* Event type tab selector */
/*═══════════════════════════════════════
    EVENT TYPE TABS
═══════════════════════════════════════*/

.ct-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.ct-tab {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 20px;

  border-radius: 50px;

  border: 1px solid rgba(217, 121, 65, .12);

  background: #fff;

  color: var(--text-light);

  cursor: pointer;

  font-size: 13px;

  font-weight: 600;

  transition: .35s;

  font-family: 'Plus Jakarta Sans', sans-serif;

}

.ct-tab i {

  font-size: 14px;

  color: var(--primary);

  transition: .35s;

}

.ct-tab:hover {

  border-color: var(--primary);

  color: var(--primary);

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(217, 121, 65, .12);

}

.ct-tab.active {

  background: var(--primary);

  border-color: var(--primary);

  color: #fff;

  box-shadow:
    0 15px 35px rgba(217, 121, 65, .20);

}

.ct-tab.active i {

  color: #fff;

}

/*═══════════════════════════════════════
    FORM GROUP
═══════════════════════════════════════*/

.fg {

  margin-bottom: 24px;

}

.fg label {

  display: block;

  margin-bottom: 10px;

  font-size: 13px;

  font-weight: 600;

  color: var(--dark);

  letter-spacing: .3px;

}

.req {

  color: var(--primary);

}

/*═══════════════════════════════════════
    INPUTS
═══════════════════════════════════════*/

.fg input,
.fg select,
.fg textarea {

  width: 100%;

  padding: 14px 18px;

  border-radius: 14px;

  border: 1px solid var(--border);

  background: #fff;

  color: var(--dark);

  font-size: 15px;

  font-family: 'Plus Jakarta Sans', sans-serif;

  transition: .35s;

  outline: none;

}

.fg textarea {

  min-height: 140px;

  resize: vertical;

}

/*═══════════════════════════════════════
    PLACEHOLDER
═══════════════════════════════════════*/

.fg input::placeholder,
.fg textarea::placeholder {

  color: #9b9b9b;

}

.fg select {

  cursor: pointer;

}

.fg select option {

  color: var(--dark);

  background: #fff;

}

/*═══════════════════════════════════════
    FOCUS
═══════════════════════════════════════*/

.fg input:focus,
.fg select:focus,
.fg textarea:focus {

  border-color: var(--primary);

  box-shadow:
    0 0 0 5px rgba(217, 121, 65, .10);

}

/*═══════════════════════════════════════
    ERROR
═══════════════════════════════════════*/

.fg-err {

  display: none;

  margin-top: 8px;

  font-size: 12px;

  color: #dc3545;

}

.fg.error .fg-err {

  display: block;

}

.fg.error input,
.fg.error select,
.fg.error textarea {

  border-color: #dc3545;

}

/*═══════════════════════════════════════
    HOVER
═══════════════════════════════════════*/

.fg input:hover,
.fg select:hover,
.fg textarea:hover {

  border-color: rgba(217, 121, 65, .30);

}

/*═══════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════*/

@media(max-width:767px) {

  .ct-type-tabs {

    gap: 10px;

  }

  .ct-tab {

    font-size: 12px;

    padding: 9px 16px;

  }

  .fg {

    margin-bottom: 20px;

  }

}

/*═══════════════════════════════════════
    PHONE INPUT
═══════════════════════════════════════*/

.fg-phone {
  display: flex;
  align-items: stretch;
}

.fg-phone-code {

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0 18px;

  border: 1px solid var(--border);
  border-right: none;

  border-radius: 14px 0 0 14px;

  background: #FDFBF9;

  color: var(--dark);

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;

}

.fg-phone-code img {

  width: 20px;
  border-radius: 3px;

}

.fg-phone input {

  border-radius: 0 14px 14px 0;

  flex: 1;

}

/*====================================
Consent
====================================*/

.ct-consent {

  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-top: 8px;

}

.ct-check {

  width: 18px;
  height: 18px;

  accent-color: var(--primary);

  cursor: pointer;

  margin-top: 3px;

  flex-shrink: 0;

}

.ct-check-lbl {

  font-size: 14px;

  line-height: 1.8;

  color: var(--text-light);

}

.ct-check-lbl a {

  color: var(--primary);

  font-weight: 600;

  text-decoration: none;

}

.ct-check-lbl a:hover {

  color: var(--primary-dark);

}

/*====================================
Spinner
====================================*/

.ct-spinner {

  width: 16px;
  height: 16px;

  border-radius: 50%;

  border: 2px solid rgba(217, 121, 65, .25);

  border-top-color: var(--primary);

  animation: ctSpin .7s linear infinite;

}

@keyframes ctSpin {

  to {

    transform: rotate(360deg);

  }

}

/*═══════════════════════════════════════
    SIDEBAR CARD
═══════════════════════════════════════*/

.ct-sidebar-card {

  padding: 30px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid rgba(217, 121, 65, .10);

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .05);

  transition: .35s;

}

.ct-sidebar-card:hover {

  transform: translateY(-6px);

  border-color: rgba(217, 121, 65, .20);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .08);

}

/*====================================
Header
====================================*/

.ct-sb-head {

  display: flex;
  align-items: flex-start;
  gap: 18px;

}

/*====================================
Icon
====================================*/

.ct-sb-ico {

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(217, 121, 65, .08);

  border: 1px solid rgba(217, 121, 65, .12);

  transition: .35s;

  flex-shrink: 0;

}

.ct-sidebar-card:hover .ct-sb-ico {

  background: var(--primary);

}

.ct-sidebar-card:hover .ct-sb-ico i {

  color: #fff;

}

.ct-sb-ico i {

  font-size: 24px;

  color: var(--primary);

  transition: .35s;

}

/*====================================
Content
====================================*/

.ct-sb-title {

  margin: 0 0 6px;

  font-size: 20px;

  font-weight: 600;

  color: var(--dark);

}

.ct-sb-sub {

  margin: 0;

  font-size: 14px;

  line-height: 1.8;

  color: var(--text-light);

}

/*====================================
Responsive
====================================*/

@media(max-width:767px) {

  .ct-sidebar-card {

    padding: 24px;

    border-radius: 20px;

  }

  .ct-sb-title {

    font-size: 18px;

  }

  .ct-sb-ico {

    width: 52px;
    height: 52px;

  }

}















/* Office hours */
/*═══════════════════════════════════════
    OFFICE HOURS
═══════════════════════════════════════*/

.ct-hours-list {

  display: flex;
  flex-direction: column;

  margin: 24px 0;

  border-top: 1px solid rgba(217, 121, 65, .08);

}

.ct-hour-row {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 0;

  border-bottom: 1px solid rgba(217, 121, 65, .08);

}

.ct-hour-row:last-child {

  border-bottom: none;

}

.ct-day {

  font-size: 14px;

  font-weight: 500;

  color: var(--text-light);

}

.ct-time {

  font-size: 14px;

  font-weight: 600;

  color: var(--dark);

}

.ct-time-closed {

  color: #9a9a9a;

  font-style: italic;

  font-weight: 500;

}

/*═══════════════════════════════════════
    STATUS PILL
═══════════════════════════════════════*/

.ct-status-pill {

  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  padding: 10px 18px;

  border-radius: 50px;

  background: #fff;

  border: 1px solid rgba(217, 121, 65, .12);

  box-shadow:
    0 10px 30px rgba(15, 23, 42, .04);

  font-size: 13px;

  font-weight: 500;

  color: var(--dark);

}

/*====================================
Status Dot
====================================*/

.ct-status-dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #4CAF50;

  box-shadow:
    0 0 0 4px rgba(76, 175, 80, .15);

  animation: ctStatusPulse 2s infinite;

}

.ct-status-dot.closed {

  background: #b5b5b5;

  box-shadow: none;

  animation: none;

}

@keyframes ctStatusPulse {

  0% {

    transform: scale(1);

    opacity: 1;

  }

  70% {

    transform: scale(1.35);

    opacity: .5;

  }

  100% {

    transform: scale(1);

    opacity: 1;

  }

}

/*═══════════════════════════════════════
    Responsive
═══════════════════════════════════════*/

@media(max-width:767px) {

  .ct-hour-row {

    padding: 14px 0;

  }

  .ct-day,
  .ct-time {

    font-size: 13px;

  }

  .ct-status-pill {

    width: 100%;

    justify-content: center;

  }

}

/*═══════════════════════════════════════
    STUDIO LOCATIONS
═══════════════════════════════════════*/

.ct-studio {

  display: flex;
  flex-direction: column;

  padding: 18px 0;

  border-bottom: 1px solid rgba(217, 121, 65, .08);

  transition: .35s ease;

  cursor: default;

}

.ct-studio:last-child {

  border-bottom: none;

}

.ct-studio:hover {

  padding-left: 10px;

}

.ct-studio-city {

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;

  font-weight: 600;

  color: var(--dark);

}

.ct-studio-city i {

  color: var(--primary);

  font-size: 16px;

}

.ct-studio-addr {

  margin-top: 8px;

  margin-left: 26px;

  font-size: 14px;

  line-height: 1.7;

  color: var(--text-light);

}

.active-studio .ct-studio-city {

  color: var(--primary);

}

/* HQ Badge */

.ct-hq-badge {

  margin-left: 8px;

  padding: 4px 10px;

  border-radius: 30px;

  background: rgba(217, 121, 65, .10);

  color: var(--primary);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

}

/*═══════════════════════════════════════
    SOCIAL GRID
═══════════════════════════════════════*/

.ct-social-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

}

.ct-soc-btn {

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 6px;

  padding: 20px;

  border-radius: 18px;

  background: #fff;

  border: 1px solid rgba(217, 121, 65, .10);

  text-decoration: none;

  transition: .35s ease;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, .04);

}

.ct-soc-btn:hover {

  transform: translateY(-6px);

  border-color: rgba(217, 121, 65, .20);

  box-shadow:
    0 22px 55px rgba(15, 23, 42, .08);

}

/* Icon */

.ct-soc-btn i {

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(217, 121, 65, .08);

  color: var(--primary);

  font-size: 22px;

  transition: .35s;

}

.ct-soc-btn:hover i {

  background: var(--primary);

  color: #fff;

}

/* Text */

.ct-soc-btn span {

  font-size: 16px;

  font-weight: 600;

  color: var(--dark);

}

.ct-soc-btn small {

  font-size: 13px;

  line-height: 1.6;

  color: var(--text-light);

}

/*═══════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════*/

@media (max-width:767px) {

  .ct-social-grid {

    grid-template-columns: 1fr;

  }

  .ct-soc-btn {

    padding: 18px;

  }

  .ct-studio {

    padding: 16px 0;

  }

  .ct-studio-city {

    font-size: 15px;

  }

  .ct-studio-addr {

    font-size: 13px;

  }

}

























/* ── MAP SECTION ── */
/*═══════════════════════════════════════
    MAP SECTION
═══════════════════════════════════════*/

.ct-map-section {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 620px;
  background: #FCF8F5;
}

/*====================================
Left Panel
====================================*/

.ct-map-panel {

  width: 390px;
  flex-shrink: 0;

  position: relative;
  z-index: 2;

  background: #fff;

  border-right: 1px solid rgba(217, 121, 65, .10);

  box-shadow:
    15px 0 40px rgba(15, 23, 42, .05);

  display: flex;
  align-items: center;

}

.ct-mp-inner {

  width: 100%;

  padding: 55px 42px;

}

/*====================================
Heading
====================================*/

.ct-mp-title {

  margin: 0;

  font-family: 'Cormorant Garamond', serif;

  font-size: 42px;

  line-height: 1.15;

  font-weight: 600;

  color: var(--dark);

}

.ct-mp-title em {

  color: var(--primary);

  font-style: italic;

}

.ct-mp-divider {

  width: 55px;
  height: 3px;

  margin: 24px 0 34px;

  border-radius: 20px;

  background: var(--primary);

}

/*====================================
Info
====================================*/

.ct-mp-info {

  display: flex;
  flex-direction: column;

  gap: 26px;

  margin-bottom: 36px;

}

.ct-mp-row {

  display: flex;
  align-items: flex-start;

  gap: 16px;

}

.ct-mp-ico {

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(217, 121, 65, .08);

  border: 1px solid rgba(217, 121, 65, .12);

  flex-shrink: 0;

  transition: .35s;

}

.ct-mp-row:hover .ct-mp-ico {

  background: var(--primary);

}

.ct-mp-row:hover .ct-mp-ico i {

  color: #fff;

}

.ct-mp-ico i {

  font-size: 20px;

  color: var(--primary);

  transition: .35s;

}

.ct-mp-lbl {

  margin-bottom: 6px;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: #999;

}

.ct-mp-val {

  font-size: 15px;

  line-height: 1.8;

  color: var(--dark);

}

/*====================================
Buttons
====================================*/

.ct-mp-actions {

  display: flex;

  flex-direction: column;

  gap: 14px;

}

/*====================================
Map
====================================*/

.ct-map-frame {

  flex: 1;

  position: relative;

}

.ct-map-frame iframe {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;

  filter: none;

}

/*====================================
Location Card
====================================*/

.ct-map-pin-card {

  position: absolute;

  right: 40px;
  bottom: 40px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px 22px;

  background: #fff;

  border-radius: 18px;

  border: 1px solid rgba(217, 121, 65, .10);

  box-shadow:
    0 18px 50px rgba(15, 23, 42, .10);

}

.ct-mpc-dot {

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #4CAF50;

  box-shadow:
    0 0 0 5px rgba(76, 175, 80, .15);

  animation: ctPulse 2s infinite;

}

@keyframes ctPulse {

  0% {

    transform: scale(1);

  }

  70% {

    transform: scale(1.4);

    opacity: .5;

  }

  100% {

    transform: scale(1);

  }

}

.ct-mpc-body strong {

  display: block;

  margin-bottom: 3px;

  font-size: 15px;

  color: var(--dark);

}

.ct-mpc-body span {

  font-size: 13px;

  color: var(--text-light);

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .ct-map-section {

    flex-direction: column;

  }

  .ct-map-panel {

    width: 100%;

    box-shadow: none;

    border-right: none;

    border-bottom: 1px solid rgba(217, 121, 65, .08);

  }

  .ct-map-frame {

    height: 480px;

  }

}

@media(max-width:767px) {

  .ct-mp-inner {

    padding: 35px 24px;

  }

  .ct-mp-title {

    font-size: 34px;

  }

  .ct-map-pin-card {

    right: 20px;
    left: 20px;
    bottom: 20px;

  }

}

@media(max-width:575px) {

  .ct-map-frame {

    height: 360px;

  }

  .ct-mp-title {

    font-size: 30px;

  }

}

/* ── FAQ ── */
/*═══════════════════════════════════════
    FAQ SECTION
═══════════════════════════════════════*/

.ct-faq {
  position: relative;
  padding: 60px 0 ;
  background: #FCF8F5;
  overflow: hidden;
}

.ct-faq::before {

  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top left,
      rgba(217, 121, 65, .08),
      transparent 35%),

    radial-gradient(circle at bottom right,
      rgba(217, 121, 65, .06),
      transparent 40%);

  pointer-events: none;

}

/*═══════════════════════════════════════
    FAQ CARD
═══════════════════════════════════════*/

.ct-faq-card {

  position: relative;

  height: 100%;

  padding: 34px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid rgba(217, 121, 65, .10);

  overflow: hidden;

  transition: .35s ease;

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .05);

}

.ct-faq-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg,
      var(--primary),
      transparent);

  transform: scaleX(0);

  transform-origin: left;

  transition: .4s;

}

.ct-faq-card:hover {

  transform: translateY(-8px);

  border-color: rgba(217, 121, 65, .20);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .08);

}

.ct-faq-card:hover::before {

  transform: scaleX(1);

}

/*═══════════════════════════════════════
    QUESTION
═══════════════════════════════════════*/

.ct-faq-q {

  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 18px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 600;

  line-height: 1.25;

  color: var(--dark);

}

.ct-faq-q i {

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(217, 121, 65, .08);

  color: var(--primary);

  font-size: 18px;

  flex-shrink: 0;

  transition: .35s;

}

.ct-faq-card:hover .ct-faq-q i {

  background: var(--primary);

  color: #fff;

}

/*═══════════════════════════════════════
    ANSWER
═══════════════════════════════════════*/

.ct-faq-a {

  margin: 0;

  font-size: 15px;

  line-height: 1.9;

  color: var(--text-light);

}

/*═══════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════*/

@media(max-width:991px) {

  .ct-faq {

    padding: 90px 0;

  }

}

@media(max-width:767px) {

  .ct-faq-card {

    padding: 28px;

    border-radius: 20px;

  }

  .ct-faq-q {

    font-size: 24px;

  }

  .ct-faq-q i {

    width: 38px;
    height: 38px;

    font-size: 16px;

  }

}

@media(max-width:575px) {

  .ct-faq {

    padding: 70px 0;

  }

  .ct-faq-card {

    padding: 24px;

  }

  .ct-faq-q {

    font-size: 22px;

    gap: 12px;

  }

  .ct-faq-a {

    font-size: 14px;

  }

}
















/* project page css */

/* ── HERO ── */
/*==================================================
EVENT HERO
==================================================*/

/*=========================================================
                EVENT HERO
=========================================================*/

.ev-hero {

  position: relative;

  overflow: hidden;

  padding: 100px 0 80px;

  background:
    radial-gradient(circle at top right,
      rgba(217, 121, 65, .08),
      transparent 35%),

    radial-gradient(circle at bottom left,
      rgba(217, 121, 65, .06),
      transparent 30%),

    #FCF8F5;

}

/*=========================================================
DECORATION
=========================================================*/

.ev-hero .ev-shape {

  position: absolute;

  border-radius: 50%;

  background: #D97941;

  opacity: .05;

}

.ev-hero .shape-one {

  width: 380px;
  height: 380px;

  top: -180px;
  right: -140px;

}

.ev-hero .shape-two {

  width: 260px;
  height: 260px;

  left: -100px;
  bottom: -100px;

}

/*=========================================================
CONTENT
=========================================================*/

.ev-hero .ev-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 72px;

  font-weight: 600;

  line-height: 1.05;

  color: #2F2F2F;

  margin-bottom: 28px;

}

.ev-hero .ev-title span {

  display: block;

  color: #D97941;

}

.ev-hero .ev-text {

  max-width: 560px;

  font-size: 16px;

  line-height: 1.9;

  color: #666;

}

.ev-hero .ev-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 40px;

}

/*=========================================================
STATS
=========================================================*/

.ev-hero .ev-stats {

  display: flex;

  gap: 50px;

  margin-top: 60px;

}

.ev-hero .ev-stats h3 {

  margin-bottom: 6px;

  font-size: 38px;

  font-weight: 700;

  color: #D97941;

}

.ev-hero .ev-stats span {

  color: #666;

  font-size: 14px;

}

/*=========================================================
IMAGE
=========================================================*/

.ev-hero .ev-image {

  position: relative;

}

.ev-hero .ev-image img {

  width: 100%;

  height: 680px;

  object-fit: cover;

  border-radius: 36px;

  box-shadow:

    0 35px 80px rgba(0, 0, 0, .08);

}

/*=========================================================
FLOATING CARD
=========================================================*/

.ev-hero .ev-card {

  position: absolute;

  left: -40px;

  bottom: 40px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px 28px;

  border-radius: 24px;

  background: rgba(255, 255, 255, .94);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  box-shadow:

    0 20px 50px rgba(0, 0, 0, .08);


  height: 200px;

}

.ev-hero .ev-card i {

  width: 56px;

  height: 56px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background:

    linear-gradient(135deg,
      #D97941,
      #BF6431);

  color: #fff;

  font-size: 22px;

}

.ev-hero .ev-card strong {

  display: block;

  font-size: 26px;

  color: #2F2F2F;

  margin-bottom: 3px;

}

.ev-hero .ev-card span {

  display: block;

  color: #666;

  font-size: 14px;

  line-height: 1.5;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

  .ev-hero {

    padding: 130px 0 80px;

  }

  .ev-hero .ev-title {

    font-size: 54px;

  }

  .ev-hero .ev-image {

    margin-top: 60px;

  }

  .ev-hero .ev-image img {

    height: 500px;

  }

  .ev-hero .ev-card {

    left: 20px;

    bottom: 20px;

  }

}

@media(max-width:576px) {

  .ev-hero {

        padding: 85px 0 70px;

  }

  .ev-hero .ev-title {

    font-size: 42px;

  }

  .ev-hero .ev-buttons {

    flex-direction: column;

  }

  .ev-hero .ev-buttons .btn {

    width: 100%;

    justify-content: center;

  }

  .ev-hero .ev-stats {

    justify-content: space-between;

    gap: 15px;

  }

  .ev-hero .ev-stats h3 {

    font-size: 28px;

  }

  .ev-hero .ev-image img {

    height: 360px;

    border-radius: 24px;

  }

  .ev-hero .ev-card {

    position: relative;

    left: 0;

    bottom: auto;

    margin-top: -40px;

    margin-inline: 20px;

  }

}







/* ── FILTER ROW ── */
.evp-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.evp-filter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  transition: var(--transition-lux);
  cursor: pointer;
}

.evp-filter.active,
.evp-filter:hover {
  background: rgba(229, 169, 98, 0.15);
  border-color: var(--accent-gold);
  color: #ffffff;
}

/* ── UPCOMING SECTION ── */
/*==================================================
  UPCOMING EVENTS
==================================================*/
/*==================================================
  UPCOMING EVENTS - SECTION
==================================================*/

.evp-upcoming {
  position: relative;
  padding: 120px 0;
  background: #FCF8F5;
  overflow: hidden;
}

.evp-upcoming::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(217, 121, 65, .12),
      transparent 70%);
  pointer-events: none;
}

.evp-upcoming::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(217, 121, 65, .08),
      transparent 70%);
  pointer-events: none;
}

.evp-upcoming .container {
  position: relative;
  z-index: 2;
}


/*==================================================
  SECTION HEADER
==================================================*/

.evp-upcoming .chip {
  background: #F7E8DE;
  color: #D97941;
  border: 1px solid rgba(217, 121, 65, .15);
}

.evp-upcoming .heading {
  color: #2F2F2F;
}

.evp-upcoming .heading em {
  color: #D97941;
  font-style: normal;
}

.evp-upcoming p {
  color: #777777 !important;
}


/*==================================================
  FILTER ROW
==================================================*/

.evp-upcoming .evp-filter-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.evp-upcoming .evp-filter {

  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;

  padding: 11px 22px;

  border-radius: 50px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #777777;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: .5px;
  text-transform: uppercase;

  transition: all .35s ease;
}

.evp-upcoming .evp-filter:hover {

  color: #D97941;

  border-color: #D97941;

  background: #FFF9F5;

  transform: translateY(-2px);
}

.evp-upcoming .evp-filter.active {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;

  box-shadow:
    0 10px 24px rgba(217, 121, 65, .18);
}


/*==================================================
  GRID
==================================================*/

.evp-upcoming .ev-item {
  transition:
    opacity .35s ease,
    transform .45s ease;
}

.evp-upcoming .ev-item.hidden {
  display: none !important;
}


/*==================================================
  CARD
==================================================*/

.evp-upcoming .evp-card {

  position: relative;

  display: flex;
  flex-direction: column;

  height: 100%;

  overflow: hidden;

  border-radius: 24px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .05);

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}

.evp-upcoming .evp-card:hover {

  transform: translateY(-8px);

  border-color: #D97941;

  box-shadow:
    0 22px 55px rgba(0, 0, 0, .10);
}


/*==================================================
  FEATURED CARD
==================================================*/

.evp-upcoming .evp-card--featured {
  min-height: 100%;
}

.evp-upcoming .evp-card--featured .evp-card-img-wrap {
  height: 430px;
}


/*==================================================
  HORIZONTAL CARD
==================================================*/

.evp-upcoming .evp-card--horizontal {

  display: flex;

  flex-direction: row;

  align-items: stretch;
}

.evp-upcoming .evp-card-img-wrap--sm {

  width: 185px;

  min-width: 185px;

  height: auto !important;
}

.evp-upcoming .evp-card-img-wrap--med {
  height: 230px;
}



/*==================================================
  IMAGE WRAPPER
==================================================*/

.evp-upcoming .evp-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 270px;
  background: #F7E8DE;
}

.evp-upcoming .evp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.evp-upcoming .evp-card:hover .evp-card-img {
  transform: scale(1.08);
}

/* Soft Luxury Overlay */

.evp-upcoming .evp-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(47, 47, 47, .55) 0%,
      rgba(47, 47, 47, .18) 45%,
      transparent 100%);
  transition: opacity .35s ease;
}

.evp-upcoming .evp-card:hover .evp-card-img-overlay {
  opacity: .9;
}

/* Shine Effect */

.evp-upcoming .evp-card-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);

  transform: skewX(-22deg);

  transition: left .9s ease;
}

.evp-upcoming .evp-card:hover .evp-card-img-wrap::after {
  left: 150%;
}


/*==================================================
  CATEGORY BADGE
==================================================*/

.evp-upcoming .evp-cat-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;

  display: inline-flex;
  align-items: center;

  padding: 7px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .96);

  border: 1px solid #E8DDD6;

  color: #D97941;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .7px;
  text-transform: uppercase;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .08);
}


/*==================================================
  HOT BADGE
==================================================*/

.evp-upcoming .evp-hot-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;

  border-radius: 50px;

  background: #D97941;

  color: #FFFFFF;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: .4px;

  box-shadow:
    0 10px 24px rgba(217, 121, 65, .25);
}

.evp-upcoming .evp-hot-badge i {
  color: #FFFFFF;
  font-size: 11px;
}


/*==================================================
  DATE PILL
==================================================*/

.evp-upcoming .evp-date-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;

  min-width: 74px;

  padding: 10px 12px;

  text-align: center;

  border-radius: 16px;

  background: rgba(255, 255, 255, .95);

  border: 1px solid #E8DDD6;

  backdrop-filter: blur(12px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .08);
}

.evp-upcoming .evp-date-pill--sm {
  min-width: 64px;
  padding: 8px 10px;
}

.evp-upcoming .evp-date-d {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #2F2F2F;
}

.evp-upcoming .evp-date-pill--sm .evp-date-d {
  font-size: 22px;
}

.evp-upcoming .evp-date-m {
  margin-top: 3px;

  color: #D97941;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.evp-upcoming .evp-date-y {
  margin-top: 3px;

  color: #777777;

  font-size: 9px;

  letter-spacing: .8px;
}


/*==================================================
  IMAGE BORDER RADIUS FIX
==================================================*/

.evp-upcoming .evp-card--horizontal .evp-card-img-wrap {
  border-radius: 24px 0 0 24px;
}

.evp-upcoming .evp-card--featured .evp-card-img-wrap,
.evp-upcoming .evp-card:not(.evp-card--horizontal) .evp-card-img-wrap {
  border-radius: 24px 24px 0 0;
}



















/*==================================================
  CARD BODY
==================================================*/

.evp-upcoming .evp-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}

.evp-upcoming .evp-card-body--sm {
  padding: 22px;
}


/*==================================================
  LOCATION
==================================================*/

.evp-upcoming .evp-card-loc {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 14px;

  color: #777777;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: .3px;
}

.evp-upcoming .evp-card-loc i {
  color: #D97941;
  font-size: 13px;
}


/*==================================================
  TITLE
==================================================*/

.evp-upcoming .evp-card-title {

  margin: 0 0 14px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;

  color: #2F2F2F;

  transition: all .35s ease;
}

.evp-upcoming .evp-card:hover .evp-card-title {
  color: #D97941;
}

.evp-upcoming .evp-card-title--sm {
  font-size: 23px !important;
  margin-bottom: 10px;
}


/*==================================================
  DESCRIPTION
==================================================*/

.evp-upcoming .evp-card-desc {

  flex-grow: 1;

  margin-bottom: 24px;

  color: #666666;

  font-size: 14px;

  line-height: 1.9;
}


/*==================================================
  TAGS
==================================================*/

.evp-upcoming .evp-card-tags {

  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 24px;
}

.evp-upcoming .stag {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;

  background: #FFF9F5;

  border: 1px solid #F1DDD0;

  border-radius: 50px;

  color: #D97941;

  font-size: 11px;
  font-weight: 600;

  transition: all .35s ease;
}

.evp-upcoming .stag:hover {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;
}


/*==================================================
  FOOTER
==================================================*/

.evp-upcoming .evp-card-foot {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: auto;

  padding-top: 22px;

  border-top: 1px solid #E8DDD6;
}


/*==================================================
  PRICE
==================================================*/

.evp-upcoming .evp-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;
  font-weight: 700;

  line-height: 1;

  color: #D97941;
}

.evp-upcoming .evp-price-lbl {

  margin-top: 5px;

  font-size: 10px;

  color: #999999;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/*==================================================
  DETAILS BUTTON
==================================================*/

.evp-upcoming .evp-link-btn {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  color: #D97941;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .5px;

  transition: all .35s ease;
}

.evp-upcoming .evp-link-btn i {
  transition: transform .35s ease;
}

.evp-upcoming .evp-link-btn:hover {

  color: #BF6431;
}

.evp-upcoming .evp-link-btn:hover i {

  transform: translateX(5px);
}


/*==================================================
  PRIMARY BUTTON
==================================================*/

.evp-upcoming .btn-lux-primary {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 24px;

  background: #D97941;

  border: 1px solid #D97941;

  border-radius: 50px;

  color: #FFFFFF;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .6px;

  transition: all .35s ease;
}

.evp-upcoming .btn-lux-primary:hover {

  background: #BF6431;

  border-color: #BF6431;

  color: #FFFFFF;

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(217, 121, 65, .20);
}

.evp-upcoming .btn-lux-primary i {

  transition: transform .35s ease;
}

.evp-upcoming .btn-lux-primary:hover i {

  transform: translateX(5px);
}


/*==================================================
  FEATURED CARD
==================================================*/

.evp-upcoming .evp-card--featured .evp-card-title {

  font-size: 40px;
}

.evp-upcoming .evp-card--featured .evp-card-desc {

  font-size: 15px;

  line-height: 2;
}

.evp-upcoming .evp-card--featured .evp-price {

  font-size: 40px;
}


/*==================================================
  HORIZONTAL CARD
==================================================*/

.evp-upcoming .evp-card--horizontal .evp-card-body {

  justify-content: center;
}

.evp-upcoming .evp-card--horizontal .evp-card-tags {

  margin-bottom: 18px;
}

.evp-upcoming .evp-card--horizontal .evp-card-foot {

  padding-top: 18px;
}


/*==================================================
  HOVER BORDER ACCENT
==================================================*/

.evp-upcoming .evp-card::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;

  background: #D97941;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform .35s ease;
}

.evp-upcoming .evp-card:hover::after {

  transform: scaleX(1);
}












/*==================================================
  NO RESULTS
==================================================*/

.evp-upcoming #noResults {
  padding: 90px 20px;
  text-align: center;
}

.evp-upcoming #noResults div {
  font-size: 54px;
  margin-bottom: 18px;
  opacity: .9;
}

.evp-upcoming #noResults p {
  max-width: 550px;
  margin: auto;

  color: #777777;

  font-size: 15px;

  line-height: 1.9;
}

.evp-upcoming #noResults a {
  color: #D97941;
  font-weight: 600;
  text-decoration: none;
}

.evp-upcoming #noResults a:hover {
  color: #BF6431;
}


/*==================================================
  CARD HOVER EFFECT
==================================================*/

.evp-upcoming .evp-card::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background: linear-gradient(180deg,
      rgba(217, 121, 65, .04),
      transparent 45%);

  opacity: 0;

  pointer-events: none;

  transition: opacity .35s ease;

  z-index: 1;
}

.evp-upcoming .evp-card:hover::before {
  opacity: 1;
}

.evp-upcoming .evp-card>* {
  position: relative;
  z-index: 2;
}


/*==================================================
  IMAGE SHINE
==================================================*/

.evp-upcoming .evp-card-img-wrap::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform: skewX(-22deg);

  transition: left .9s ease;

  z-index: 2;
}

.evp-upcoming .evp-card:hover .evp-card-img-wrap::before {
  left: 160%;
}


/*==================================================
  BUTTON ACTIVE
==================================================*/

.evp-upcoming .btn-lux-primary:active,
.evp-upcoming .evp-link-btn:active {

  transform: scale(.97);
}


/*==================================================
  FILTER FOCUS
==================================================*/

.evp-upcoming .evp-filter:focus-visible,
.evp-upcoming .btn-lux-primary:focus-visible,
.evp-upcoming .evp-link-btn:focus-visible {

  outline: none;

  box-shadow:
    0 0 0 4px rgba(217, 121, 65, .15);
}


/*==================================================
  TABLET
==================================================*/

@media (max-width:1199px) {

  .evp-upcoming {
    padding: 100px 0;
  }

  .evp-upcoming .evp-card--featured .evp-card-img-wrap {
    height: 360px;
  }

  .evp-upcoming .evp-card-title {
    font-size: 28px;
  }

  .evp-upcoming .evp-card--featured .evp-card-title {
    font-size: 34px;
  }

}


/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

  .evp-upcoming .evp-filter-row {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .evp-upcoming .evp-card--horizontal {
    flex-direction: column;
  }

  .evp-upcoming .evp-card-img-wrap--sm {

    width: 100%;
    min-width: 100%;
    height: 240px !important;
  }

  .evp-upcoming .evp-card--horizontal .evp-card-img-wrap {
    border-radius: 24px 24px 0 0;
  }

  .evp-upcoming .evp-card--featured .evp-card-img-wrap {
    height: 320px;
  }

  .evp-upcoming .evp-card-body {
    padding: 24px;
  }

  .evp-upcoming .evp-card-title {
    font-size: 26px;
  }

  .evp-upcoming .evp-card--featured .evp-card-title {
    font-size: 30px;
  }

}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  .evp-upcoming {
    padding: 80px 0;
  }

  .evp-upcoming .evp-filter-row {
    gap: 10px;
  }

  .evp-upcoming .evp-filter {
    padding: 10px 16px;
    font-size: 11px;
  }

  .evp-upcoming .evp-card {
    border-radius: 20px;
  }

  .evp-upcoming .evp-card-img-wrap,
  .evp-upcoming .evp-card--featured .evp-card-img-wrap {
    height: 240px;
  }

  .evp-upcoming .evp-card-body {
    padding: 20px;
  }

  .evp-upcoming .evp-card-title {
    font-size: 24px;
  }

  .evp-upcoming .evp-card--featured .evp-card-title {
    font-size: 28px;
  }

  .evp-upcoming .evp-card-desc {
    font-size: 13px;
    line-height: 1.8;
  }

  .evp-upcoming .evp-card-foot {

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
  }

  .evp-upcoming .btn-lux-primary {

    width: 100%;
    justify-content: center;
  }

  .evp-upcoming .evp-price {
    font-size: 30px;
  }

}


/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:575px) {

  .evp-upcoming .evp-card-title {
    font-size: 22px;
  }

  .evp-upcoming .evp-card--featured .evp-card-title {
    font-size: 25px;
  }

  .evp-upcoming .evp-date-pill {

    min-width: 60px;

    padding: 8px;
  }

  .evp-upcoming .evp-date-d {
    font-size: 22px;
  }

  .evp-upcoming .evp-hot-badge {

    left: 14px;
    bottom: 14px;

    font-size: 9px;

    padding: 6px 12px;
  }

  .evp-upcoming .evp-cat-badge {

    top: 14px;
    left: 14px;
  }

}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .evp-upcoming *,
  .evp-upcoming *::before,
  .evp-upcoming *::after {

    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

}












/* ── PORTFOLIO SECTION ── */
/*==================================================
  PORTFOLIO SECTION
==================================================*/

.evp-portfolio {
  position: relative;
  padding: 120px 0;
  background: #FCF8F5;
  overflow: hidden;
}

.evp-portfolio::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(217, 121, 65, .10),
      transparent 70%);
  pointer-events: none;
}

.evp-portfolio::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(217, 121, 65, .07),
      transparent 70%);
  pointer-events: none;
}

.evp-portfolio .container {
  position: relative;
  z-index: 2;
}


/*==================================================
  GRID
==================================================*/

.evp-portfolio .evp-portfolio-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 260px;

  gap: 22px;
}

.evp-portfolio .evp-pf-item {

  position: relative;

  overflow: hidden;

  border-radius: 24px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  cursor: pointer;

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .05);
}

.evp-portfolio .evp-pf-item:hover {

  transform: translateY(-8px);

  border-color: #D97941;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .10);
}


/*==================================================
  GRID VARIANTS
==================================================*/

.evp-portfolio .evp-pf-item--tall {

  grid-row: span 2;
}

.evp-portfolio .evp-pf-item--wide {

  grid-column: span 2;
}


/*==================================================
  IMAGE
==================================================*/

.evp-portfolio .evp-pf-item img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s cubic-bezier(.16, 1, .3, 1);
}

.evp-portfolio .evp-pf-item:hover img {

  transform: scale(1.08);
}


/*==================================================
  IMAGE OVERLAY
==================================================*/

.evp-portfolio .evp-pf-overlay {

  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 28px;

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .72),
      rgba(47, 47, 47, .20) 45%,
      transparent 100%);

  transition: all .4s ease;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-overlay {

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .82),
      rgba(47, 47, 47, .35) 55%,
      transparent 100%);
}


/*==================================================
  SHINE EFFECT
==================================================*/

.evp-portfolio .evp-pf-item::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .40),
      transparent);

  transform: skewX(-22deg);

  transition: left .9s ease;

  z-index: 3;
}

.evp-portfolio .evp-pf-item:hover::before {

  left: 160%;
}


/*==================================================
  BODY
==================================================*/

.evp-portfolio .evp-pf-body {

  position: relative;

  width: 100%;

  z-index: 5;
}

/*==================================================
  PORTFOLIO CONTENT
==================================================*/

.evp-portfolio .evp-pf-tag {

  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 14px;

  padding: 7px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .92);

  border: 1px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .8px;
  text-transform: uppercase;

  backdrop-filter: blur(12px);

  transition: all .35s ease;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-tag {

  background: #FFFFFF;

  transform: translateY(-2px);
}


/*==================================================
  TITLE
==================================================*/

.evp-portfolio .evp-pf-title {

  margin: 0 0 10px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;
  font-weight: 600;

  line-height: 1.25;

  color: #FFFFFF;

  transition: color .35s ease;
}

.evp-portfolio .evp-pf-item--tall .evp-pf-title {

  font-size: 34px;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-title {

  color: #FFE9DB;
}


/*==================================================
  DETAILS
==================================================*/

.evp-portfolio .evp-pf-detail {

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 14px;

  color: rgba(255, 255, 255, .82);

  font-size: 12px;

  font-weight: 500;

  letter-spacing: .2px;
}

.evp-portfolio .evp-pf-detail i {

  color: #FFD2BA;

  font-size: 12px;
}


/*==================================================
  DESCRIPTION
==================================================*/

.evp-portfolio .evp-pf-desc {

  max-height: 0;

  overflow: hidden;

  margin: 0;

  color: rgba(255, 255, 255, .88);

  font-size: 13px;

  line-height: 1.8;

  transition:
    max-height .45s ease,
    margin-top .35s ease;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-desc {

  max-height: 140px;

  margin-top: 6px;
}


/*==================================================
  STATS
==================================================*/

.evp-portfolio .evp-pf-stats {

  display: flex;

  gap: 28px;

  margin-top: 18px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, .20);

  overflow: hidden;

  max-height: 0;

  transition: max-height .45s ease;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-stats {

  max-height: 90px;
}


/*==================================================
  STAT ITEM
==================================================*/

.evp-portfolio .evp-pf-stat {

  display: flex;
  flex-direction: column;
}


/*==================================================
  STAT NUMBER
==================================================*/

.evp-portfolio .evp-pf-stat-n {

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

  font-weight: 700;

  line-height: 1;

  color: #FFD8C2;
}


/*==================================================
  STAT LABEL
==================================================*/

.evp-portfolio .evp-pf-stat-l {

  margin-top: 4px;

  color: rgba(255, 255, 255, .72);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}


/*==================================================
  CARD CONTENT ANIMATION
==================================================*/

.evp-portfolio .evp-pf-body>* {

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.evp-portfolio .evp-pf-item:hover .evp-pf-body>* {

  transform: translateY(-2px);
}


/*==================================================
  PREMIUM BORDER
==================================================*/

.evp-portfolio .evp-pf-item::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 24px;

  border: 1px solid transparent;

  transition: border-color .35s ease;

  pointer-events: none;
}

.evp-portfolio .evp-pf-item:hover::after {

  border-color: rgba(217, 121, 65, .30);
}

/*==================================================
  STATS BAR
==================================================*/

.evp-portfolio .evp-statsbar {
  position: relative;
  margin-top: 90px;
  padding: 30px 0;

  background: #FFFFFF;

  border-top: 1px solid #E8DDD6;
  border-bottom: 1px solid #E8DDD6;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .04);
}


/*==================================================
  QUOTE SECTION
==================================================*/

.evp-portfolio .evp-quote {

  position: relative;

  padding: 120px 0;

  background: #FFFFFF;

  text-align: center;
}

.evp-portfolio .evp-quote::before {

  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 120px;
  height: 3px;

  transform: translateX(-50%);

  background: #D97941;
}

.evp-portfolio .evp-quote-icon {

  display: block;

  margin-bottom: 25px;

  font-size: 64px;

  color: #F2D5C4;

  line-height: 1;
}

.evp-portfolio .evp-quote-text {

  max-width: 760px;

  margin: auto;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(24px, 2.5vw, 38px);

  font-style: italic;

  font-weight: 400;

  line-height: 1.7;

  color: #2F2F2F;
}


/*==================================================
  HOVER ENHANCEMENT
==================================================*/

.evp-portfolio .evp-pf-item {

  isolation: isolate;
}

.evp-portfolio .evp-pf-item:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .10);
}

.evp-portfolio .evp-pf-item:hover img {

  transform: scale(1.08);
}


/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

  .evp-portfolio {
    padding: 90px 0;
  }

  .evp-portfolio .evp-portfolio-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .evp-portfolio .evp-pf-item--tall {

    grid-row: span 1;

    min-height: 320px;
  }

  .evp-portfolio .evp-pf-item--wide {

    grid-column: span 2;
  }

  .evp-portfolio .evp-pf-title {

    font-size: 24px;
  }

  .evp-portfolio .evp-pf-item--tall .evp-pf-title {

    font-size: 28px;
  }

  .evp-portfolio .evp-pf-overlay {

    padding: 24px;
  }

}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  .evp-portfolio {
    padding: 80px 0;
  }

  .evp-portfolio .evp-portfolio-grid {

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .evp-portfolio .evp-pf-item,
  .evp-portfolio .evp-pf-item--wide,
  .evp-portfolio .evp-pf-item--tall {

    grid-column: span 1;
    grid-row: span 1;

    min-height: 280px;
  }

  .evp-portfolio .evp-pf-overlay {

    padding: 20px;
  }

  .evp-portfolio .evp-pf-title {

    font-size: 22px;
  }

  .evp-portfolio .evp-pf-item--tall .evp-pf-title {

    font-size: 24px;
  }

  .evp-portfolio .evp-pf-detail {

    font-size: 11px;
  }

  .evp-portfolio .evp-pf-desc {

    max-height: 90px;

    margin-top: 8px;
  }

  .evp-portfolio .evp-pf-stats {

    max-height: 70px;

    gap: 18px;
  }

  .evp-portfolio .evp-pf-stat-n {

    font-size: 24px;
  }

  .evp-portfolio .evp-quote {

    padding: 90px 20px;
  }

  .evp-portfolio .evp-quote-text {

    font-size: 26px;
  }

}


/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:575px) {

  .evp-portfolio .evp-pf-item {

    min-height: 240px;
  }

  .evp-portfolio .evp-pf-overlay {

    padding: 18px;
  }

  .evp-portfolio .evp-pf-tag {

    font-size: 9px;

    padding: 6px 12px;
  }

  .evp-portfolio .evp-pf-title {

    font-size: 20px;
  }

  .evp-portfolio .evp-pf-item--tall .evp-pf-title {

    font-size: 22px;
  }

  .evp-portfolio .evp-pf-stat-n {

    font-size: 20px;
  }

  .evp-portfolio .evp-quote-icon {

    font-size: 50px;
  }

  .evp-portfolio .evp-quote-text {

    font-size: 22px;
  }

}


/*==================================================
  ACCESSIBILITY
==================================================*/

.evp-portfolio .evp-pf-item:focus-visible {

  outline: none;

  box-shadow:
    0 0 0 4px rgba(217, 121, 65, .18),
    0 18px 45px rgba(0, 0, 0, .08);
}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .evp-portfolio *,
  .evp-portfolio *::before,
  .evp-portfolio *::after {

    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

}

/*==================================================
  MOBILE HORIZONTAL SCROLL
==================================================*/

@media (max-width:767px) {

  .evp-portfolio .evp-portfolio-grid {

    display: flex;
    overflow-x: auto;
    overflow-y: hidden;

    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .evp-portfolio .evp-portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .evp-portfolio .evp-pf-item,
  .evp-portfolio .evp-pf-item--wide,
  .evp-portfolio .evp-pf-item--tall {

    flex: 0 0 85%;

    width: 85%;

    min-width: 85%;

    min-height: 320px;

    grid-column: auto;
    grid-row: auto;

    scroll-snap-align: start;
  }

  .evp-portfolio .evp-pf-overlay {
    padding: 22px;
  }

  .evp-portfolio .evp-pf-title {
    font-size: 24px;
  }

  .evp-portfolio .evp-pf-item--tall .evp-pf-title {
    font-size: 26px;
  }

  .evp-portfolio .evp-pf-desc {
    max-height: 100px;
    margin-top: 8px;
  }

  .evp-portfolio .evp-pf-stats {
    max-height: 70px;
  }

}































/* service page css */


/* ── HERO ── */
.svc-hero {

  position: relative;
  padding: 85px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, #F7E8DE 0%, transparent 35%),
    radial-gradient(circle at bottom left, #FFF5EF 0%, transparent 35%),
    #FCF8F5;

}

.hero-shape {

  position: absolute;
  border-radius: 50%;
  background: #D97941;
  opacity: .06;

}

.hero-shape-1 {

  width: 320px;
  height: 320px;
  top: -150px;
  right: -120px;

}

.hero-shape-2 {

  width: 240px;
  height: 240px;
  bottom: -100px;
  left: -80px;

}

.hero-title {

  font-size: 58px;
  font-weight: 700;
  color: #2F2F2F;
  line-height: 1.15;

}

.hero-title span {

  display: block;
  color: #D97941;

}

.hero-text {

  font-size: 17px;
  line-height: 1.9;
  color: #666;
  max-width: 560px;

}

.hero-image {

  position: relative;

}

.hero-image img {

  width: 100%;
  border-radius: 30px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .08);

}

.floating-card {

  position: absolute;
  bottom: 30px;
  left: -40px;

  display: flex;
  align-items: center;
  gap: 16px;

  background: #fff;
  padding: 20px 24px;

  border-radius: 20px;
  border: 1px solid #E8DDD6;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.floating-card i {

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #D97941;

  color: #fff;

  font-size: 24px;

}

.floating-card strong {

  display: block;
  color: #2F2F2F;
  font-size: 24px;

}

.floating-card span {

  color: #666;
  font-size: 14px;

}

.btn-primary {

  background: #D97941;
  border: none;
  border-radius: 50px;

}

.btn-primary:hover {

  background: #BF6431;

}

.btn-outline-dark {

  border-radius: 50px;

}

@media(max-width:991px) {

  .hero-title {

    font-size: 42px;

  }

  .hero-image {

    margin-top: 20px;

  }

  .floating-card {

    left: 20px;
    bottom: 20px;

  }

}

@media(max-width:576px) {

  .hero-title {

    font-size: 34px;

  }

  .hero-text {

    font-size: 15px;

  }

  .floating-card {

    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;

  }

}













/* ==========================================================================
   Luxury Services Section Layout & Background
   ========================================================================== */

/*=====================================================
        ASHIYAA EVENTS
        LUXURY SERVICES SECTION
        PART 1
======================================================*/

.svc-luxury {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, #F7E8DE 0%, transparent 35%),
    radial-gradient(circle at bottom left, #FFF4EC 0%, transparent 35%),
    #FCF8F5;
}

/* Decorative Shapes */

.svc-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 340px;
  height: 340px;
  top: -170px;
  right: -130px;
  background: #D97941;
  opacity: .05;
}

.shape-2 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -80px;
  background: #D97941;
  opacity: .05;
}

/* Container */

.svc-luxury .container {
  position: relative;
  z-index: 2;
}

/*=====================================================
SECTION HEADING
======================================================*/

.svc-luxury .heading {

  font-size: 56px;

  font-weight: 700;

  line-height: 1.15;

  color: #2F2F2F;

  margin-bottom: 18px;

}

.svc-luxury .heading span {

  display: block;

  color: #D97941;

}

.svc-luxury .section-text {

  max-width: 650px;

  margin: auto;

  color: #666;

  font-size: 16px;

  line-height: 1.9;

}

/*=====================================================
FEATURED EVENT
======================================================*/

.featured-event {

  background: #fff;

  border-radius: 34px;

  overflow: hidden;

  border: 1px solid #E8DDD6;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .05);

  transition: .45s;

}

.featured-event:hover {

  transform: translateY(-8px);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .08);

}

/*=====================================================
IMAGE
======================================================*/

.featured-image {

  position: relative;

  height: 620px;

  overflow: hidden;

}

.featured-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .8s ease;

}

.featured-event:hover .featured-image img {

  transform: scale(1.08);

}

.image-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,
      transparent 30%,
      rgba(0, 0, 0, .15) 100%);

}

/*=====================================================
FLOATING BADGE
======================================================*/

.floating-tag {

  position: absolute;

  left: 30px;

  top: 30px;

  background: rgba(255, 255, 255, .95);

  backdrop-filter: blur(18px);

  border-radius: 40px;

  padding: 14px 22px;

  display: flex;

  align-items: center;

  gap: 12px;

  color: #2F2F2F;

  font-weight: 600;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);

}

.floating-tag i {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      #D97941,
      #BF6431);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 18px;

}

/*=====================================================
CONTENT
======================================================*/

.featured-content {

  padding: 60px 55px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  height: 100%;

}

.event-number {

  color: #D97941;

  font-size: 14px;

  letter-spacing: 3px;

  font-weight: 700;

  margin-bottom: 18px;

}

.featured-content h3 {

  font-size: 42px;

  color: #2F2F2F;

  font-weight: 700;

  margin-bottom: 20px;

  line-height: 1.2;

}

.featured-content p {

  color: #666;

  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 28px;

}

/*=====================================================
TAGS
======================================================*/

.event-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 35px;

}

.event-tags span {

  padding: 9px 18px;

  background: #F7E8DE;

  border-radius: 50px;

  color: #D97941;

  font-size: 13px;

  font-weight: 600;

}

/*=====================================================
BUTTONS
======================================================*/

.featured-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 15px;

}

.featured-buttons .btn {

  border-radius: 50px;

  padding: 14px 28px;

  font-weight: 600;

}

.featured-buttons .btn-primary {

  background: #D97941;

  border: none;

}

.featured-buttons .btn-primary:hover {

  background: #BF6431;

}

.featured-buttons .btn-outline-dark {

  border: 1px solid #D7C9C0;

  color: #2F2F2F;

}

.featured-buttons .btn-outline-dark:hover {

  background: #2F2F2F;

  color: #fff;

}


/*=====================================================
        BENTO GRID
======================================================*/

.event-bento {

  margin-top: 70px;

}

/*=====================================================
CARD
======================================================*/

.bento-card {

  background: #fff;

  border: 1px solid #E8DDD6;

  border-radius: 30px;

  overflow: hidden;

  transition: .45s ease;

  position: relative;

  height: 100%;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .05);

}

.bento-card:hover {

  transform: translateY(-10px);

  border-color: #D97941;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .08);

}

/*=====================================================
IMAGE
======================================================*/

.bento-image {

  position: relative;

  height: 260px;

  overflow: hidden;

}

.bento-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .8s ease;

}

.bento-card:hover .bento-image img {

  transform: scale(1.08);

}

/*=====================================================
OVERLAY
======================================================*/

.bento-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,

      rgba(0, 0, 0, 0),

      rgba(0, 0, 0, .12));

}

/*=====================================================
FLOATING ICON
======================================================*/

.bento-icon {

  position: absolute;

  left: 24px;

  bottom: 24px;

  width: 60px;

  height: 60px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, .95);

  backdrop-filter: blur(18px);

  box-shadow:

    0 15px 30px rgba(0, 0, 0, .10);

}

.bento-icon i {

  font-size: 24px;

  color: #D97941;

}

/*=====================================================
BODY
======================================================*/

.bento-content {

  padding: 30px;

}

.bento-number {

  display: inline-block;

  margin-bottom: 12px;

  color: #D97941;

  font-size: 13px;

  letter-spacing: 3px;

  font-weight: 700;

}

.bento-content h4 {

  font-size: 26px;

  font-weight: 700;

  color: #2F2F2F;

  margin-bottom: 14px;

  line-height: 1.3;

}

.bento-content p {

  color: #666;

  font-size: 14px;

  line-height: 1.9;

  margin-bottom: 22px;

}

/*=====================================================
TAGS
======================================================*/

.bento-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 24px;

}

.bento-tags span {

  padding: 7px 16px;

  border-radius: 40px;

  background: #F7E8DE;

  color: #D97941;

  font-size: 12px;

  font-weight: 600;

}

/*=====================================================
BUTTON
======================================================*/

.bento-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #D97941;

  text-decoration: none;

  font-weight: 600;

  transition: .35s ease;

}

.bento-btn i {

  transition: .35s;

}

.bento-btn:hover {

  color: #BF6431;

}

.bento-btn:hover i {

  transform: translateX(6px);

}

/*=====================================================
MINI SECTION TITLE
======================================================*/

.mt-6 {

  margin-top: 100px;

}

.heading-sm {

  font-size: 42px;

  font-weight: 700;

  color: #2F2F2F;

  line-height: 1.2;

  margin-top: 20px;

}

.mini-text {

  color: #666;

  font-size: 16px;

  line-height: 1.9;

  display: flex;

  align-items: center;

  height: 100%;

}






/*=====================================================
        SERVICE GRID
======================================================*/

.service-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 60px;

}

/*=====================================================
SERVICE ITEM
======================================================*/

.service-item {

  height: 100%;

}

/*=====================================================
CARD
======================================================*/

.service-card {

  position: relative;

  background: #fff;

  border: 1px solid #E8DDD6;

  border-radius: 28px;

  padding: 34px 28px;

  height: 100%;

  overflow: hidden;

  transition: .45s ease;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .04);

}

.service-card:hover {

  transform: translateY(-10px);

  border-color: #D97941;

  box-shadow:
    0 28px 70px rgba(0, 0, 0, .08);

}

/*=====================================================
TOP ACCENT
======================================================*/

.service-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,
      #D97941,
      #BF6431);

  transform: scaleX(0);

  transform-origin: left;

  transition: .45s;

}

.service-card:hover::before {

  transform: scaleX(1);

}

/*=====================================================
BACKGROUND GLOW
======================================================*/

.service-card::after {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  top: -130px;

  right: -120px;

  background: #F7E8DE;

  opacity: .7;

  transition: .45s;

}

.service-card:hover::after {

  transform: scale(1.25);

}

/*=====================================================
NUMBER
======================================================*/

.service-no {

  position: absolute;

  top: 24px;

  right: 24px;

  font-size: 42px;

  font-weight: 700;

  color: #F0E4DB;

  line-height: 1;

}

/*=====================================================
ICON
======================================================*/

.service-icon {

  width: 62px;

  height: 62px;

  border-radius: 20px;

  background: linear-gradient(135deg,
      #D97941,
      #BF6431);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 24px;

  margin-bottom: 24px;

  position: relative;

  z-index: 2;

  transition: .45s;

}

.service-card:hover .service-icon {

  transform:
    rotate(-8deg) scale(1.08);

}

/*=====================================================
TITLE
======================================================*/

.service-card h4 {

  position: relative;

  z-index: 2;

  font-size: 23px;

  font-weight: 700;

  color: #2F2F2F;

  margin-bottom: 15px;

  line-height: 1.3;

}

/*=====================================================
DESCRIPTION
======================================================*/

.service-card p {

  position: relative;

  z-index: 2;

  color: #666;

  font-size: 14px;

  line-height: 1.9;

  margin-bottom: 22px;

}

/*=====================================================
TAGS
======================================================*/

.service-tags {

  position: relative;

  z-index: 2;

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 28px;

}

.service-tags span {

  padding: 7px 15px;

  background: #F7E8DE;

  border-radius: 40px;

  color: #D97941;

  font-size: 12px;

  font-weight: 600;

}

/*=====================================================
FOOTER
======================================================*/

.service-footer {

  position: relative;

  z-index: 2;

  padding-top: 18px;

  border-top: 1px solid #EFE5DE;

}

/*=====================================================
LINK
======================================================*/

.service-link {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  color: #D97941;

  font-weight: 600;

  transition: .35s;

}

.service-link i {

  transition: .35s;

}

.service-link:hover {

  color: #BF6431;

}

.service-link:hover i {

  transform: translateX(6px);

}

/*=====================================================
        ASHIYAA EVENTS
        CSS PART 4
        Responsive + Luxury Effects
======================================================*/

/*=========================================
IMAGE SHINE
=========================================*/

.featured-image::before,
.bento-image::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 45%;
  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);

  transform: skewX(-25deg);

  transition: 1.2s;

  z-index: 5;

}

.featured-event:hover .featured-image::before,
.bento-card:hover .bento-image::before {

  left: 130%;

}

/*=========================================
SMOOTH ANIMATION
=========================================*/

.featured-event,
.bento-card,
.service-card {

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

}

/*=========================================
FLOATING ANIMATION
=========================================*/

@keyframes floatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }

}

.floating-tag {

  animation: floatCard 5s ease-in-out infinite;

}

/*=========================================
SECTION SPACING
=========================================*/

.event-bento {

  margin-bottom: 100px;

}

.service-grid {

  margin-top: 60px;

}

/*=========================================
BUTTON HOVER
=========================================*/

.btn-primary {

  transition: .35s;

}

.btn-primary:hover {

  transform: translateY(-3px);

}

.btn-outline-dark {

  transition: .35s;

}

.btn-outline-dark:hover {

  transform: translateY(-3px);

}

/*=========================================
CARD BORDER ANIMATION
=========================================*/

.bento-card::after,
.service-card::before {

  transition: .45s;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1199px) {

  .featured-content {

    padding: 45px;

  }

  .featured-content h3 {

    font-size: 36px;

  }

  .service-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

/*=========================================
991px
=========================================*/

@media(max-width:991px) {

  .svc-luxury {

    padding: 90px 0;

  }

  .svc-luxury .heading {

    font-size: 42px;

  }

  .featured-event {

    border-radius: 28px;

  }

  .featured-image {

    height: 380px;

  }

  .featured-content {

    padding: 35px;

  }

  .featured-content h3 {

    font-size: 34px;

  }

  .event-bento {

    margin-top: 50px;

  }

  .heading-sm {

    font-size: 34px;

    margin-bottom: 20px;

  }

  .mini-text {

    margin-top: 10px;

  }

}

/*=========================================
768px
=========================================*/

@media(max-width:768px) {

  .svc-luxury {

    padding: 70px 0;

  }

  .svc-luxury .heading {

    font-size: 34px;

  }

  .section-text {

    font-size: 15px;

  }

  .featured-image {

    height: 300px;

  }

  .featured-content {

    padding: 28px;

  }

  .featured-content h3 {

    font-size: 28px;

  }

  .featured-buttons {

    flex-direction: column;

  }

  .featured-buttons .btn {

    width: 100%;

    justify-content: center;

  }

  .event-tags {

    margin-bottom: 25px;

  }

  .event-bento .col-lg-6 {

    margin-bottom: 20px;

  }

  .heading-sm {

    font-size: 30px;

  }

  .service-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }

  .service-card {

    padding: 28px 24px;

  }

}

/*=========================================
576px
=========================================*/

@media(max-width:576px) {

  .svc-luxury {

    padding: 60px 0;

  }

  .svc-luxury .heading {

    font-size: 30px;

  }

  .featured-image {

    height: 240px;

    border-radius: 22px 22px 0 0;

  }

  .featured-event {

    border-radius: 22px;

  }

  .featured-content {

    padding: 24px;

  }

  .featured-content h3 {

    font-size: 24px;

  }

  .event-number {

    font-size: 12px;

  }

  .floating-tag {

    left: 18px;

    top: 18px;

    padding: 10px 16px;

    font-size: 13px;

  }

  .floating-tag i {

    width: 36px;

    height: 36px;

    font-size: 15px;

  }

  .bento-image {

    height: 220px;

  }

  .bento-content {

    padding: 22px;

  }

  .bento-content h4 {

    font-size: 22px;

  }

  .heading-sm {

    font-size: 28px;

  }

  .service-card {

    border-radius: 22px;

  }

  .service-no {

    font-size: 34px;

  }

  .service-icon {

    width: 56px;

    height: 56px;

    font-size: 22px;

  }

  .service-card h4 {

    font-size: 21px;

  }

}

/*=========================================
ACCESSIBILITY
=========================================*/

.featured-buttons .btn:focus,
.bento-btn:focus,
.service-link:focus {

  outline: 2px solid #D97941;

  outline-offset: 3px;

}

/*=========================================
SELECTION
=========================================*/

::selection {

  background: #D97941;

  color: #fff;

}

/*=========================================
SCROLL MARGIN
=========================================*/

#event-types {

  scroll-margin-top: 100px;

}





/*=====================================================
        ASHIYAA LUXURY MARQUEE
======================================================*/

.sp-marquee-wrap {

  position: relative;

  overflow: hidden;

  padding: 18px 0;

  background: linear-gradient(90deg,
      #F7E8DE 0%,
      #FCF8F5 50%,
      #F7E8DE 100%);

  border-top: 1px solid #E8DDD6;
  border-bottom: 1px solid #E8DDD6;

}

/* Soft Glow */

.sp-marquee-wrap::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .5),
      transparent);

  animation: marqueeGlow 8s linear infinite;

}

/* Marquee */

.sp-marquee {

  display: flex;

  align-items: center;

  gap: 40px;

  width: max-content;

  animation: marqueeMove 35s linear infinite;

}

/* Pause on Hover */

.sp-marquee:hover {

  animation-play-state: paused;

}

/* Event Name */

.sp-marquee span {

  white-space: nowrap;

  font-size: 16px;

  font-weight: 600;

  color: #2F2F2F;

  letter-spacing: .3px;

  transition: .3s;

}

.sp-marquee span:hover {

  color: #D97941;

}

/* Decorative Dot */

.sp-dot {

  color: #D97941 !important;

  font-size: 14px !important;

  opacity: .7;

}

/* Animation */

@keyframes marqueeMove {

  from {

    transform: translateX(0);

  }

  to {

    transform: translateX(-50%);

  }

}

/* Glow */

@keyframes marqueeGlow {

  from {

    transform: translateX(-120%);

  }

  to {

    transform: translateX(120%);

  }

}

/* Tablet */

@media(max-width:991px) {

  .sp-marquee {

    gap: 30px;

    animation-duration: 28s;

  }

}

/* Mobile */

@media(max-width:576px) {

  .sp-marquee-wrap {

    padding: 14px 0;

  }

  .sp-marquee {

    gap: 24px;

  }

  .sp-marquee span {

    font-size: 14px;

  }

}




/*==================================================
  MOBILE HORIZONTAL EVENT SLIDER
==================================================*/

@media (max-width:767px) {

  .evp-upcoming {
    padding: 80px 0;
  }

  /* Filters */

  .evp-upcoming .evp-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    margin-bottom: 25px;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .evp-upcoming .evp-filter-row::-webkit-scrollbar {
    display: none;
  }

  .evp-upcoming .evp-filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Event Cards */

  .evp-upcoming #eventsGrid {


    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .evp-upcoming #eventsGrid::-webkit-scrollbar {
    display: none;
  }

  

  /* Right Column */

  .evp-upcoming #eventsGrid>.col-lg-5 {

    display: flex;

    flex-direction: column;

    gap: 18px;
  }

  .evp-upcoming .evp-card--horizontal {

    flex-direction: column;
  }

  .evp-upcoming .evp-card-img-wrap--sm {

    width: 100%;
    min-width: 100%;

    height: 220px !important;
  }

  .evp-upcoming .evp-card--featured .evp-card-img-wrap {

    height: 260px;
  }

  .evp-upcoming .evp-card-body {

    padding: 22px;
  }

  .evp-upcoming .evp-card-title {

    font-size: 24px;
  }

  .evp-upcoming .evp-card--featured .evp-card-title {

    font-size: 28px;
  }

  .evp-upcoming .evp-card-foot {

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .evp-upcoming .btn-lux-primary {

    width: 100%;

    justify-content: center;
  }

}

















/*=========================================================
            ASHIYAA EVENTS
        PREMIUM SERVICES SECTION
=========================================================*/

/*=========================================================
        ASHIYAA EVENTS
        LUXURY SERVICES
        PART 1
=========================================================*/

#our-services {

  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background:
    radial-gradient(circle at top right,
      rgba(217, 121, 65, .06) 0%,
      transparent 35%),

    radial-gradient(circle at bottom left,
      rgba(217, 121, 65, .05) 0%,
      transparent 30%),

    #FCF8F5;

}

/* Decorative Background */

#our-services::before {

  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -180px;

  border-radius: 50%;

  background: #D97941;

  opacity: .04;

}

#our-services::after {

  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  left: -120px;
  bottom: -120px;

  border-radius: 50%;

  background: #D97941;

  opacity: .04;

}

#our-services .container {

  position: relative;

  z-index: 2;

}

/*=========================================================
GRID
=========================================================*/

.sp-services-bento {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;

  align-items: stretch;

}



/* Last Wide Card */

.sp-bento-wide {

  grid-column: 1/-1;

  display: grid;

  grid-template-columns:
    380px 1fr;

}

/*=========================================================
CARD
=========================================================*/

.sp-bento-item {

  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  border: 1px solid #E8DDD6;

  transition: .45s;

  display: flex;

  flex-direction: column;

  box-shadow:

    0 18px 45px rgba(0, 0, 0, .05);

}

/* Top Gradient */

.sp-bento-item::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,

      #D97941,

      #BF6431);

  transform: scaleX(0);

  transform-origin: left;

  transition: .45s;

  z-index: 5;

}

.sp-bento-item:hover {

  transform:
    translateY(-10px);

  border-color: #D97941;

  box-shadow:

    0 35px 70px rgba(0, 0, 0, .08);

}

.sp-bento-item:hover::before {

  transform: scaleX(1);

}

/*=========================================================
BACKGROUND GLOW
=========================================================*/

.sp-bento-item::after {

  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  top: -120px;
  right: -120px;

  background: #F7E8DE;

  opacity: .9;

  transition: .45s;

}

.sp-bento-item:hover::after {

  transform: scale(1.2);

}

/*=========================================================
IMAGE
=========================================================*/

.sp-bento-img {

  position: relative;

  overflow: hidden;

  flex-shrink: 0;

}



/* Normal */

.sp-bento-item:not(:first-child):not(.sp-bento-wide) .sp-bento-img {

  height: 220px;

}

/* Wide */

.sp-bento-wide .sp-bento-img {

  height: 100%;

  min-height: 340px;

}

/* Image */

.sp-bento-img img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s ease;

}

/* Zoom */

.sp-bento-item:hover .sp-bento-img img {

  transform:
    scale(1.08);

}

/*=========================================================
IMAGE OVERLAY
=========================================================*/

.sp-bento-img::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,

      transparent 40%,

      rgba(0, 0, 0, .12));

}

/*=========================================================
IMAGE SHINE
=========================================================*/

.sp-bento-img::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 45%;
  height: 100%;

  background: linear-gradient(120deg,

      transparent,

      rgba(255, 255, 255, .55),

      transparent);

  transform: skewX(-25deg);

  transition: 1.2s;

  z-index: 3;

}

.sp-bento-item:hover .sp-bento-img::before {

  left: 130%;

}

/*=========================================================
        CONTENT
=========================================================*/

.sp-bento-body {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 34px;

}

/*=========================================================
ICON
=========================================================*/

.sp-bento-ico {
  width: 68px;
  position: absolute;
  top: -80px;
  height: 68px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(217, 121, 65, .18);
  color: #D97941;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  margin-bottom: 22px;
  transition: .45s;
}

.sp-bento-item:hover .sp-bento-ico {

  background:
    linear-gradient(135deg,
      #D97941,
      #BF6431);

  color: #fff;

  transform:
    translateY(-6px) rotate(-8deg);

}

.sp-bento-ico i {

  font-size: 26px;

}

/*=========================================================
TITLE
=========================================================*/

.sp-bento-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 30px;

  font-weight: 600;

  color: #2F2F2F;

  line-height: 1.2;

  margin-bottom: 10px;

}



/* Wide */

.sp-bento-wide .sp-bento-title {

  font-size: 34px;

}

/*=========================================================
DESCRIPTION
=========================================================*/

.sp-bento-desc {

  color: #666;

  font-size: 15px;

  margin-bottom: 15px;

}

/*=========================================================
BULLETS
=========================================================*/

.sp-bento-bullets {

  display: flex;

  flex-direction: column;

  margin-top: auto;

  margin-bottom: 15px;

}

.sp-bb {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 0;

  border-bottom: 1px dashed #EFE5DE;

  font-size: 14px;

  color: #555;

}

.sp-bb:last-child {

  border-bottom: none;

}

.sp-bb i {

  color: #D97941;

  font-size: 15px;

  flex-shrink: 0;

}

/*=========================================================
BUTTON AREA
=========================================================*/

.sp-service-actions {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: auto;

}

/*=========================================================
MAIN BUTTON
=========================================================*/

.sp-service-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 14px 24px;

  border-radius: 50px;

  background: #2F2F2F;

  color: #fff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .4px;

  transition: .35s;

}

.sp-service-btn:hover {

  background: #D97941;

  color: #fff;

  transform: translateY(-4px);

  box-shadow:

    0 15px 35px rgba(217, 121, 65, .25);

}

.sp-service-btn i {

  transition: .35s;

}

.sp-service-btn:hover i {

  transform: translateX(6px);

}

/*=========================================================
ROUND ICONS
=========================================================*/

.sp-service-icon {

  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #fff;

  border: 1px solid #E8DDD6;

  text-decoration: none;

  color: #2F2F2F;

  transition: .35s;

}

.sp-service-icon.whatsapp {

  color: #25D366;

}

.sp-service-icon.call {

  color: #2F2F2F;

}

.sp-service-icon i {

  font-size: 17px;

}

.sp-service-icon:hover {

  background: #D97941;

  border-color: #D97941;

  color: #fff;

  transform:
    translateY(-4px) scale(1.06);

}

/*=========================================================
WIDE CARD
=========================================================*/

.sp-bento-wide .sp-bento-body {

  justify-content: center;

  padding: 50px;

}

.sp-bento-wide .sp-bento-bullets {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px 28px;

}

/*=========================================================
        LUXURY ANIMATIONS
=========================================================*/

@keyframes spFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }

}

.sp-bento-item:first-child {

  animation: spFloat 7s ease-in-out infinite;

}

/*=========================================================
SMOOTH TRANSITIONS
=========================================================*/

.sp-bento-item,
.sp-bento-img img,
.sp-bento-ico,
.sp-service-btn,
.sp-service-icon {

  transition:
    all .45s cubic-bezier(.16, 1, .3, 1);

}

/*=========================================================
IMAGE SATURATION
=========================================================*/

.sp-bento-img img {

  filter:
    saturate(105%) contrast(102%);

}

/*=========================================================
CARD HOVER
=========================================================*/

.sp-bento-item:hover {

  transform:
    translateY(-10px);

}

.sp-bento-item:hover .sp-bento-title {

  color: #D97941;

}

/*=========================================================
BUTTON ACTIVE
=========================================================*/

.sp-service-btn:active {

  transform:
    scale(.98);

}

.sp-service-icon:active {

  transform:
    scale(.95);

}

/*=========================================================
WIDE CARD ALIGNMENT
=========================================================*/

.sp-bento-wide {

  align-items: center;
  display: grid;

}

.sp-bento-wide .sp-bento-img {

  height: 100%;

}

.sp-bento-wide .sp-bento-body {

  min-height: 100%;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:1200px) {

  .sp-services-bento {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 24px;

  }


  .sp-bento-wide {

    grid-template-columns: 300px 1fr;

  }

}

/*=========================================================
991px
=========================================================*/

@media(max-width:991px) {

  #our-services {

    padding: 90px 0;

  }

  .sp-services-bento {

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .sp-bento-item:first-child {

    grid-column: auto;

    grid-row: auto;

    animation: none;

  }

  .sp-bento-wide {

    grid-template-columns: 1fr;

  }

  .sp-bento-wide .sp-bento-img {

    height: 260px;

    min-height: 260px;

  }

  .sp-bento-body {

    padding: 30px;

  }

  .sp-bento-title {

    font-size: 28px;

  }

  .sp-bento-item:first-child .sp-bento-title {

    font-size: 32px;

  }

  .sp-bento-wide .sp-bento-title {

    font-size: 30px;

  }

  .sp-bento-wide .sp-bento-bullets {

    grid-template-columns: 1fr;

  }

}

/*=========================================================
768px
=========================================================*/

@media(max-width:768px) {

  #our-services {

    padding: 80px 0;

  }

  .sp-bento-img {

    height: 240px !important;

  }

  .sp-bento-body {

    padding: 26px;

  }

  .sp-bento-title {

    font-size: 26px;

  }

  .sp-bento-item:first-child .sp-bento-title {

    font-size: 30px;

  }

  .sp-service-actions {

    flex-wrap: wrap;

  }

  .sp-service-btn {

    flex: 1;

  }

}

/*=========================================================
576px
=========================================================*/

@media(max-width:576px) {

  #our-services {

    padding: 70px 0;

  }

  #our-services .heading {

    font-size: 34px;

  }

  .sp-services-bento {

    gap: 20px;

  }

  .sp-bento-item {

    border-radius: 24px;

  }

  .sp-bento-img {

    height: 220px !important;

  }

  .sp-bento-body {

    padding: 22px;

  }

  .sp-bento-ico {

    width: 58px;
    height: 58px;

    border-radius: 18px;

  }

  .sp-bento-ico i {

    font-size: 22px;

  }

  .sp-bento-title {

    font-size: 24px;

  }

  .sp-bento-item:first-child .sp-bento-title {

    font-size: 28px;

  }

  .sp-bento-wide .sp-bento-title {

    font-size: 26px;

  }

  .sp-bento-desc {

    font-size: 14px;

  }

  .sp-service-btn {

    width: 100%;

  }

  .sp-service-actions {

    gap: 10px;

  }

}

/*=========================================================
FOCUS STATES
=========================================================*/

.sp-service-btn:focus,
.sp-service-icon:focus {

  outline: 2px solid #D97941;

  outline-offset: 3px;

}

/*=========================================================
TEXT SELECTION
=========================================================*/

#our-services ::selection {

  background: #D97941;

  color: #fff;

}

/*=========================================================
SCROLL OFFSET
=========================================================*/

#our-services {

  scroll-margin-top: 100px;

}

/*=========================================================
        ASHIYAA LUXURY
        PART 4 - PREMIUM POLISH
=========================================================*/

/*=========================================
CARD DECORATION
=========================================*/

.sp-bento-item {

  isolation: isolate;

}

.sp-bento-item .sp-bento-body {

  position: relative;

}

/* Decorative Corner */

.sp-bento-body::before {

  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  top: -45px;
  right: -45px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(217, 121, 65, .08),
      transparent 70%);

  z-index: -1;

}

/*=========================================
SUBTLE HOVER GLOW
=========================================*/

.sp-bento-item:hover {

  box-shadow:
    0 35px 70px rgba(0, 0, 0, .08),
    0 0 0 1px rgba(217, 121, 65, .08);

}

/*=========================================
IMAGE ENHANCEMENT
=========================================*/

.sp-bento-img img {

  filter:
    saturate(1.08) contrast(1.02) brightness(.98);

}

/*=========================================
TITLE ANIMATION
=========================================*/

.sp-bento-title {

  transition:
    color .35s ease,
    transform .35s ease;

}

.sp-bento-item:hover .sp-bento-title {

  color: #D97941;

  transform: translateX(4px);

}

/*=========================================
DESCRIPTION
=========================================*/

.sp-bento-desc {

  transition: .35s;

}

.sp-bento-item:hover .sp-bento-desc {

  color: #555;

}

/*=========================================
BULLETS
=========================================*/

.sp-bb {

  transition: .35s;

}

.sp-bento-item:hover .sp-bb {

  transform: translateX(4px);

}

.sp-bb i {

  transition: .35s;

}

.sp-bento-item:hover .sp-bb i {

  transform: scale(1.15);

}

/*=========================================
BUTTON
=========================================*/

.sp-service-btn {

  overflow: hidden;

  position: relative;

}

.sp-service-btn::before {

  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 45%;

  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);

  transform: skewX(-25deg);

}

.sp-service-btn:hover::before {

  left: 140%;

  transition: 1s;

}

/*=========================================
SOCIAL ICONS
=========================================*/

.sp-service-icon {

  box-shadow:
    0 8px 18px rgba(0, 0, 0, .05);

}

.sp-service-icon:hover {

  box-shadow:
    0 15px 30px rgba(217, 121, 65, .20);

}

/*=========================================
FEATURED CARD RIBBON
=========================================*/

.sp-bento-item:first-child {

  overflow: hidden;

}

.sp-bento-item:first-child::after {

  content: "Featured";

  position: absolute;

  top: 22px;

  right: -34px;

  width: 150px;

  text-align: center;

  padding: 8px 0;

  background: linear-gradient(135deg,
      #D97941,
      #BF6431);

  color: #fff;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  transform: rotate(45deg);

  z-index: 10;

}

/*=========================================
FLOATING ICON
=========================================*/

@keyframes iconFloat {

  0% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-5px);

  }

  100% {

    transform: translateY(0);

  }

}

.sp-bento-ico {

  animation: iconFloat 4s ease-in-out infinite;

}

.sp-bento-item:hover .sp-bento-ico {

  animation-play-state: paused;

}

/*=========================================
SMOOTH APPEARANCE
=========================================*/

.sp-bento-item {

  will-change:
    transform,
    box-shadow;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

  .sp-bento-item:first-child::after {

    display: none;

  }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:576px) {

  .sp-bento-body::before {

    display: none;

  }

  .sp-bento-item {

    border-radius: 22px;

  }

  .sp-service-icon {

    width: 44px;
    height: 44px;

  }

  .sp-service-btn {

    padding: 13px 20px;

    font-size: 13px;

  }

}






















/*=========================================================
        SPECIAL MOMENTS
        ASHIYAA LUXURY STYLE
=========================================================*/

.sp-moments-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

}

/*=========================================================
CARD
=========================================================*/

.sp-moment-card {

  position: relative;

  overflow: hidden;

  background: #fff;

  border-radius: 30px;

  border: 1px solid #E8DDD6;

  transition: .45s;

  display: flex;

  flex-direction: column;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .05);

}

.sp-moment-card:hover {

  transform:
    translateY(-10px);

  border-color: #D97941;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .08);

}

/*=========================================================
TOP BORDER
=========================================================*/

.sp-moment-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #D97941,
      #BF6431);

  transform: scaleX(0);

  transform-origin: left;

  transition: .4s;

  z-index: 5;

}

.sp-moment-card:hover::before {

  transform: scaleX(1);

}

/*=========================================================
IMAGE
=========================================================*/

.sp-moment-img-wrap {

  position: relative;

  height: 240px;

  overflow: hidden;

}

.sp-moment-img-wrap img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .8s;

}

.sp-moment-card:hover .sp-moment-img-wrap img {

  transform: scale(1.08);

}

/*=========================================================
IMAGE SHINE
=========================================================*/

.sp-moment-img-wrap::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 45%;
  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform: skewX(-25deg);

  transition: 1.1s;

  z-index: 3;

}

.sp-moment-card:hover .sp-moment-img-wrap::before {

  left: 130%;

}

/*=========================================================
OVERLAY
=========================================================*/

.sp-moment-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,
      transparent,
      rgba(0, 0, 0, .12));

}

/*=========================================================
NUMBER
=========================================================*/

.sp-moment-num {

  position: absolute;

  right: 22px;
  bottom: 16px;

  font-size: 54px;

  font-weight: 700;

  color: rgba(255, 255, 255, .35);

  line-height: 1;

}

/*=========================================================
BODY
=========================================================*/

.sp-moment-body {

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 32px;
  position: relative
}

/*=========================================================
ICON
=========================================================*/

.sp-moment-ico {

  width: 64px;
  height: 64px;
  position: absolute;
  top: -85px;
  left: 15px;
  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(135deg,
      #D97941,
      #BF6431);

  color: #fff;

  margin-bottom: 22px;

  transition: .4s;

  box-shadow:
    0 12px 28px rgba(217, 121, 65, .22);

}

.sp-moment-card:hover .sp-moment-ico {

  transform:
    rotate(-8deg) scale(1.08);

}

.sp-moment-ico i {

  font-size: 24px;

}

/*=========================================================
TITLE
=========================================================*/

.sp-moment-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: 30px;

  font-weight: 600;

  color: #2F2F2F;

  margin-bottom: 16px;

}

/*=========================================================
DESCRIPTION
=========================================================*/

.sp-moment-desc {

  color: #666;

  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 22px;

}

/*=========================================================
FEATURES
=========================================================*/

.sp-moment-features {

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: auto;

}

.sp-moment-features span {

  display: flex;

  align-items: center;

  gap: 12px;

  color: #555;

  font-size: 14px;

  padding: 10px 0;

  border-bottom: 1px dashed #EFE5DE;

}

.sp-moment-features span:last-child {

  border-bottom: none;

}

.sp-moment-features i {

  color: #D97941;

  font-size: 15px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

  .sp-moments-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:768px) {

  .sp-moments-grid {

    grid-template-columns: 1fr;

  }

  .sp-moment-img-wrap {

    height: 220px;

  }

  .sp-moment-body {

    padding: 26px;

  }

  .sp-moment-title {

    font-size: 26px;

  }

}

@media(max-width:576px) {

  .sp-moment-body {

    padding: 22px;

  }

  .sp-moment-title {

    font-size: 24px;

  }

  .sp-moment-ico {

    width: 56px;
    height: 56px;

  }

  .sp-moment-ico i {

    font-size: 22px;

  }

}

/* ── PROCESS OVERRIDE for light bg ── */
.sp-process-alt {
  background-color: #fcfbfa;
}

.sp-process-alt .process-timeline-track::before {
  background: linear-gradient(90deg, transparent, rgba(240, 146, 60, 0.35) 20%, rgba(240, 146, 60, 0.1) 80%, transparent);
}

.sp-step-lgt .step-ring {
  background: #fcfbfa;
  border-color: rgba(240, 146, 60, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .sp-services-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-bento-lg {
    grid-column: span 2;
  }

  .sp-bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .sp-event-grid {
    grid-template-columns: 1fr;
  }

  .sp-ev-card.sp-ev-featured {
    height: auto;
  }

  .sp-ev-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sp-moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-services-bento {
    grid-template-columns: 1fr;
  }

  .sp-bento-lg,
  .sp-bento-wide {
    grid-column: span 1;
  }

  .sp-moments-grid {
    grid-template-columns: 1fr;
  }

  .sp-ev-stack {
    grid-template-columns: 1fr;
  }

  .sp-ev-mini {
    flex-direction: column;
  }

  .sp-ev-mini-img {
    width: 100%;
    min-width: unset;
    height: 160px;
  }
}

@media (max-width: 575px) {
  .sp-ev-tile-tags {
    gap: 4px;
  }
}

/*=========================================================
        MOBILE HORIZONTAL SLIDER
=========================================================*/

@media (max-width:768px) {

  .sp-services-bento {

    display: flex;

    gap: 18px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    padding: 10px 0 20px;

    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;

  }

  /* Hide Scrollbar */

  .sp-services-bento::-webkit-scrollbar {

    display: none;

  }

  .sp-services-bento {

    scrollbar-width: none;

  }

  /* Every Card */

  .sp-bento-item {

    flex: 0 0 88%;

    max-width: 88%;

    scroll-snap-align: start;

  }

  /* Featured Card */

  .sp-bento-item:first-child {

    grid-column: auto;
    grid-row: auto;

    flex: 0 0 92%;

    max-width: 92%;

  }

  /* Wide Card */

  .sp-bento-wide {

    display: flex;

    flex-direction: column;

    grid-column: auto;

    flex: 0 0 92%;

    max-width: 92%;

  }

  .sp-bento-wide .sp-bento-img {

    width: 100%;

    min-height: 220px;

  }

}

/*=========================================================
        SPECIAL MOMENTS
        MOBILE HORIZONTAL SLIDER
=========================================================*/

@media (max-width:768px) {

  .sp-moments-grid {

    display: flex;

    gap: 18px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    padding: 10px 0 20px;

    margin: 0 -15px;

    padding-left: 15px;

    padding-right: 15px;

    scrollbar-width: none;

  }

  /* Hide Scrollbar */

  .sp-moments-grid::-webkit-scrollbar {

    display: none;

  }

  /* Cards */

  .sp-moment-card {

    flex: 0 0 88%;

    max-width: 88%;

    scroll-snap-align: start;

  }

  /* Image */

  .sp-moment-img-wrap {

    height: 220px;

  }

  /* Body */

  .sp-moment-body {

    padding: 24px;

  }

  /* Title */

  .sp-moment-title {

    font-size: 26px;

  }

}

/* Small Phones */

@media (max-width:576px) {

  .sp-moment-card {

    flex: 0 0 92%;

    max-width: 92%;

  }

  .sp-moment-img-wrap {

    height: 200px;

  }

  .sp-moment-body {

    padding: 22px;

  }

  .sp-moment-title {

    font-size: 24px;

  }

}



/* ============================
          gallery page css        
  =============================== */


/*==================================================
  GALLERY HERO
==================================================*/

.gal-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 110px;
  background: #FCF8F5;
}

.gal-hero .container {
  position: relative;
  z-index: 5;
}


/*==================================================
  BACKGROUND SHAPES
==================================================*/

.gal-hero .gal-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gal-hero .gal-shape-1 {

  width: 520px;
  height: 520px;

  top: -240px;
  left: -220px;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .10),
      transparent 72%);
}

.gal-hero .gal-shape-2 {

  width: 460px;
  height: 460px;

  right: -180px;
  bottom: -180px;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .08),
      transparent 72%);
}


/*==================================================
  BREADCRUMB
==================================================*/

.gal-hero .ab-breadcrumb {

  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 30px;
}

.gal-hero .ab-breadcrumb a {

  color: #777777;

  text-decoration: none;

  transition: .3s;
}

.gal-hero .ab-breadcrumb a:hover {

  color: #D97941;
}

.gal-hero .ab-breadcrumb i {

  color: #C7B8AE;

  font-size: 12px;
}

.gal-hero .ab-breadcrumb span {

  color: #2F2F2F;

  font-weight: 600;
}


/*==================================================
  BADGE
==================================================*/

.gal-hero .hero-badge {

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;

  border-radius: 60px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .05);

  color: #D97941;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .8px;

  text-transform: uppercase;
}

.gal-hero .pulse-dot {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #D97941;
}


/*==================================================
  TITLE
==================================================*/

.gal-hero .gal-title {

  margin: 28px 0 22px;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(48px, 5vw, 72px);

  line-height: 1.08;

  font-weight: 600;

  color: #2F2F2F;
}

.gal-hero .gal-title span {

  color: #D97941;

  position: relative;
}

.gal-hero .gal-title span::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 6px;

  width: 100%;
  height: 10px;

  background: #F7E8DE;

  z-index: -1;
}


/*==================================================
  SUBTITLE
==================================================*/

.gal-hero .gal-subtitle {

  max-width: 560px;

  color: #777777;

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 38px;
}


/*==================================================
  ACTIONS
==================================================*/

.gal-hero .gal-actions {

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 18px;
}


/* Primary */

.gal-hero .btn-lux-primary {

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 28px;

  border-radius: 60px;

  background: #D97941;

  color: #FFFFFF;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition: .35s;
}

.gal-hero .btn-lux-primary:hover {

  background: #BF6431;

  color: #FFFFFF;

  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(217, 121, 65, .25);
}

.gal-hero .btn-lux-primary i {

  transition: .35s;
}

.gal-hero .btn-lux-primary:hover i {

  transform: translateX(5px);
}


/* Outline */

.gal-hero .btn-lux-outline {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  border-radius: 60px;

  border: 1px solid #D97941;

  color: #D97941;

  background: #FFFFFF;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition: .35s;
}

.gal-hero .btn-lux-outline:hover {

  background: #D97941;

  color: #FFFFFF;
}


/*==================================================
  STATS
==================================================*/

.gal-hero .gal-stats {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-top: 50px;
}

.gal-hero .gal-stat {

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  border-radius: 20px;

  padding: 22px 15px;

  text-align: center;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .04);

  transition: .35s;
}

.gal-hero .gal-stat:hover {

  transform: translateY(-5px);

  border-color: #D97941;
}

.gal-hero .gal-stat h3 {

  margin: 0;

  font-family: 'Cormorant Garamond', serif;

  font-size: 36px;

  color: #D97941;
}

.gal-hero .gal-stat span {

  display: block;

  margin-top: 6px;

  color: #777777;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/*==================================================
  COLLAGE
==================================================*/

.gal-hero .gal-collage {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 680px;
  margin-inline: auto;
}


/*==================================================
  IMAGE CARD
==================================================*/

.gal-hero .gal-card {

  position: absolute;

  overflow: hidden;

  border-radius: 28px;

  background: #FFFFFF;

  border: 8px solid #FFFFFF;

  box-shadow:
    0 18px 50px rgba(25, 25, 25, .08);

  transition:
    transform .45s ease,
    box-shadow .45s ease;

  cursor: pointer;
}

.gal-hero .gal-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, .12);
}

.gal-hero .gal-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .7s ease;
}

.gal-hero .gal-card:hover img {

  transform: scale(1.08);
}


/*==================================================
  MAIN CARD
==================================================*/

.gal-hero .gal-card-main {

  width: 370px;
  height: 470px;

  left: 120px;
  top: 100px;

  z-index: 3;
}


/*==================================================
  SMALL CARD
==================================================*/

.gal-hero .gal-card-sm {

  width: 180px;
  height: 220px;
}


/*==================================================
  POSITIONING
==================================================*/

.gal-hero .gal-card-1 {

  top: 0;
  left: 0;

  transform: rotate(-8deg);

  z-index: 4;
}

.gal-hero .gal-card-2 {

  right: 0;
  top: 20px;

  transform: rotate(7deg);

  z-index: 2;
}

.gal-hero .gal-card-3 {

  left: 10px;
  bottom: 20px;

  transform: rotate(-5deg);

  z-index: 2;
}

.gal-hero .gal-card-4 {

  right: 20px;
  bottom: 0;

  transform: rotate(6deg);

  z-index: 4;
}


/*==================================================
  HOVER RESET
==================================================*/

.gal-hero .gal-card-1:hover,
.gal-hero .gal-card-2:hover,
.gal-hero .gal-card-3:hover,
.gal-hero .gal-card-4:hover,
.gal-hero .gal-card-main:hover {

  transform: translateY(-12px) rotate(0deg);
}


/*==================================================
  IMAGE OVERLAY
==================================================*/

.gal-hero .gal-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .55),
      rgba(47, 47, 47, .12),
      transparent);

  z-index: 2;
}


/*==================================================
  SHINE EFFECT
==================================================*/

.gal-hero .gal-card::after {

  content: "";

  position: absolute;

  top: 0;
  left: -140%;

  width: 70%;
  height: 100%;

  transform: skewX(-22deg);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);

  transition: left .9s ease;

  z-index: 4;
}

.gal-hero .gal-card:hover::after {

  left: 170%;
}


/*==================================================
  TAG
==================================================*/

.gal-hero .gal-card-tag {

  position: absolute;

  left: 18px;
  bottom: 18px;

  z-index: 5;

  display: inline-flex;
  align-items: center;

  padding: 9px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .7px;

  text-transform: uppercase;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .08);
}


/*==================================================
  FLOATING ANIMATION
==================================================*/

@keyframes galFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }

}

.gal-hero .gal-card-main {

  animation: galFloat 7s ease-in-out infinite;
}

.gal-hero .gal-card-1 {

  animation: galFloat 8s ease-in-out infinite;
}

.gal-hero .gal-card-2 {

  animation: galFloat 7.5s ease-in-out infinite;
}

.gal-hero .gal-card-3 {

  animation: galFloat 9s ease-in-out infinite;
}

.gal-hero .gal-card-4 {

  animation: galFloat 8.5s ease-in-out infinite;
}


/*==================================================
  SCROLL INDICATOR
==================================================*/

.gal-hero .gal-scroll {

  position: absolute;

  left: 50%;
  bottom: 40px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  z-index: 20;
}

.gal-hero .gal-scroll span {

  color: #777777;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.gal-hero .gal-scroll-line {

  width: 2px;
  height: 60px;

  border-radius: 20px;

  background: #E8DDD6;

  position: relative;

  overflow: hidden;
}

.gal-hero .gal-scroll-line::before {

  content: "";

  position: absolute;

  left: 0;
  top: -30px;

  width: 100%;
  height: 30px;

  background: #D97941;

  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {

  0% {
    top: -30px;
  }

  100% {
    top: 100%;
  }

}


/*==================================================
  DECORATIVE DOTS
==================================================*/

.gal-hero .gal-collage::before {

  content: "";

  position: absolute;

  left: 70px;
  top: 150px;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .12),
      transparent 72%);

  z-index: 0;
}

.gal-hero .gal-collage::after {

  content: "";

  position: absolute;

  right: 60px;
  bottom: 70px;

  width: 90px;
  height: 90px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .10),
      transparent 70%);

  z-index: 0;
}


/*==================================================
  EXTRA CARD DEPTH
==================================================*/

.gal-hero .gal-card {

  backdrop-filter: blur(18px);

  will-change: transform;
}

.gal-hero .gal-card:hover {

  border-color: #FFF7F2;
}


/*==================================================
  BUTTON MICRO INTERACTION
==================================================*/

.gal-hero .btn-lux-primary,
.gal-hero .btn-lux-outline {

  will-change: transform;
}

.gal-hero .btn-lux-primary:active,
.gal-hero .btn-lux-outline:active {

  transform: scale(.96);
}


/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

  .gal-hero {

    padding: 120px 0 90px;
  }

  .gal-hero .row {

    text-align: center;
  }

  .gal-hero .gal-subtitle {

    margin-inline: auto;
  }

  .gal-hero .gal-actions {

    justify-content: center;
  }

  .gal-hero .gal-stats {

    max-width: 620px;

    margin: 45px auto 0;
  }

  .gal-hero .gal-collage {

    margin-top: 70px;

    width: 560px;

    height: 600px;
  }

  .gal-hero .gal-card-main {

    width: 320px;
    height: 420px;

    left: 120px;
  }

  .gal-hero .gal-card-sm {

    width: 150px;
    height: 190px;
  }

  .gal-hero .gal-scroll {

    display: none;
  }

}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  .gal-hero {

    padding: 60px 0 80px;
  }

  .gal-hero .gal-title {

    font-size: 42px;
  }

  .gal-hero .gal-subtitle {

    font-size: 15px;
  }

  .gal-hero .gal-actions {

    flex-direction: column;
  }

  .gal-hero .btn-lux-primary,
  .gal-hero .btn-lux-outline {

    width: 100%;
    justify-content: center;
  }

  .gal-hero .gal-stats {

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
  }

  .gal-hero .gal-collage {

    display: flex;

    gap: 18px;

    width: 100%;
    height: auto;

    overflow-x: auto;

    padding-bottom: 15px;

    margin-top: 55px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-hero .gal-collage::-webkit-scrollbar {

    display: none;
  }

  .gal-hero .gal-card,
  .gal-hero .gal-card-main,
  .gal-hero .gal-card-sm,
  .gal-hero .gal-card-1,
  .gal-hero .gal-card-2,
  .gal-hero .gal-card-3,
  .gal-hero .gal-card-4 {

    position: relative !important;

    inset: auto !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;

    animation: none !important;

    flex: 0 0 82%;

    width: 82%;

    min-width: 82%;

    height: 420px;

    scroll-snap-align: center;
  }

  .gal-hero .gal-card::before {

    background:
      linear-gradient(to top,
        rgba(47, 47, 47, .65),
        transparent 70%);
  }

  .gal-hero .gal-scroll {

    display: none;
  }

}


/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:575px) {

  .gal-hero .gal-title {

    font-size: 34px;
  }

  .gal-hero .hero-badge {

    font-size: 11px;

    padding: 9px 16px;
  }

  .gal-hero .gal-stat {

    padding: 18px 10px;
  }

  .gal-hero .gal-stat h3 {

    font-size: 30px;
  }

  .gal-hero .gal-card {

    height: 360px;
  }

}


/*==================================================
  ACCESSIBILITY
==================================================*/

.gal-hero .btn-lux-primary:focus-visible,
.gal-hero .btn-lux-outline:focus-visible {

  outline: none;

  box-shadow:
    0 0 0 4px rgba(217, 121, 65, .15);
}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .gal-hero *,
  .gal-hero *::before,
  .gal-hero *::after {

    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }

}




























/*==================================================
  FILTER BAR
==================================================*/

.gal-filter-bar {
  position: sticky;
  top: var(--nav-h-scrolled, 70px);
  z-index: 100;

  background: rgba(252, 248, 245, .95);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid #E8DDD6;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.gal-filter-inner {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 18px 0;

  flex-wrap: wrap;
}


/*==================================================
  FILTER TABS
==================================================*/

.gal-filter-tabs {

  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

.gal-tab {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 50px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #777777;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: .4px;

  cursor: pointer;

  transition: all .35s ease;
}

.gal-tab i {

  font-size: 11px;

  color: #D97941;

  transition: .35s;
}

.gal-tab:hover {

  background: #FFF8F3;

  border-color: #D97941;

  color: #2F2F2F;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(217, 121, 65, .08);
}

.gal-tab:hover i {

  transform: rotate(-8deg);
}

.gal-tab.active {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;

  box-shadow:
    0 12px 26px rgba(217, 121, 65, .18);
}

.gal-tab.active i {

  color: #FFFFFF;
}


/*==================================================
  VIEW TOGGLE
==================================================*/

.gal-view-toggle {

  display: flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;
}

.gal-view-btn {

  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: grid;
  place-items: center;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #777777;

  cursor: pointer;

  font-size: 15px;

  transition: all .35s ease;
}

.gal-view-btn:hover {

  background: #FFF8F3;

  border-color: #D97941;

  color: #D97941;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(217, 121, 65, .08);
}

.gal-view-btn.active {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;

  box-shadow:
    0 12px 26px rgba(217, 121, 65, .18);
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  .gal-filter-inner {

    flex-direction: column;

    align-items: flex-start;
  }

  .gal-filter-tabs {

    flex-wrap: nowrap;

    overflow-x: auto;

    width: 100%;

    padding-bottom: 8px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-filter-tabs::-webkit-scrollbar {

    display: none;
  }

  .gal-tab {

    flex: 0 0 auto;

    white-space: nowrap;
  }

  .gal-view-toggle {

    width: 100%;

    justify-content: flex-end;
  }

}

/*==================================================
  GALLERY SECTION
==================================================*/

.gal-section {
  position: relative;
  padding: 80px 0 100px;
  background: #FCF8F5;
  overflow: hidden;
}

.gal-section::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  left: -180px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .08),
      transparent 72%);

  pointer-events: none;
}

.gal-section::after {
  content: "";
  position: absolute;

  width: 380px;
  height: 380px;

  right: -160px;
  bottom: -160px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .05),
      transparent 72%);

  pointer-events: none;
}

.gal-section .gal-container {
  position: relative;
  z-index: 2;

  max-width: 1440px;

  margin: auto;

  padding: 0 24px;
}


/*==================================================
  GALLERY GRID
==================================================*/

.gal-section .gal-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 280px;

  gap: 20px;

  transition: .45s ease;
}


/* Masonry */

.gal-section .gal-grid.masonry-view {

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 300px;
}


/*==================================================
  SIZE VARIANTS
==================================================*/

.gal-section .gal-item--lg {

  grid-column: span 2;

  grid-row: span 2;
}

.gal-section .gal-item--wide {

  grid-column: span 2;
}

.gal-section .gal-item--tall {

  grid-row: span 2;
}


/*==================================================
  RESPONSIVE
==================================================*/

@media (max-width:1200px) {

  .gal-section .gal-grid {

    grid-template-columns: repeat(3, 1fr);
  }

  .gal-section .gal-grid.masonry-view {

    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width:991px) {

  .gal-section {

    padding: 70px 0 80px;
  }

  .gal-section .gal-grid {

    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 240px;

    gap: 18px;
  }

  .gal-section .gal-grid.masonry-view {

    grid-template-columns: repeat(2, 1fr);
  }

  .gal-section .gal-item--lg {

    grid-column: span 2;

    grid-row: span 2;
  }

  .gal-section .gal-item--wide {

    grid-column: span 2;
  }

  .gal-section .gal-item--tall {

    grid-row: span 2;
  }

}

@media (max-width:767px) {

  .gal-section {

    padding: 60px 0 70px;
  }

  .gal-section .gal-grid {

    display: flex;

    overflow-x: auto;

    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-section .gal-grid::-webkit-scrollbar {

    display: none;
  }

  .gal-section .gal-grid>* {

    flex: 0 0 82%;

    min-width: 82%;

    height: 360px;

    scroll-snap-align: center;
  }

  .gal-section .gal-item--lg,
  .gal-section .gal-item--wide,
  .gal-section .gal-item--tall {

    grid-column: auto;

    grid-row: auto;
  }

}

/* Base item */
/*==================================================
  GALLERY ITEM
==================================================*/

.gal-section .gal-item {

  position: relative;

  overflow: hidden;

  border-radius: 24px;

  cursor: pointer;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .05);

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .35s ease;

  isolation: isolate;
}

.gal-section .gal-item:hover {

  transform: translateY(-8px);

  border-color: #D97941;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .10);

  z-index: 5;
}


/*==================================================
  IMAGE
==================================================*/

.gal-section .gal-item img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .8s cubic-bezier(.16, 1, .3, 1),
    filter .4s ease;

  filter: saturate(.95);
}

.gal-section .gal-item:hover img {

  transform: scale(1.08);

  filter: saturate(1.08);
}


/*==================================================
  SOFT OVERLAY
==================================================*/

.gal-section .gal-item::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .45),
      rgba(47, 47, 47, .10) 45%,
      transparent 100%);

  opacity: 0;

  transition: opacity .35s ease;

  z-index: 2;
}

.gal-section .gal-item:hover::before {

  opacity: 1;
}


/*==================================================
  SHINE EFFECT
==================================================*/

.gal-section .gal-item::after {

  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 70%;
  height: 100%;

  transform: skewX(-22deg);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .40),
      transparent);

  transition: left .9s ease;

  z-index: 3;
}

.gal-section .gal-item:hover::after {

  left: 170%;
}



.gal-section .gal-item-overlay {

  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 22px;

  background: linear-gradient(to top,
      rgba(47, 47, 47, .72) 0%,
      rgba(47, 47, 47, .28) 45%,
      transparent 100%);

  opacity: 0;

  transition: opacity .35s ease,
    padding .35s ease;

  z-index: 5;
}

.gal-section .gal-item:hover .gal-item-overlay {

  opacity: 1;

  padding: 26px;
}


/*==================================================
  META
==================================================*/

.gal-section .gal-item-meta {

  margin-top: auto;

  transform: translateY(18px);

  transition: transform .35s ease;
}

.gal-section .gal-item:hover .gal-item-meta {

  transform: translateY(0);
}


/*==================================================
  CATEGORY
==================================================*/

.gal-section .gal-item-cat {

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .94);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 14px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}


/*==================================================
  CATEGORY COLORS
==================================================*/

.gal-section .gal-cat-wedding,
.gal-section .gal-cat-engagement,
.gal-section .gal-cat-corporate,
.gal-section .gal-cat-social,
.gal-section .gal-cat-concert,
.gal-section .gal-cat-special {

  background: rgba(255, 255, 255, .94);

  color: #D97941;

  border: 1px solid rgba(255, 255, 255, .95);
}


/*==================================================
  TITLE
==================================================*/

.gal-section .gal-item-title {

  margin: 0 0 8px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 24px;

  font-weight: 600;

  line-height: 1.25;

  color: #FFFFFF;

  transition: color .35s ease;
}

.gal-section .gal-item--lg .gal-item-title {

  font-size: 32px;
}

.gal-section .gal-item:hover .gal-item-title {

  color: #FFF5EF;
}


/*==================================================
  DETAILS
==================================================*/

.gal-section .gal-item-detail {

  margin: 0;

  color: rgba(255, 255, 255, .82);

  font-size: 12px;

  line-height: 1.7;
}


/*==================================================
  ZOOM BUTTON
==================================================*/

.gal-section .gal-zoom-btn {

  position: absolute;

  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;

  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 16px;

  cursor: pointer;

  transition: all .35s ease;

  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.gal-section .gal-zoom-btn:hover {

  background: #D97941;

  color: #FFFFFF;

  transform: scale(1.08) rotate(12deg);

  box-shadow: 0 16px 35px rgba(217, 121, 65, .22);
}


/*==================================================
  FADE ANIMATION
==================================================*/

.gal-section .gal-item-title,
.gal-section .gal-item-detail,
.gal-section .gal-item-cat {

  transition: transform .35s ease,
    opacity .35s ease;
}

.gal-section .gal-item:hover .gal-item-title {

  transform: translateY(-2px);
}

.gal-section .gal-item:hover .gal-item-detail {

  transform: translateY(-2px);
}

.gal-section .gal-item:hover .gal-item-cat {

  transform: translateY(-2px);
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {
.gal-hero .ab-breadcrumb {
    justify-content: center;
}
  .gal-section .gal-item-overlay {

    opacity: 1;

    padding: 18px;

    background: linear-gradient(to top,
        rgba(47, 47, 47, .65),
        transparent 75%);
  }

  .gal-section .gal-item-title {

    font-size: 22px;
  }

  .gal-section .gal-item--lg .gal-item-title {

    font-size: 26px;
  }

  .gal-section .gal-zoom-btn {

    width: 40px;
    height: 40px;

    top: 14px;
    right: 14px;
  }

  .gal-section .gal-item-meta {

    transform: none;
  }

}



/*==================================================
  NO RESULTS
==================================================*/

.gal-section .gal-no-results {

  text-align: center;

  padding: 90px 20px;
}

.gal-section .gal-no-results i {

  display: inline-grid;
  place-items: center;

  width: 90px;
  height: 90px;

  margin-bottom: 24px;

  border-radius: 50%;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #D97941;

  font-size: 40px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .05);
}

.gal-section .gal-no-results h4 {

  margin-bottom: 10px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;

  color: #2F2F2F;
}

.gal-section .gal-no-results p {

  max-width: 520px;

  margin: 0 auto;

  color: #777777;

  font-size: 15px;

  line-height: 1.8;
}


/*==================================================
  LOAD MORE
==================================================*/

.gal-section .gal-load-more {

  text-align: center;

  margin-top: 70px;
}

.gal-section .gal-load-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 15px 34px;

  border-radius: 60px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #D97941;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: .5px;

  cursor: pointer;

  transition: all .35s ease;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .05);
}

.gal-section .gal-load-btn:hover {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;

  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(217, 121, 65, .20);
}

.gal-section .gal-load-btn i {

  font-size: 16px;

  transition: transform .35s ease;
}

.gal-section .gal-load-btn:hover i {

  transform: translateY(2px);
}


/*==================================================
  LOAD HINT
==================================================*/

.gal-section .gal-load-hint {

  margin-top: 16px;

  color: #999999;

  font-size: 12px;

  letter-spacing: .4px;
}


/*==================================================
  FILTER HIDE
==================================================*/

.gal-section .gal-item.gal-hidden {

  display: none !important;
}


/*==================================================
  BUTTON FOCUS
==================================================*/

.gal-section .gal-load-btn:focus-visible {

  outline: none;

  box-shadow:
    0 0 0 4px rgba(217, 121, 65, .15),
    0 18px 40px rgba(0, 0, 0, .08);
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  .gal-section .gal-load-more {

    margin-top: 50px;
  }

  .gal-section .gal-load-btn {

    width: 100%;

    justify-content: center;
  }

  .gal-section .gal-no-results {

    padding: 70px 20px;
  }

  .gal-section .gal-no-results h4 {

    font-size: 28px;
  }

  .gal-section .gal-no-results i {

    width: 72px;
    height: 72px;

    font-size: 32px;
  }

}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .gal-section .gal-load-btn {

    transition: none;
  }

}














/* Hid/*==================================================
  FILTER HIDDEN
==================================================*/

.gal-section .gal-item.gal-hidden {
  display: none !important;
}


/*==================================================
  VIDEO REEL SECTION
==================================================*/

.gal-reel {

  position: relative;

  padding: 120px 0;

  background: #FCF8F5;

  overflow: hidden;
}

.gal-reel::before {

  content: "";

  position: absolute;

  top: -180px;
  left: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .08),
      transparent 72%);

  pointer-events: none;
}

.gal-reel::after {

  content: "";

  position: absolute;

  right: -160px;
  bottom: -160px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .05),
      transparent 72%);

  pointer-events: none;
}

.gal-reel .container {

  position: relative;

  z-index: 2;
}


/*==================================================
  STATS
==================================================*/

.gal-reel .gal-reel-stats {

  display: flex;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 35px;
}

.gal-reel .gal-rs-num {

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;

  font-weight: 700;

  line-height: 1;

  color: #D97941;
}

.gal-reel .gal-rs-lbl {

  margin-top: 5px;

  font-size: 11px;

  color: #777777;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/*==================================================
  VIDEO PLAYER
==================================================*/

.gal-reel .gal-reel-player {

  position: relative;

  overflow: hidden;

  border-radius: 26px;

  aspect-ratio: 16/9;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  cursor: pointer;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .08);

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .35s ease;
}

.gal-reel .gal-reel-player:hover {

  transform: translateY(-8px);

  border-color: #D97941;

  box-shadow:
    0 28px 70px rgba(0, 0, 0, .12);
}


/*==================================================
  THUMBNAIL
==================================================*/

.gal-reel .gal-reel-thumb {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .8s ease,
    filter .35s ease;

  filter: saturate(.95);
}

.gal-reel .gal-reel-player:hover .gal-reel-thumb {

  transform: scale(1.06);

  filter: saturate(1.08);
}


/*==================================================
  OVERLAY
==================================================*/

.gal-reel .gal-reel-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 22px;

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .55),
      rgba(47, 47, 47, .18),
      transparent);

  transition: background .35s ease;
}

.gal-reel .gal-reel-player:hover .gal-reel-overlay {

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .45),
      rgba(47, 47, 47, .10),
      transparent);
}

.gal-reel .gal-reel-player.playing .gal-reel-overlay {

  display: none;
}


/*==================================================
  PLAY BUTTON
==================================================*/

.gal-reel .gal-play-btn {

  width: 86px;
  height: 86px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #FFFFFF;

  border: 2px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 30px;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .12);

  transition: all .35s ease;
}

.gal-reel .gal-reel-player:hover .gal-play-btn {

  transform: scale(1.08);

  background: #D97941;

  color: #FFFFFF;

  box-shadow:
    0 20px 45px rgba(217, 121, 65, .25);
}


/*==================================================
  LABEL
==================================================*/

.gal-reel .gal-reel-label {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, .95);

  color: #D97941;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .5px;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, .08);
}


/*==================================================
  VIDEO
==================================================*/

.gal-reel .gal-reel-video {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: none;
}

.gal-reel .gal-reel-player.playing .gal-reel-thumb {

  display: none;
}

.gal-reel .gal-reel-player.playing .gal-reel-video {

  display: block;
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:991px) {

  .gal-reel {

    padding: 90px 0;
  }

  .gal-reel .gal-reel-stats {

    justify-content: center;

    gap: 24px;
  }

}

@media (max-width:767px) {

  .gal-reel {

    padding: 80px 0;
  }

  .gal-reel .gal-reel-stats {

    justify-content: space-between;

    gap: 18px;
  }

  .gal-reel .gal-rs-num {

    font-size: 28px;
  }

  .gal-reel .gal-play-btn {

    width: 72px;
    height: 72px;

    font-size: 24px;
  }

  .gal-reel .gal-reel-label {

    font-size: 11px;

    padding: 8px 16px;
  }

}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .gal-reel *,
  .gal-reel *::before,
  .gal-reel *::after {

    animation: none !important;

    transition: none !important;
  }

}

/* ── SPOTLIGHT GRID ── */
.gal-spotlight {
  padding: 60px 0 ;
  background: #fcfbfa;
}

.gal-cat-grid {
  display: grid;
}

/*==================================================
  SPOTLIGHT SECTION
==================================================*/

.gal-spotlight {

  position: relative;

  padding: 120px 0;

  background: #FCF8F5;

  overflow: hidden;
}

.gal-spotlight::before {

  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  left: -180px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .08),
      transparent 72%);
}

.gal-spotlight::after {

  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  right: -160px;
  bottom: -160px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(217, 121, 65, .05),
      transparent 72%);
}

.gal-spotlight .container {

  position: relative;

  z-index: 2;
}


/*==================================================
  GRID
==================================================*/

.gal-spotlight .gal-cat-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}


/*==================================================
  CARD
==================================================*/

.gal-spotlight .gal-cat-card {

  position: relative;

  overflow: hidden;

  aspect-ratio: 4/3;

  border-radius: 26px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  cursor: pointer;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .05);

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .35s ease;
}

.gal-spotlight .gal-cat-card:hover {

  transform: translateY(-8px);

  border-color: #D97941;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .10);
}


/*==================================================
  IMAGE
==================================================*/

.gal-spotlight .gal-cat-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .8s cubic-bezier(.16, 1, .3, 1),
    filter .35s ease;

  filter: saturate(.95);
}

.gal-spotlight .gal-cat-card:hover img {

  transform: scale(1.08);

  filter: saturate(1.08);
}


/*==================================================
  OVERLAY
==================================================*/

.gal-spotlight .gal-cat-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  padding: 28px;

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .72),
      rgba(47, 47, 47, .22) 55%,
      transparent 100%);

  transition: .35s ease;
}

.gal-spotlight .gal-cat-card:hover .gal-cat-overlay {

  background:
    linear-gradient(to top,
      rgba(47, 47, 47, .82),
      rgba(47, 47, 47, .35) 60%,
      transparent 100%);
}


/*==================================================
  ICON
==================================================*/

.gal-spotlight .gal-cat-ico {

  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  margin-bottom: 18px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .95);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, .08);

  transform: translateY(15px);

  opacity: 0;

  transition: .35s ease;
}

.gal-spotlight .gal-cat-card:hover .gal-cat-ico {

  transform: translateY(0);

  opacity: 1;
}

.gal-spotlight .gal-cat-ico i {

  font-size: 22px;

  color: #D97941;
}


/*==================================================
  TITLE
==================================================*/

.gal-spotlight .gal-cat-name {

  margin: 0 0 6px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 30px;

  font-weight: 600;

  color: #FFFFFF;

  text-align: center;

  transition: .35s ease;
}

.gal-spotlight .gal-cat-card:hover .gal-cat-name {

  color: #FFF5EF;
}


/*==================================================
  COUNT
==================================================*/

.gal-spotlight .gal-cat-count {

  color: #FFD7BF;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  text-align: center;
}


/*==================================================
  SHINE
==================================================*/

.gal-spotlight .gal-cat-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 70%;
  height: 100%;

  transform: skewX(-22deg);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .40),
      transparent);

  transition: left .9s ease;

  z-index: 3;
}

.gal-spotlight .gal-cat-card:hover::before {

  left: 170%;
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:991px) {

  .gal-spotlight {

    padding: 90px 0;
  }

  .gal-spotlight .gal-cat-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

}

@media (max-width:767px) {

  .gal-spotlight {

    padding: 80px 0;
  }

  .gal-spotlight .gal-cat-grid {

    display: flex;

    overflow-x: auto;

    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-spotlight .gal-cat-grid::-webkit-scrollbar {

    display: none;
  }

  .gal-spotlight .gal-cat-card {

    flex: 0 0 82%;

    min-width: 82%;

    scroll-snap-align: center;
  }

  .gal-spotlight .gal-cat-name {

    font-size: 26px;
  }

  .gal-spotlight .gal-cat-ico {

    opacity: 1;

    transform: none;

    width: 48px;
    height: 48px;
  }

  .gal-spotlight .gal-cat-ico i {

    font-size: 20px;
  }

}

/*==================================================
  LIGHTBOX
==================================================*/

.gal-lightbox {

  position: fixed;

  inset: 0;

  z-index: 3000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(252, 248, 245, .94);

  backdrop-filter: blur(20px);
}

.gal-lightbox.open {

  display: flex;

  animation: galFade .35s ease;
}

@keyframes galFade {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}


/*==================================================
  INNER
==================================================*/

.gal-lb-inner {

  position: relative;

  width: 100%;
  max-width: 1080px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 24px;
}


/*==================================================
  IMAGE WRAPPER
==================================================*/

.gal-lb-img-wrap {

  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 28px;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .10);

  max-height: 80vh;
}

.gal-lb-img-wrap img {

  width: 100%;

  max-height: 80vh;

  object-fit: contain;

  display: block;

  transition: opacity .35s ease;
}


/*==================================================
  LOADER
==================================================*/

.gal-lb-loader {

  position: absolute;

  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .75);

  backdrop-filter: blur(6px);
}

.gal-lb-loader.show {

  display: flex;
}


/*==================================================
  SPINNER
==================================================*/

.gal-lb-spin {

  width: 46px;
  height: 46px;

  border-radius: 50%;

  border: 3px solid rgba(217, 121, 65, .18);

  border-top-color: #D97941;

  animation: galSpin .8s linear infinite;
}

@keyframes galSpin {

  to {

    transform: rotate(360deg);
  }

}


/*==================================================
  CAPTION
==================================================*/

.gal-lb-caption {

  text-align: center;

  max-width: 700px;
}

.gal-lb-caption h4 {

  margin: 0 0 10px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 34px;

  font-weight: 600;

  color: #2F2F2F;
}

.gal-lb-caption p {

  margin: 0;

  color: #777777;

  font-size: 15px;

  line-height: 1.8;
}


/*==================================================
  CONTROLS
==================================================*/

.gal-lb-close,
.gal-lb-prev,
.gal-lb-next {

  position: absolute;

  z-index: 20;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #FFFFFF;

  border: 1px solid #E8DDD6;

  color: #D97941;

  font-size: 18px;

  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .08);

  transition: all .35s ease;
}

.gal-lb-close:hover,
.gal-lb-prev:hover,
.gal-lb-next:hover {

  background: #D97941;

  border-color: #D97941;

  color: #FFFFFF;

  transform: scale(1.08);
}


/*==================================================
  CLOSE
==================================================*/

.gal-lb-close {

  top: -70px;

  right: 0;
}


/*==================================================
  PREVIOUS
==================================================*/

.gal-lb-prev {

  top: 50%;

  left: -80px;

  transform: translateY(-50%);
}


/*==================================================
  NEXT
==================================================*/

.gal-lb-next {

  top: 50%;

  right: -80px;

  transform: translateY(-50%);
}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:991px) {

  .gal-lb-prev {

    left: 15px;
  }

  .gal-lb-next {

    right: 15px;
  }

  .gal-lb-close {

    top: 15px;

    right: 15px;
  }

}


@media (max-width:767px) {

  .gal-lightbox {

    padding: 15px;
  }

  .gal-lb-inner {

    gap: 18px;
  }

  .gal-lb-img-wrap {

    border-radius: 20px;
  }

  .gal-lb-caption h4 {

    font-size: 26px;
  }

  .gal-lb-caption p {

    font-size: 14px;
  }

  .gal-lb-close,
  .gal-lb-prev,
  .gal-lb-next {

    width: 46px;
    height: 46px;

    font-size: 16px;
  }

  .gal-lb-prev {

    left: 10px;
  }

  .gal-lb-next {

    right: 10px;
  }

  .gal-lb-close {

    top: 10px;

    right: 10px;
  }

}


/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

  .gal-lightbox *,
  .gal-lightbox *::before,
  .gal-lightbox *::after {

    animation: none !important;

    transition: none !important;
  }

}












/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

  .gal-hero .gal-stats {

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 40px;
  }

  .gal-section .gal-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .gal-spotlight .gal-cat-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

}


/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

  /* Hero */

  .gal-hero {

    padding: 100px 0 70px;
  }

  .gal-hero .gal-title {

    font-size: 40px;
  }

  .gal-hero .gal-subtitle {

    font-size: 15px;
  }

  .gal-hero .gal-actions {

    flex-direction: column;
    display: none;
  }

  .gal-hero .btn-lux-primary,
  .gal-hero .btn-lux-outline {

    width: 100%;

    justify-content: center;
  }

  .gal-hero .gal-stats {

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
  }

  /* Gallery */

  .gal-section .gal-grid {

    display: flex;

    overflow-x: auto;

    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-section .gal-grid::-webkit-scrollbar {

    display: none;
  }

  .gal-section .gal-grid>* {

    flex: 0 0 82%;

    min-width: 82%;

    scroll-snap-align: center;
  }

  /* Categories */

  .gal-spotlight .gal-cat-grid {

    display: flex;

    overflow-x: auto;

    gap: 18px;

    padding-bottom: 15px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .gal-spotlight .gal-cat-grid::-webkit-scrollbar {

    display: none;
  }

  .gal-spotlight .gal-cat-card {

    flex: 0 0 82%;

    min-width: 82%;

    scroll-snap-align: center;
  }

  /* Filters */

  .gal-filter-tabs {

    flex-wrap: nowrap;

    overflow-x: auto;

    gap: 10px;

    padding-bottom: 6px;

    scrollbar-width: none;
  }

  .gal-filter-tabs::-webkit-scrollbar {

    display: none;
  }

  .gal-tab {

    flex: 0 0 auto;

    white-space: nowrap;
  }

}


/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:575px) {

  .gal-hero .gal-title {

    font-size: 34px;
  }

  .gal-hero .hero-badge {

    font-size: 11px;

    padding: 8px 16px;
  }

  .gal-hero .gal-stats {

  grid-template-columns: repeat(2, 1fr);

    gap: 14px;
  }

  .gal-section .gal-grid>* {

    flex: 0 0 88%;

    min-width: 88%;
  }

  .gal-spotlight .gal-cat-card {

    flex: 0 0 88%;

    min-width: 88%;
  }

  .gal-tab {

    padding: 8px 14px;

    font-size: 11px;
  }

}













/* ==========================================================
   PRIVACY POLICY PAGE
========================================================== */
/* ==========================================================
   PRIVACY POLICY HERO
========================================================== */

.pp-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(217, 121, 65, .10), transparent 35%),
    radial-gradient(circle at bottom left, rgba(217, 121, 65, .08), transparent 40%),
    linear-gradient(180deg, #FFFFFF 0%, #FCF8F5 100%);
}

.pp-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .08);
  filter: blur(40px);
  animation: ppFloatOne 8s ease-in-out infinite;
}

.pp-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -100px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .06);
  filter: blur(35px);
  animation: ppFloatTwo 10s ease-in-out infinite;
}

.pp-hero .container {
  position: relative;
  z-index: 2;
}

.pp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 121, 65, .12);
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.pp-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
}

.pp-breadcrumb a:hover {
  color: var(--accent-dark);
}

.pp-breadcrumb span {
  color: #888;
  font-size: 15px;
}

.pp-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.pp-hero p {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

.pp-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding: 14px 28px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid rgba(217, 121, 65, .12);
  color: #666;
  font-size: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.pp-updated::before {
  content: "\F4CA";
  font-family: bootstrap-icons;
  color: var(--accent);
  font-size: 16px;
}

/* Decorative Shapes */

.pp-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.pp-shape-one {
  width: 120px;
  height: 120px;
  top: 120px;
  left: 8%;
  background: rgba(217, 121, 65, .08);
  animation: ppRotate 12s linear infinite;
}

.pp-shape-two {
  width: 70px;
  height: 70px;
  right: 12%;
  top: 180px;
  background: rgba(217, 121, 65, .12);
  animation: ppFloatOne 6s ease-in-out infinite;
}

.pp-shape-three {
  width: 45px;
  height: 45px;
  left: 22%;
  bottom: 80px;
  background: rgba(217, 121, 65, .15);
  animation: ppFloatTwo 7s ease-in-out infinite;
}

/* Animations */

@keyframes ppFloatOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

}

@keyframes ppFloatTwo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

}

@keyframes ppRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/* ==========================================
   Responsive
========================================== */

@media (max-width:991px) {

  .pp-hero {
    padding: 150px 0 90px;
  }

  .pp-hero h1 {
    font-size: 46px;
  }

}

@media (max-width:767px) {

  .pp-hero {
    padding: 130px 0 70px;
  }

  .pp-breadcrumb {
    padding: 10px 18px;
    font-size: 14px;
  }

  .pp-hero h1 {
    font-size: 36px;
  }

  .pp-hero p {
    font-size: 15px;
  }

  .pp-updated {
    padding: 12px 22px;
    font-size: 14px;
  }

  .pp-shape {
    display: none;
  }

}

@media (max-width:575px) {

  .pp-hero h1 {
    font-size: 30px;
  }

  .pp-breadcrumb {
    gap: 8px;
  }

}

/* ==========================================================
   SECTION
========================================================== */

.pp-section {
  padding: 90px 0;
  background: #FCF8F5;
}

/* ==========================================================
   CARD
========================================================== */

.pp-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  margin-bottom: 35px;
  border: 1px solid rgba(217, 121, 65, .12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .05);
  transition: .35s;
}

.pp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, .08);
}

.pp-card h2 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 14px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 700;
}

.pp-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: var(--accent);
  border-radius: 20px;
}

.pp-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ==========================================================
   LIST
========================================================== */

.pp-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.pp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 14px;
  background: #fffaf7;
  border: 1px solid rgba(217, 121, 65, .10);
}

.pp-list-item i {
  font-size: 24px;
  color: var(--accent);
}

.pp-list-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
}

.pp-list-item p {
  margin: 0;
}

/* ==========================================================
   UL
========================================================== */

.pp-ul {
  padding-left: 0;
  margin: 25px 0 0;
  list-style: none;
}

.pp-ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: #666;
  line-height: 1.8;
}

.pp-ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================
   CONTACT
========================================================== */

.pp-contact {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.pp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 14px;
  background: #fffaf7;
  border: 1px solid rgba(217, 121, 65, .10);
}

.pp-contact-item i {
  color: var(--accent);
  font-size: 22px;
  min-width: 28px;
}

.pp-contact-item strong {
  color: var(--dark);
}

.pp-contact-item a {
  color: #666;
  text-decoration: none;
  transition: .3s;
}

.pp-contact-item a:hover {
  color: var(--accent);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:991px) {

  .pp-hero {
    padding: 150px 0 80px;
  }

  .pp-hero h1 {
    font-size: 42px;
  }

  .pp-card {
    padding: 35px;
  }

}

@media (max-width:767px) {

  .pp-section {
    padding: 70px 0;
  }

  .pp-hero {
    padding: 135px 0 70px;
  }

  .pp-hero h1 {
    font-size: 34px;
  }

  .pp-hero p {
    font-size: 15px;
  }

  .pp-card {
    padding: 28px;
  }

  .pp-card h2 {
    font-size: 24px;
  }

  .pp-list-item,
  .pp-contact-item {
    padding: 18px;
  }

}

@media (max-width:575px) {

  .pp-breadcrumb {
    font-size: 14px;
    padding: 8px 16px;
  }

  .pp-hero h1 {
    font-size: 30px;
  }

  .pp-card {
    padding: 22px;
    border-radius: 14px;
  }

  .pp-list-item,
  .pp-contact-item {
    gap: 14px;
  }

  .pp-list-item i,
  .pp-contact-item i {
    font-size: 20px;
  }

}















/* ==========================================================
   TERMS & CONDITIONS PAGE
   PART 3A - HERO
========================================================== */

.tc-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(217, 121, 65, .10), transparent 35%),
    radial-gradient(circle at bottom left, rgba(217, 121, 65, .08), transparent 40%),
    linear-gradient(180deg, #FFFFFF 0%, #FCF8F5 100%);
}

/* Decorative Background */

.tc-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .08);
  filter: blur(40px);
  animation: tcFloatOne 8s ease-in-out infinite;
}

.tc-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(217, 121, 65, .06);
  filter: blur(35px);
  animation: tcFloatTwo 10s ease-in-out infinite;
}

.tc-hero .container {
  position: relative;
  z-index: 5;
}

/* ==========================================
   Floating Shapes
========================================== */

.tc-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.tc-shape-one {
  width: 120px;
  height: 120px;
  top: 120px;
  left: 8%;
  background: rgba(217, 121, 65, .08);
  animation: tcRotate 12s linear infinite;
}

.tc-shape-two {
  width: 70px;
  height: 70px;
  top: 180px;
  right: 12%;
  background: rgba(217, 121, 65, .12);
  animation: tcFloatOne 6s ease-in-out infinite;
}

.tc-shape-three {
  width: 45px;
  height: 45px;
  left: 22%;
  bottom: 80px;
  background: rgba(217, 121, 65, .15);
  animation: tcFloatTwo 7s ease-in-out infinite;
}

/* ==========================================
   Breadcrumb
========================================== */

.tc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(217, 121, 65, .12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.tc-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
}

.tc-breadcrumb a:hover {
  color: var(--accent-dark);
}

.tc-breadcrumb span {
  color: #888;
  font-size: 15px;
}

/* ==========================================
   Heading
========================================== */

.tc-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.tc-hero p {
  max-width: 760px;
  margin: auto;
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}

/* ==========================================
   Updated Badge
========================================== */

.tc-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(217, 121, 65, .12);
  color: #666;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.tc-updated::before {
  content: "\F4CA";
  font-family: bootstrap-icons;
  color: var(--accent);
  font-size: 16px;
}

/* ==========================================
   Animations
========================================== */

@keyframes tcFloatOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

}

@keyframes tcFloatTwo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

}

@keyframes tcRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/* ==========================================
   Responsive
========================================== */

@media (max-width:991px) {

  .tc-hero {
    padding: 150px 0 90px;
  }

  .tc-hero h1 {
    font-size: 46px;
  }

}

@media (max-width:767px) {

  .tc-hero {
    padding: 130px 0 70px;
  }

  .tc-breadcrumb {
    padding: 10px 18px;
    font-size: 14px;
  }

  .tc-hero h1 {
    font-size: 36px;
  }

  .tc-hero p {
    font-size: 15px;
  }

  .tc-updated {
    padding: 12px 22px;
    font-size: 14px;
  }

  .tc-shape {
    display: none;
  }

}

@media (max-width:575px) {

  .tc-hero h1 {
    font-size: 30px;
  }

  .tc-breadcrumb {
    gap: 8px;
  }

}

/* ==========================================
   Section
========================================== */

.tc-section {
  padding: 90px 0;
  background: #FCF8F5;
  position: relative;
}

.tc-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, .9),
      transparent);
  pointer-events: none;
}

/* ==========================================
   Card
========================================== */

.tc-card {
  position: relative;
  background: #fff;
  padding: 45px;
  margin-bottom: 35px;
  border-radius: 22px;
  border: 1px solid rgba(217, 121, 65, .12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
  transition: all .35s ease;
}

.tc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .08);
}

.tc-card:last-child {
  margin-bottom: 0;
}

.tc-card h2 {
  position: relative;
  color: var(--dark);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.tc-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75px;
  height: 3px;
  border-radius: 30px;
  background: var(--accent);
}

.tc-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 18px;
}

.tc-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   Bullet List
========================================== */

.tc-ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.tc-ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: #666;
  line-height: 1.8;
}

.tc-ul li:last-child {
  margin-bottom: 0;
}

.tc-ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 121, 65, .12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================
   Feature List
========================================== */

.tc-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.tc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #FFFAF7;
  border: 1px solid rgba(217, 121, 65, .10);
  transition: .3s;
}

.tc-list-item:hover {
  transform: translateX(6px);
  border-color: rgba(217, 121, 65, .22);
}

.tc-list-item i {
  color: var(--accent);
  font-size: 24px;
  margin-top: 2px;
}

.tc-list-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 18px;
}

.tc-list-item p {
  margin: 0;
}

/* ==========================================
   Note Box
========================================== */

.tc-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      rgba(217, 121, 65, .08),
      rgba(217, 121, 65, .03));
  border-left: 4px solid var(--accent);
}

.tc-note i {
  color: var(--accent);
  font-size: 26px;
}

.tc-note div {
  color: #555;
  line-height: 1.8;
}

/* ==========================================
   Contact
========================================== */

.tc-contact {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.tc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #FFFAF7;
  border: 1px solid rgba(217, 121, 65, .10);
  transition: .3s;
}

.tc-contact-item:hover {
  transform: translateX(6px);
  border-color: rgba(217, 121, 65, .22);
}

.tc-contact-item i {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}

.tc-contact-item strong {
  color: var(--dark);
  font-size: 18px;
}

.tc-contact-item a {
  color: #666;
  text-decoration: none;
  transition: .3s;
}

.tc-contact-item a:hover {
  color: var(--accent);
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:991px) {

  .tc-section {
    padding: 80px 0;
  }

  .tc-card {
    padding: 35px;
  }

  .tc-card h2 {
    font-size: 26px;
  }

}

@media (max-width:767px) {

  .tc-section {
    padding: 70px 0;
  }

  .tc-card {
    padding: 28px;
    border-radius: 18px;
  }

  .tc-card h2 {
    font-size: 23px;
  }

  .tc-list-item,
  .tc-contact-item,
  .tc-note {
    padding: 18px;
  }

  .tc-list-item strong,
  .tc-contact-item strong {
    font-size: 17px;
  }

}

@media (max-width:575px) {

  .tc-card {
    padding: 22px;
  }

  .tc-card h2 {
    font-size: 21px;
  }

  .tc-list-item,
  .tc-contact-item {
    gap: 14px;
  }

  .tc-list-item i,
  .tc-contact-item i,
  .tc-note i {
    font-size: 20px;
  }

  .tc-ul li {
    padding-left: 30px;
  }

}















/* ===============================
   Custom Cursor
================================= */
/* ==========================================
   Luxury Custom Cursor
========================================== */

@media (pointer: fine) {

  html.cursor-active,
  html.cursor-active body {
    cursor: none;
  }

  .ae-cursor {

    position: fixed;
    top: 0;
    left: 0;

    width: 36px;
    height: 36px;

    border: 1.5px solid var(--primary);

    border-radius: 50%;

    background: rgba(217, 121, 65, .02);

    backdrop-filter: blur(8px);

    box-shadow:
      0 0 0 1px rgba(217, 121, 65, .08),
      0 10px 30px rgba(217, 121, 65, .15);

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 999999;

    transition:
      width .35s ease,
      height .35s ease,
      border-color .35s ease,
      background .35s ease,
      opacity .35s ease,
      transform .15s ease;

  }

  .ae-cursor-dot {

    position: fixed;

    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    background: var(--primary);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 999999;

    box-shadow:
      0 0 15px rgba(217, 121, 65, .45);

  }

  .cursor-hover {



    background: rgba(217, 121, 65, 0);

    border-color: var(--primary);

    box-shadow:
      0 20px 45px rgba(217, 121, 65, .20);

  }

}




/*==================================
        WHATSAPP FLOAT
===================================*/

.wa-float{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:9999;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 20px;

    border-radius:60px;

    background:linear-gradient(135deg,#25D366,#1EBE5D);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    box-shadow:
        0 15px 35px rgba(37,211,102,.35);

    transition:all .35s ease;

    animation:waPulse 2.5s infinite;
}

.wa-float:hover{

    color:#fff;

    transform:translateY(-5px) scale(1.03);

    box-shadow:
        0 20px 45px rgba(37,211,102,.45);
}

.wa-float i{

    font-size:24px;

    line-height:1;
}

.wa-float span{

    white-space:nowrap;
}

@keyframes waPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* Mobile */

@media(max-width:767px){

    .wa-float{

        right:16px;

        bottom:16px;

        padding:14px;

        width:58px;

        height:58px;

        justify-content:center;

        border-radius:50%;
    }

    .wa-float span{

        display:none;
    }

    .wa-float i{

        font-size:28px;
    }

}