/* ============================================
   LUMIÈRE BEAUTY SALON – style.css
   Template style: Cunnet Digital Light Clone
   ============================================ */

:root {
  --primary:       #c9a96e;   /* warm gold */
  --primary-dark:  #a8834a;
  --primary-light: #fdf6ec;
  --secondary:     #e8b4b8;   /* blush pink */
  --accent:        #8b5e83;   /* mauve */
  --dark:          #1a1410;
  --body-bg:       #fdfaf6;
  --white:         #ffffff;
  --text:          #2c2118;
  --text-muted:    #7a6a5a;
  --border:        #ede5d8;
  --card-bg:       #ffffff;
  --shadow-sm:     0 2px 12px rgba(201,169,110,0.10);
  --shadow-md:     0 8px 32px rgba(201,169,110,0.16);
  --shadow-lg:     0 24px 72px rgba(201,169,110,0.18);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
  --transition:    0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --font:          'Poppins', sans-serif;
  --font-serif:    'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: initial; overflow-x: hidden; } /* Disabled smooth for Lenis */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--body-bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
@media (pointer: fine) { body { cursor: none; } }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
ul { list-style: none; padding: 0; margin: 0; }
.section-pad { padding: 120px 0; }

/* ---- CUSTOM CURSOR ---- */
.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0; pointer-events: none;
  border-radius: 50%; z-index: 999999;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--primary); }
.cursor-outline {
  width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.5);
  transition: width 0.2s cubic-bezier(0.25, 1, 0.5, 1), height 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s;
}
.cursor-outline.hover {
  width: 70px; height: 70px; background: rgba(201,169,110,0.08); border-color: transparent;
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- PAGE LOADER ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }

/* ---- DIORETTE NATIVE LOGO ---- */
.diorette-brand-nav {
  display: flex; align-items: center; gap: 12px;
  color: var(--text) !important; text-decoration: none;
  transition: transform var(--transition);
}
.d-logo-icon { width: 44px; height: 44px; color: var(--white); transition: color 0.4s ease; }
.d-logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.d-title { font-family: var(--font-sans); font-size: 25px; font-weight: 500; letter-spacing: 5px; color: var(--white); margin-bottom: 4px; transition: color 0.4s ease; }
.d-subtitle { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: 7px; color: var(--white); margin-left: 2px; transition: color 0.4s ease; }

#navbar.scrolled .d-logo-icon,
#navbar.scrolled .d-title,
#navbar.scrolled .d-subtitle { color: var(--text); }

.diorette-brand-loader {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--text); margin-bottom: 24px;
  animation: pulseLogo 2.5s infinite ease-in-out;
}
.d-logo-icon-loader { width: 68px; height: 68px; color: var(--primary); }
.d-logo-text-loader { display: flex; flex-direction: column; align-items: center; line-height: 1; text-align: center; }
.d-logo-text-loader .d-title { font-family: var(--font-sans); font-size: 38px; font-weight: 500; letter-spacing: 7px; color: var(--primary); margin-bottom: 8px; }
.d-logo-text-loader .d-subtitle { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 12px; color: var(--primary); margin-left: 6px; }

@keyframes pulseLogo {
  0%, 100% { opacity: 0.8; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes spinDot { to { transform: rotate(360deg); } }
.loader-brand {
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: 6px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
}
.loader-bar {
  width: 160px; height: 2px;
  background: var(--border); border-radius: 99px;
  overflow: hidden; margin: 0 auto;
}
.loader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
  animation: loaderFill 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ---- UTILITIES ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ecdcb4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 16px; border-radius: 99px;
  border: 1px solid rgba(201,169,110,0.25);
}
.section-tag.light { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 700; line-height: 1.2; color: var(--text);
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 560px; margin: 12px auto 0;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 13px 30px; border-radius: 99px;
  font-weight: 600; font-size: 15px; border: none;
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
  transition: var(--transition); position: relative; overflow: hidden;
  animation: btnPulse 3s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(201,169,110,0.35); }
  50% { box-shadow: 0 14px 36px rgba(201,169,110,0.6); }
}
.btn-primary-custom::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg); z-index: 2; pointer-events: none; transition: none;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,169,110,0.5); color: var(--white); }
.btn-primary-custom:hover::after { animation: btnShine 0.7s forwards; }
@keyframes btnShine { 100% { left: 200%; } }
.btn-primary-custom i, .btn-primary-custom span { position: relative; z-index: 1; }

.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  padding: 12px 30px; border-radius: 99px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--primary); transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-white-custom {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--primary);
  padding: 13px 30px; border-radius: 99px;
  font-weight: 700; font-size: 15px; border: none;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white-custom:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.18); color: var(--primary); }

.btn-outline-white-custom {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  padding: 12px 30px; border-radius: 99px;
  font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6); transition: var(--transition);
}
.btn-outline-white-custom:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; width: 100%; top: 0; left: 0;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  padding: 22px 0; box-shadow: none;
  transition: all 0.4s ease;
  z-index: 1050;
}
#navbar.scrolled {
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 4px 24px rgba(201,169,110,0.12);
}
.navbar-brand {
  display: none; /* Hide old class to use diorette-brand-nav directly */
}

.nav-link {
  font-size: 14px; font-weight: 500; color: var(--white) !important;
  padding: 6px 14px !important; border-radius: 8px;
  transition: all 0.4s ease; position: relative;
}

.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: var(--primary); border-radius: 99px;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
#navbar .nav-link:hover, #navbar .nav-link.active { color: var(--primary) !important; }

#navbar.scrolled .nav-link { color: var(--text) !important; }
#navbar.scrolled .nav-link:hover, #navbar.scrolled .nav-link.active { color: var(--primary) !important; }

.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 99px; transition: all 0.4s ease; }
#navbar.scrolled .toggler-icon span { background: var(--text); }
.navbar-toggler { border: none; padding: 4px; background: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ---- HERO SLIDER ---- */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Parallax background layer */
.hero-slide-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1);
  transition: transform 6s linear;
}

/* On mobile keep cover so image fills the screen */
@media (max-width: 991px) {
  .hero-slide-bg {
    background-size: cover;
    background-color: transparent;
  }
}

/* Premium Ken Burns scale on active slide */
.swiper-slide-active .hero-slide-bg {
  transform: scale(1.08) translateY(0) !important;
  transition: transform 8s ease-out;
}

/* Dark gradient overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,20,16,0.72) 0%,
    rgba(26,20,16,0.45) 55%,
    rgba(26,20,16,0.20) 100%
  );
  z-index: 1;
}

/* Slide content */
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 0;
  max-width: 760px;
}
.hero-slide-content .hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}
.hero-slide-content .badge-dot { background: var(--primary); }
.hero-slide-content .hero-title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide-content .hero-desc {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

/* Slide-in animation for active slide content */
.swiper-slide-active .hero-slide-content .hero-badge  { animation: slideUp 0.7s 0.1s both ease; }
.swiper-slide-active .hero-slide-content .hero-title  { animation: slideUp 0.8s 0.25s both ease; }
.swiper-slide-active .hero-slide-content .hero-desc   { animation: slideUp 0.7s 0.4s both ease; }
.swiper-slide-active .hero-slide-content .hero-btns   { animation: slideUp 0.7s 0.55s both ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Outline light button (for dark hero bg) */
.btn-outline-light-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 12px 30px; border-radius: 99px;
  font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.25);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Arrow navigation */
.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: calc(50% + 40px);
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-swiper-prev { left: 28px; }
.hero-swiper-next { right: 28px; }
.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}



/* Pagination dots */
.hero-swiper-pagination {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.45);
  opacity: 1; border-radius: 99px;
  transition: all 0.3s ease;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
}

/* Stats bar moved below hero */
.hero-stats-bar {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1410 100%);
  padding: 48px 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num { font-size: 32px; font-weight: 800; color: #ffffff; line-height: 1; }
.stat-item > span:not(.stat-num) { font-size: 26px; font-weight: 800; color: var(--primary); }
.stat-item p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 4px 0 0; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.2); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 2px; text-transform: uppercase;
  z-index: 10;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.25); overflow: hidden; border-radius: 99px; }
.scroll-line span {
  display: block; width: 100%; height: 50%; background: var(--primary);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Keep old hero vars for typed text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(201,169,110,0); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 24px;
}
.typed-wrap { display: inline-block; min-width: 200px; }
.typed-text { color: var(--primary); }
.typed-cursor {
  display: inline-block; color: var(--primary);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
  font-size: 17px; line-height: 1.8; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- CLIENTS / BRANDS ---- */
.clients-section {
  padding: 48px 0; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px;
}
.clients-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}
.clients-track {
  display: flex; align-items: center; gap: 60px;
  animation: clientsScroll 22s linear infinite; width: max-content;
}
.client-logo { flex-shrink: 0; }
.brand-text {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--text-muted); opacity: 0.5; letter-spacing: 1px;
  transition: opacity 0.3s, color 0.3s; white-space: nowrap;
}
.client-logo:hover .brand-text { opacity: 1; color: var(--primary); }
@keyframes clientsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SERVICES ---- */
.services-section { background: var(--body-bg); }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 0; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%; height: 240px; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.1); }
.service-card-content { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card h4 { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.service-link {
  font-size: 14px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease;
}
.service-link:hover { gap: 10px; }

/* ---- ABOUT ---- */
.about-section { background: var(--white); }
.about-img-wrap { position: relative; display: inline-block; width: 100%; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img { width: 100%; height: 680px; transform: none; object-fit: cover; background: #f5efe6; border-radius: 0; box-shadow: none; }
.about-exp-badge {
  position: absolute; top: 24px; right: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-md);
  text-align: center; border: 1px solid var(--border);
}
.exp-num { display: block; font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
.exp-text { font-size: 12px; color: var(--text-muted); font-weight: 500; line-height: 1.4; }
.about-shape-1 {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid rgba(201,169,110,0.25); border-radius: var(--radius); z-index: -1;
}
.about-shape-2 {
  position: absolute; bottom: -20px; right: 60px;
  width: 80px; height: 80px;
  background: var(--primary-light); border-radius: 50%; z-index: -1;
}
.about-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin: 16px 0 28px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  width: 36px; height: 36px; background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 14px; flex-shrink: 0; margin-top: 2px;
}
.about-feat-item h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.about-feat-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---- FEATURES ---- */
.features-section { background: var(--body-bg); }
.feat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  transition: var(--transition); height: 100%;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,0.3); }
.feat-card--alt { background: var(--primary-light); border-color: transparent; }
.feat-card--alt:hover { background: var(--white); border-color: rgba(201,169,110,0.3); }
.feat-card-icon {
  width: 48px; height: 48px; background: var(--primary-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--primary);
  margin-bottom: 16px; transition: var(--transition);
}
.feat-card--alt .feat-card-icon { background: var(--white); }
.feat-card:hover .feat-card-icon { background: var(--primary); color: var(--white); }
.feat-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feat-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ---- PORTFOLIO / GALLERY ---- */
.portfolio-section { background: var(--white); }
.portfolio-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px; border-radius: 99px;
  border: 1.5px solid var(--border); background: transparent;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: var(--transition); font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.port-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: none; }
.port-card img { width: 100%; height: 380px; transform: none; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,1,0.5,1), filter 0.6s ease; display: block; }
.port-card:hover img { transform: scale(1.04); filter: blur(3px) brightness(0.65); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity 0.4s ease;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-cat { font-size: 12px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.port-overlay h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--white); margin: 0; }
.port-link {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 14px;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.port-card:hover .port-link { transform: scale(1) rotate(0deg); }
.port-item.hidden { display: none; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--body-bg); }
.testimonials-swiper { padding-bottom: 48px !important; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--border);
  height: 100%; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.testi-stars { color: var(--primary); font-size: 14px; display: flex; gap: 3px; }
.testi-platform { font-size: 11px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(201,169,110,0.15); padding: 4px 10px; border-radius: 99px; background: rgba(201,169,110,0.03); }
.testi-platform i { color: var(--primary) !important; font-size: 13px; }
.testi-review-img { width: 100%; height: 260px; overflow: hidden; border-radius: 12px; margin-bottom: 20px; }
.testi-review-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.testi-card:hover .testi-review-img img { transform: scale(1.06); }
.testi-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .author-initials { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; border: 1px solid rgba(201,169,110,0.2); }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); }
.testi-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); }
.testi-author span { font-size: 13px; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--border); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 99px; }

/* ---- TEAM ---- */
.team-section { background: var(--white); }
.team-card { text-align: center; }
.team-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.team-img-wrap img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-socials {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(201,169,110,0.92), transparent);
  display: flex; justify-content: center; gap: 12px;
  padding: 20px 16px 16px;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.team-card:hover .team-socials { transform: translateY(0); }
.team-socials a {
  width: 36px; height: 36px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 14px; transition: var(--transition);
}
.team-socials a:hover { background: var(--primary); color: var(--white); }
.team-info h5 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ---- CONTACT ---- */
.contact-section { background: var(--white); }
.contact-info-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1410 100%);
  color: var(--white);
  padding: 48px 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; height: 100%;
}
.contact-info-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 250px; height: 250px; background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px;
}
.detail-icon {
  width: 44px; height: 44px; background: rgba(201,169,110,0.12);
  color: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: var(--transition);
}
.contact-detail-item:hover .detail-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.contact-detail-item h6 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: rgba(255,255,255,0.95); }
.contact-detail-item p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }

.contact-form-premium {
  background: var(--body-bg); padding: 48px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); height: 100%;
}
.form-floating-custom { position: relative; }
.form-floating-custom .form-control {
  background: var(--white); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text); transition: var(--transition);
  box-shadow: none;
}
.form-floating-custom .form-control:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.1); outline: none;
}
.form-floating-custom label {
  position: absolute; left: 20px; top: 18px;
  font-size: 14px; color: var(--text-muted);
  pointer-events: none; transition: var(--transition);
}
.form-floating-custom .form-control:focus ~ label,
.form-floating-custom .form-control:not(:placeholder-shown) ~ label {
  top: -10px; left: 14px; font-size: 12px;
  background: var(--white); padding: 0 6px; color: var(--primary); font-weight: 600; border-radius: 4px;
}
.form-floating-custom textarea.form-control { min-height: 140px; resize: none; }
.select-custom::after {
  content: '\f107'; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.select-custom select { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* ---- FAQ ---- */
.faq-section { background: var(--body-bg); }
.faq-contact { display: flex; flex-direction: column; gap: 16px; }
.faq-contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; background: var(--white);
  border-radius: 16px; border: none;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.faq-contact-item:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(201,169,110,0.12); }
.faq-contact-icon {
  width: 48px; height: 48px; background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.faq-contact-item span { font-size: 13px; color: var(--text-muted); display: block; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px;}
.faq-contact-item strong { font-size: 15px; font-weight: 700; color: var(--text); }

.faq-accordion .accordion-item {
  border: 1px solid rgba(201,169,110,0.15); border-radius: 12px !important;
  margin-bottom: 16px; overflow: hidden; background: var(--white);
  transition: var(--transition);
}
.faq-accordion .accordion-item:hover {
  box-shadow: 0 8px 24px rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-2px);
}
.faq-accordion .accordion-button {
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--text); background: transparent; padding: 22px 28px; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary); background: transparent; box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a96e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { font-size: 15px; color: var(--text-muted); padding: 0 28px 24px; line-height: 1.8; }

/* ---- CTA / BOOKING ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-dark) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 { position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.06); border-radius: 50%; top: -200px; right: -100px; }
.cta-shape-2 { position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.04); border-radius: 50%; bottom: -100px; left: -50px; }
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  color: var(--white); line-height: 1.2; margin: 12px 0 16px;
}
.gradient-text-light {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 480px; }

/* ---- FOOTER ---- */
.footer-section { background: var(--dark); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-top { padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 6px; }
.footer-brand .brand-icon { color: var(--primary); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter-text { font-size: 14px; color: rgba(255,255,255,0.5); }
.newsletter-input-wrap {
  display: flex; background: rgba(255,255,255,0.08);
  border-radius: 99px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-input-wrap input {
  flex: 1; background: transparent; border: none;
  padding: 12px 20px; font-size: 14px; color: var(--white);
  font-family: var(--font); outline: none;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input-wrap button {
  background: var(--primary); border: none; padding: 12px 20px;
  color: var(--white); cursor: pointer; font-size: 16px; transition: background 0.3s;
}
.newsletter-input-wrap button:hover { background: var(--primary-dark); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; align-items: center; }
.footer-contact i { color: var(--primary); }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom p a { color: var(--primary); font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom p a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom p i { color: var(--secondary); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- WHATSAPP FLOAT ---- */
.chat-float-btn {
  position: fixed; bottom: 32px; right: 32px;
  width: 54px; height: 54px; background: #25d366;
  color: #fff !important; border-radius: 50%; border: none;
  font-size: 28px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99999;
  text-decoration: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.chat-float-btn i { z-index: 1; pointer-events: none; }
.chat-float-btn:hover {
  background: #128c7e; color: #fff !important;
  transform: translateY(-4px); box-shadow: 0 12px 28px rgba(37,211,102,0.5);
}

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed; bottom: 32px; left: 32px;
  width: 48px; height: 48px; background: var(--primary);
  color: var(--white); border: none; border-radius: 50%;
  font-size: 16px; cursor: none;
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--transition); z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- GALLERY LIGHTBOX ---- */
.g-lightbox {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(10,8,6,0.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.g-lightbox.active { opacity: 1; visibility: visible; }
.g-lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 900px;
  max-height: 78vh; padding: 0 80px;
}
.g-lb-img-wrap img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}
.g-lb-img-wrap img.fading { opacity: 0; }
.g-lb-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.g-lb-close:hover { background: var(--primary); border-color: var(--primary); }
.g-lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; z-index: 2;
}
.g-lb-arrow:hover { background: var(--primary); border-color: var(--primary); }
.g-lb-prev { left: 20px; }
.g-lb-next { right: 20px; }
.g-lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.g-lb-next:hover { transform: translateY(-50%) scale(1.08); }
.g-lb-caption {
  margin-top: 20px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.g-lb-caption span:first-child {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
}
.g-lb-caption strong {
  font-family: var(--font-serif); font-size: 18px; color: #fff;
}
.g-lb-caption #lbCounter {
  font-size: 12px; color: rgba(255,255,255,0.4);
}
@media (max-width: 767px) {
  .g-lb-img-wrap { padding: 0 56px; }
  .g-lb-prev { left: 8px; }
  .g-lb-next { right: 8px; }
  .g-lb-arrow { width: 40px; height: 40px; font-size: 14px; }
}

/* ---- NAV MORE DROPDOWN ---- */
.nav-more-dropdown { display: none; }
@media (min-width: 992px) { .nav-more-dropdown { display: flex; } }
.nav-more-menu {
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 180px;
}
.nav-more-menu .dropdown-item {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 9px 20px; transition: color 0.2s, background 0.2s;
}
.nav-more-menu .dropdown-item:hover, 
.nav-more-menu .dropdown-item:focus,
.nav-more-menu .dropdown-item.active,
.nav-more-menu .dropdown-item:active {
  background: var(--primary) !important; color: var(--white) !important;
}


/* ---- GSAP INITIAL STATES ---- */
[data-gsap] { opacity: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-8px) scale(1); }
  .hero-swiper-prev { left: 14px; }
  .hero-swiper-next { right: 14px; }
  .hero-swiper-prev, .hero-swiper-next { width: 42px; height: 42px; font-size: 14px; }
  .hero-stats { gap: 24px; }
  .about-exp-badge { right: 0; }
  .navbar-collapse {
    background: rgba(253,250,246,0.98); backdrop-filter: blur(20px);
    border-radius: var(--radius); padding: 20px; margin-top: 12px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
  }
  .navbar-collapse .nav-link {
    color: var(--text) !important;
  }
  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: var(--primary) !important;
  }
}
@media (max-width: 767px) {
  .section-pad { padding: 75px 0; }
  .hero-slider-section, .hero-swiper .swiper-slide { height: 100svh; min-height: 520px; }
  .hero-slide-bg { background-position: center 25%; } /* Focus on faces/top of image */
  .hero-slide-content { padding-top: 0; padding-bottom: 0; }
  .hero-title { font-size: clamp(34px, 8vw, 42px); line-height: 1.15; }
  .hero-desc { font-size: 15px; margin-bottom: 24px; }
  .hero-stats { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 10px;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .stat-item .stat-num { font-size: 24px; }
  .stat-item > span:not(.stat-num) { font-size: 20px; }
  
  /* Restoring arrows on mobile - better positioned */
  .hero-swiper-prev, .hero-swiper-next { 
    display: flex; top: auto; bottom: 90px;
    transform: none;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.15);
  }
  .hero-swiper-prev:hover, .hero-swiper-next:hover {
    transform: scale(1.05);
  }
  .hero-swiper-prev:active, .hero-swiper-next:active {
    transform: scale(0.95);
  }
  .hero-swiper-prev { left: 12px; }
  .hero-swiper-next { right: 12px; }
  
  .hero-swiper-pagination { bottom: 65px; }
  .hero-scroll-hint { display: none; }
  .about-img { height: 380px; }
  .about-exp-badge { top: 16px; right: 16px; padding: 16px 20px; }
  .exp-num { font-size: 28px; }
  .port-card img { height: 320px; object-fit: cover; }
  .cta-section { padding: 80px 0; text-align: center; }
  .cta-title { font-size: 32px; }
  .cta-sub { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  #back-to-top { bottom: 20px; left: 20px; }
  
  /* Pricing Mobile Edits */
  .pricing-badge { right: -42px; top: 22px; }
  .pricing-card { padding: 32px 24px; }
  
  .chat-float-btn { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 24px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-light-custom { width: 100%; justify-content: center; }
  .hero-stats-bar { padding: 30px 0; }
}

/* ---- PREMIUM INNER HERO ---- */
.inner-hero {
  padding-top: 220px;
  padding-bottom: 120px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.inner-hero-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
  filter: blur(2px) grayscale(20%);
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.6) 0%, rgba(26,20,16,0.98) 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .inner-hero { padding-top: 150px; padding-bottom: 80px; }
  .inner-hero-bg { background-attachment: scroll; filter: blur(0px) } 
}
