:root {
  --violet:    #7c3aed;
  --violet-d:  #5b21b6;
  --violet-l:  #a855f7;
  --blue:      #2563eb;
  --cyan:      #06b6d4;
  --grad:      linear-gradient(135deg, #2563eb, #7c3aed, #06b6d4);
  --grad-v:    linear-gradient(135deg, #5b21b6, #7c3aed, #a855f7);
  --midnight:  #0b0d1a;
  --deep:      #0f1128;
  --surface:   rgba(20,15,50,0.72);
  --surface2:  rgba(30,20,70,0.6);
  --border:    rgba(124,58,237,0.22);
  --border-h:  rgba(124,58,237,0.55);
  --snow:      #f0f4ff;
  --text:      rgba(220,210,255,0.9);
  --text-dim:  rgba(180,165,230,0.7);
  --white:     #ffffff;
  --gold:      #f0c040;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--midnight);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(37,99,235,0.1) 0%, transparent 60%);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--grad-v); border-radius: 10px; }

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 10000;
  background: var(--grad);
  transition: width .1s ease-out;
  box-shadow: 0 0 10px rgba(124,58,237,0.8);
}

/* SNOW CANVAS */
#snow-canvas {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 2; opacity: 0.65;
}

/* ======================== TOP BAR ======================== */
.top-bar {
  position: relative; z-index: 100;
  background: rgba(11,13,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.25);
  padding: 10px 28px;
  display: flex; align-items: center; gap: 20px;
  font-size: 13px; font-weight: 500; color: var(--text-dim);
}
.top-bar a { color: var(--text-dim); text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-contact { flex: 1; display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-contact span { display: flex; align-items: center; gap: 6px; }
.top-bar-social { display: flex; align-items: center; gap: 14px; }
.top-bar-social a {
  color: var(--white); font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.top-bar-social a:hover { color: var(--violet-l); }
@media(max-width:768px){ .top-bar-social{ display:none; } }

/* ======================== HEADER ======================== */
header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(11,13,26,0.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(124,58,237,0.18);
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  isolation: isolate;
}
.logo-img {
  height: 44px; width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(124,58,237,0.5)) brightness(1.05);
  transition: filter .3s, transform .3s;
  background: transparent;
}
.logo-img:hover {
  filter: drop-shadow(0 0 22px rgba(167,107,251,0.85)) brightness(1.12);
  transform: scale(1.04);
}
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.desktop-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.desktop-nav ul li a {
  color: var(--text-dim); text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 999px; transition: all .22s;
}
.desktop-nav ul li a:hover, .desktop-nav ul li a.active { background: rgba(124,58,237,0.18); color: var(--white); }
.desktop-nav ul li a.active { color: var(--violet-l); background: transparent; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: var(--white) !important;
  font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 10px 28px rgba(124,58,237,0.4);
  transition: all .3s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(124,58,237,0.55); }
#hamburger-btn {
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3);
  color: var(--violet-l); padding: 9px; border-radius: 12px; cursor: pointer;
  display: none; align-items: center; justify-content: center; transition: all .22s;
}
#hamburger-btn:hover { background: rgba(124,58,237,0.25); }
@media(max-width:900px){ .desktop-nav{display:none} .header-cta{display:none} #hamburger-btn{display:flex} }

/* ======================== MOBILE MENU ======================== */
#mobile-menu {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,13,26,0.75); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease; display: flex !important; justify-content: flex-end;
}
#mobile-menu.hidden { display: none !important; }
#mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-panel {
  width: min(85vw,340px); height: 100%;
  background: linear-gradient(180deg, #0f1128, #1a0d3d 55%, #2d1a6e);
  padding: 28px 22px; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; box-shadow: -30px 0 80px rgba(0,0,0,0.6);
  border-left: 1px solid rgba(124,58,237,0.2);
}
#mobile-menu.active .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(124,58,237,0.25);
}
.mobile-menu-brand { font-family:'Outfit',sans-serif; font-weight:800; color:var(--white); display:flex; align-items:center; gap:8px; }
.mobile-menu-brand i { color: var(--violet-l); }
.mobile-menu-close {
  background: rgba(124,58,237,0.12) !important; border: 1px solid rgba(124,58,237,0.3) !important;
  color: var(--white) !important; width: 38px !important; height: 38px !important;
  border-radius: 50% !important; padding: 0 !important;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu-nav a {
  display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85) !important;
  text-decoration: none; font-weight: 600; font-size: .97rem;
  padding: 13px 15px !important; border-radius: 14px !important;
  background: rgba(124,58,237,0.08) !important; border: 1px solid rgba(124,58,237,0.15) !important;
  transition: all .22s ease;
}
.mobile-menu-nav a:hover { background: rgba(124,58,237,0.22) !important; color: var(--white) !important; transform: translateX(4px); }
.mobile-menu-cta { background: linear-gradient(135deg,var(--violet),var(--blue)) !important; justify-content: center !important; }
.mobile-submenu-toggle {
  display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: .97rem; padding: 13px 15px;
  border-radius: 14px; background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15); cursor: pointer; width: 100%;
  justify-content: space-between; font-family: inherit;
}
.mobile-submenu-toggle .fa-chevron-down { transition: transform .3s ease; }
.mobile-submenu {
  list-style: none; margin: 4px 0 4px 12px; padding: 4px 0 4px 16px;
  border-left: 2px solid rgba(124,58,237,0.35); display: flex; flex-direction: column; gap: 2px;
}
.mobile-submenu li a { font-weight: 500 !important; font-size: .87rem; padding: 9px 12px !important; background: transparent !important; border-color: transparent !important; }

/* ======================== STARS ======================== */
.stars { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.star { position: absolute; background: #fff; border-radius: 50%; animation: twinkle linear infinite; }
@keyframes twinkle {
  0%,100%{opacity:0.1;transform:scale(1);}
  50%{opacity:0.75;transform:scale(1.5);}
}

/* ======================== HERO ======================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #0b0d1a 0%, #100c26 100%);
  padding: 56px 0 40px;
}
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(124,58,237,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 85% 60%, rgba(37,99,235,0.1) 0%, transparent 55%);
}
.hero-wrap {
  position: relative; z-index: 5; max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 5; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.14); border: 1px solid rgba(167,107,251,0.4);
  backdrop-filter: blur(8px); padding: 8px 20px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; color: var(--violet-l);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.1rem,3.6vw,3.1rem);
  font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 20px;
}
.hero h1 .brand-hl {
  display: block;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem; color: var(--text);
  max-width: 540px; margin: 0 0 32px; line-height: 1.75;
}
.hero-sub strong { color: var(--white); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: var(--white) !important;
  font-weight: 700; font-size: .95rem; padding: 15px 30px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 12px 35px rgba(124,58,237,0.45);
  transition: all .3s ease;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(124,58,237,0.6); filter: brightness(1.08); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white) !important;
  font-weight: 700; font-size: .95rem; padding: 15px 30px; border-radius: 999px;
  text-decoration: none; border: 1.5px solid rgba(167,107,251,0.5);
  backdrop-filter: blur(10px); transition: all .3s ease;
}
.btn-secondary:hover { background: rgba(124,58,237,0.18); border-color: var(--violet-l); transform: translateY(-4px); }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.hero-badge-float {
  position: absolute; top: -18px; right: 24px;
  background: rgba(15,10,35,0.85); border: 1px solid var(--border-h);
  backdrop-filter: blur(14px); border-radius: 16px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.hero-badge-float .hb-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .95rem; flex-shrink: 0;
}
.hero-badge-float strong { display: block; color: var(--white); font-size: .85rem; font-weight: 700; }
.hero-badge-float span { display: block; color: var(--text-dim); font-size: .74rem; }
.hero-scroll-indicator {
  position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  color: var(--violet-l); font-size: 1.3rem; opacity: .8;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* HERO STATS BAR */
.hero-stats-bar {
  position: relative; z-index: 4; max-width: 1320px; margin: 56px auto 0; padding: 0 32px;
}
.hero-stats-inner {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  backdrop-filter: blur(20px); padding: 30px 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.hero-stat-item { flex: 1; min-width: 140px; display: flex; align-items: center; gap: 14px; justify-content: center; }
.hero-stat-item i {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.14); border: 1px solid var(--border-h);
  color: var(--violet-l); font-size: 1.15rem;
}
.hero-stat-item strong {
  display: block; font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white);
}
.hero-stat-item span { display: block; font-size: .76rem; color: var(--text-dim); font-weight: 600; }
@media(max-width:1100px){ .hero-wrap{ grid-template-columns: 1fr; } .hero-media{order:-1;} .hero-media img{height:340px;} }
@media(max-width:640px){ .hero-stats-inner{ flex-direction: column; } .hero-stat-item{ justify-content:flex-start; } }

/* ======================== SECTIONS ======================== */
.section-wrap { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px; backdrop-filter: blur(22px);
  padding: 60px 52px; margin: 40px 0;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(124,58,237,0.1);
  position: relative; overflow: hidden;
}
.section-glass::before {
  content:''; position:absolute; top:-80px; right:-80px; width:220px; height:220px;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
  pointer-events: none;
}
.section-glass::after {
  content:''; position:absolute; bottom:-60px; left:-60px; width:160px; height:160px;
  background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
  pointer-events: none;
}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 8px;
}
.section-title .acc { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--text-dim); font-size: .95rem; margin-bottom: 36px; }
.section-divider {
  width: 60px; height: 3px; background: var(--grad-v); border-radius: 2px;
  margin: 14px 0 36px; box-shadow: 0 0 14px rgba(124,58,237,0.55);
}

/* ======================== ABOUT ======================== */
.about-text p { color: var(--text); font-size: 1rem; line-height: 1.85; margin-bottom: 18px; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 0.7fr; gap: 30px; align-items: stretch;
}
.about-media { position: relative; border-radius: 24px; overflow: hidden; min-height: 320px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
  box-shadow: 0 10px 35px rgba(124,58,237,0.55); border: 3px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: transform .3s;
}
.about-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.about-media-caption {
  position: absolute; left: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px;
  background: rgba(11,13,26,0.7); backdrop-filter: blur(6px); border-radius: 10px;
  padding: 7px 12px; font-size: .78rem; color: var(--text); font-weight: 600;
}
.about-eyebrow {
  color: var(--violet-l); font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.about-body h2 {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.5rem,2.6vw,2.1rem);
  color: var(--white); margin-bottom: 16px; line-height: 1.25;
}
.about-body p { color: var(--text); font-size: .95rem; line-height: 1.8; margin-bottom: 20px; }
.about-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.about-checklist li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .92rem; font-weight: 500; }
.about-checklist i {
  width: 22px; height: 22px; border-radius: 50%; background: var(--grad);
  color: #fff; font-size: .68rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white) !important; font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid var(--border-h); transition: all .3s ease;
}
.btn-outline:hover { background: rgba(124,58,237,0.18); transform: translateY(-3px); }
.about-priority-card {
  background: linear-gradient(160deg, rgba(30,20,70,0.85), rgba(20,12,50,0.85));
  border: 1px solid var(--border-h); border-radius: 24px; padding: 34px 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(124,58,237,0.15);
  position: relative;
}
.about-priority-card::after {
  content:''; position:absolute; bottom:-10px; left:15%; right:15%; height:20px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.5), transparent 70%); filter: blur(6px);
}
.about-priority-icon {
  width: 66px; height: 66px; border-radius: 18px; background: rgba(124,58,237,0.16);
  border: 1px solid var(--border-h); display: flex; align-items: center; justify-content: center;
  color: var(--violet-l); font-size: 1.6rem; margin-bottom: 20px;
}
.about-priority-card h3 { font-family: 'Outfit', sans-serif; color: var(--white); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.about-priority-card p { color: var(--text-dim); font-size: .85rem; line-height: 1.6; }
@media(max-width:1024px){ .about-grid{ grid-template-columns: 1fr; } .about-media{ min-height:260px; } }

/* ======================== SERVICES ======================== */
.services-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.services-header .about-eyebrow { justify-content: center; }
.services-header h2 {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.6rem,3vw,2.3rem);
  color: var(--white); line-height: 1.3;
}
.photo-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 22px; }
.photo-service-card {
  background: rgba(20,12,50,0.7); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; transition: all .35s ease;
}
.photo-service-card:hover { transform: translateY(-8px); border-color: var(--border-h); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.photo-service-thumb { position: relative; height: 160px; overflow: hidden; }
.photo-service-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.photo-service-card:hover .photo-service-thumb img { transform: scale(1.08); }
.photo-service-icon {
  position: absolute; left: 18px; bottom: -22px; width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4); border: 3px solid rgba(15,10,30,0.9);
}
.photo-service-body { padding: 34px 20px 24px; }
.photo-service-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--white); margin-bottom: 8px; }
.photo-service-body p { color: var(--text-dim); font-size: .85rem; line-height: 1.6; }
.services-more-btn { text-align: center; margin-top: 38px; }

/* FEATURES STRIP */
.features-strip {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  backdrop-filter: blur(20px); padding: 34px 30px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.feature-strip-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-strip-item i.fs-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  background: rgba(124,58,237,0.14); border: 1px solid var(--border-h); color: var(--violet-l);
}
.feature-strip-item h4 { font-family: 'Outfit', sans-serif; color: var(--white); font-size: .98rem; font-weight: 700; margin-bottom: 5px; }
.feature-strip-item p { color: var(--text-dim); font-size: .82rem; line-height: 1.5; }
@media(max-width:900px){ .features-strip{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:520px){ .features-strip{ grid-template-columns: 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.service-item {
  background: rgba(20,12,50,0.7); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 28px 30px;
  transition: all .35s ease; position: relative; overflow: hidden; backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.service-item:hover { transform: translateY(-10px); border-color: var(--border-h); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.12); }
.service-icon-circle {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.55rem; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35); transition: transform .3s;
}
.service-item:hover .service-icon-circle { transform: rotate(-6deg) scale(1.1); }
.svc-1{background:linear-gradient(135deg,#2563eb,#1d4ed8);}
.svc-2{background:linear-gradient(135deg,#7c3aed,#6d28d9);}
.svc-3{background:linear-gradient(135deg,#06b6d4,#0891b2);}
.svc-4{background:linear-gradient(135deg,#22c55e,#16a34a);}
.svc-5{background:linear-gradient(135deg,#f59e0b,#d97706);}
.svc-6{background:linear-gradient(135deg,#ec4899,#db2777);}
.service-item h3 { font-family:'Outfit',sans-serif; font-weight:700; font-size:1.1rem; color:var(--white); margin-bottom:10px; }
.service-item p { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }

/* ======================== PRICING ======================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(175px,1fr)); gap: 20px; margin-top: 32px; }
.price-card {
  position: relative; background: rgba(20,12,50,0.7); border: 1px solid var(--border);
  border-radius: 26px; padding: 34px 20px 28px; text-align: center;
  transition: all .35s ease; overflow: hidden; backdrop-filter: blur(10px);
}
.price-card::before {
  content:''; position:absolute; top:-60px; right:-60px; width:140px; height:140px;
  border-radius:50%; background: var(--grad); opacity:.07;
}
.price-card:hover { transform: translateY(-10px) scale(1.03); border-color: var(--border-h); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 25px rgba(124,58,237,0.15); }
.price-card-devis { border: 1.5px dashed rgba(240,192,64,0.35); }
.typ-icon {
  width:54px; height:54px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; background: var(--grad); color:#fff; font-size:1.3rem;
}
.price-card-devis .typ-icon { background: linear-gradient(135deg,#06b6d4,#7c3aed); }
.price-card h3 { font-family:'Outfit',sans-serif; font-size:1.15rem; font-weight:800; color:var(--white); margin-bottom:8px; }
.price {
  font-family:'Outfit',sans-serif; font-size:2.3rem; font-weight:900; line-height:1;
  background: var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  margin-bottom:6px;
}
.price-devis { font-size:1.4rem !important; background: linear-gradient(135deg,#f0c040,#f59e0b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.price-cta {
  display:inline-block; margin-top:18px; width:100%; padding:11px 0 !important;
  border-radius:999px !important; background: var(--grad) !important;
  color:#fff !important; font-weight:700 !important; font-size:.88rem;
  cursor:pointer; border:none !important; transition:all .25s ease;
  box-shadow: 0 8px 20px rgba(124,58,237,0.35);
}
.price-cta:hover { filter:brightness(1.1); transform:translateY(-3px); box-shadow: 0 12px 30px rgba(124,58,237,0.5); }
.price-note { margin-top:24px; color:var(--text-dim); font-size:.88rem; text-align:center; }

/* ======================== RESERVATION ======================== */
.reservation-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media(max-width:768px){.reservation-grid{grid-template-columns:1fr;}}
.reservation-pitch h2 { font-family:'Outfit',sans-serif; font-size:1.65rem; font-weight:800; color:var(--white); margin-bottom:14px; text-align:left !important; }
.reservation-pitch > p { color:var(--text-dim); font-size:.95rem; line-height:1.7; margin-bottom:22px; }
.reservation-pitch ul { list-style:none; padding:0; margin:0 0 22px; display:flex; flex-direction:column; gap:12px; }
.reservation-pitch li { display:flex; gap:10px; align-items:flex-start; color:var(--text); font-size:.95rem; }
.reservation-pitch li i { color:var(--violet-l); margin-top:3px; flex-shrink:0; }
.reservation-pitch a { color:var(--violet-l); font-weight:700; text-decoration:none; }
.reservation-card {
  background: rgba(15,8,40,0.8); border: 1px solid var(--border);
  border-radius:28px; padding:36px 32px;
  backdrop-filter:blur(22px); box-shadow:0 25px 60px rgba(0,0,0,0.4);
}
.reservation-card .field { margin-bottom:16px; }
.reservation-card label {
  font-size:.76rem; font-weight:700; color:var(--text-dim);
  margin-bottom:6px; display:block; letter-spacing:.06em; text-transform:uppercase;
}
.reservation-card input, .reservation-card select, .reservation-card textarea {
  width:100%; background:rgba(11,13,26,0.7) !important;
  border:1px solid rgba(124,58,237,0.22) !important;
  border-radius:14px !important; padding:13px 16px !important;
  color:var(--white) !important; font-size:.93rem; font-family:'Inter',sans-serif;
  transition:border-color .25s, box-shadow .25s;
}
.reservation-card input:focus, .reservation-card select:focus, .reservation-card textarea:focus {
  outline:none !important;
  border-color:rgba(124,58,237,0.6) !important;
  box-shadow:0 0 0 3px rgba(124,58,237,0.12), 0 0 16px rgba(124,58,237,0.1) !important;
}
.reservation-card select option { background:var(--deep); color:var(--white); }
.form-row.cols-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:520px){.form-row.cols-2{grid-template-columns:1fr;}}
#reservation-submit {
  width:100%; padding:15px; border-radius:999px;
  background: var(--grad) !important; color:var(--white) !important;
  font-weight:800 !important; font-size:1rem; border:none !important; cursor:pointer;
  box-shadow:0 10px 30px rgba(124,58,237,0.4); transition:all .3s;
}
#reservation-submit:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(124,58,237,0.55); filter:brightness(1.07); }
#reservation-success { text-align:center; padding:30px 10px; }
#reservation-success i { font-size:2.8rem; color:#22c55e; margin-bottom:14px; display:block; }
#reservation-success h3 { font-family:'Outfit',sans-serif; font-size:1.3rem; font-weight:800; color:var(--white); margin-bottom:10px; }
#reservation-success p { color:var(--text-dim); font-size:.93rem; }
.hidden-form { display:none !important; }

/* ======================== ZONES ======================== */
.zones-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:22px; }
.zone-card {
  background:rgba(20,12,50,0.6); border:1px solid var(--border);
  border-radius:18px; padding:24px 20px; transition:all .3s;
}
.zone-card:hover { border-color:var(--border-h); transform:translateY(-4px); }
.zone-card h3 { font-family:'Outfit',sans-serif; color:var(--violet-l); font-weight:700; font-size:1rem; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.zone-card ul { list-style:none; }
.zone-card li {
  color:var(--text-dim); font-size:.88rem; padding:5px 0;
  border-bottom:1px solid rgba(124,58,237,0.08);
  display:flex; align-items:center; gap:6px;
}
.zone-card li::before { content:'❄'; font-size:.7rem; color:var(--violet-l); }

/* ======================== MAP ======================== */
#map { height:320px; border-radius:18px; overflow:hidden; border:1px solid var(--border); box-shadow:0 16px 40px rgba(0,0,0,0.45); margin-bottom:20px; }
.map-address { text-align:center; color:var(--text-dim); font-size:.9rem; }
.map-address a { color:var(--violet-l); text-decoration:none; }

/* ======================== TESTIMONIALS ======================== */
.temo-container { overflow:hidden; }
.temo-track { display:flex; transition:transform .5s ease; }
.testimonial { flex-shrink:0; width:100%; padding:5px; }
@media(min-width:640px){.testimonial{width:50%;}}
@media(min-width:1024px){.testimonial{width:33.333%;}}
.temo-inner {
  background:rgba(20,12,50,0.7); border:1px solid var(--border);
  border-radius:20px; padding:28px 24px; transition:all .3s; height:100%;
}
.temo-inner:hover { border-color:var(--border-h); transform:translateY(-4px); }
.temo-stars { color:var(--gold); font-size:.9rem; margin-bottom:12px; }
.temo-text { color:var(--text); font-size:.93rem; line-height:1.65; font-style:italic; margin-bottom:16px; }
.temo-author { background:var(--grad-v); -webkit-background-clip:text; -webkit-text-fill-color:transparent; font-weight:700; font-size:.9rem; }
.temo-nav { display:flex; justify-content:center; gap:14px; margin-top:24px; }
.temo-btn {
  width:44px; height:44px; border-radius:50%;
  background:rgba(124,58,237,0.15); border:1px solid rgba(124,58,237,0.3);
  color:var(--violet-l); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .25s;
}
.temo-btn:hover { background:var(--violet); color:var(--white); border-color:var(--violet); transform:translateY(-3px); }

/* ======================== FAQ ======================== */
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item {
  background:rgba(20,12,50,0.55); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; cursor:pointer; transition:border-color .25s;
}
.faq-item:hover, .faq-item[open] { border-color:var(--border-h); }
.faq-item summary {
  padding:20px 24px; font-weight:700; font-size:.97rem; color:var(--white);
  display:flex; justify-content:space-between; align-items:center; gap:12px; list-style:none;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary i { color:var(--violet-l); transition:transform .3s; flex-shrink:0; }
.faq-item[open] summary i { transform:rotate(180deg); }
.faq-item p { padding:0 24px 20px; color:var(--text-dim); font-size:.93rem; line-height:1.65; }
.faq-item a { color:var(--violet-l); text-decoration:underline; }

/* ======================== FOOTER ======================== */
footer {
  background:rgba(6,5,18,0.98); border-top:1px solid rgba(124,58,237,0.2);
  padding:52px 0 32px; position:relative; overflow:hidden;
}
footer::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(124,58,237,0.04),rgba(37,99,235,0.04));
  pointer-events:none;
}
.footer-inner { max-width:1260px; margin:0 auto; padding:0 24px; text-align:center; }
.footer-copy { color:var(--text-dim); font-size:.85rem; margin-bottom:16px; }
.footer-links { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; margin-bottom:14px; }
.footer-links a { color:var(--text-dim); font-size:.85rem; text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--violet-l); }
.footer-contact { color:var(--text-dim); font-size:.85rem; margin-bottom:18px; }
.footer-contact a { color:var(--violet-l); text-decoration:none; }
.footer-social { margin-bottom:28px; }
.footer-social a { color:var(--text-dim); font-size:1.5rem; transition:color .2s,transform .2s; display:inline-block; }
.footer-social a:hover { color:var(--violet-l); transform:translateY(-3px); }
.footer-partners h4 { color:var(--text-dim); font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:12px; }
.footer-partner-list { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }
.footer-partner-list a, .footer-partner-list span { color:rgba(180,165,230,0.45); font-size:.85rem; text-decoration:none; transition:color .2s; }
.footer-partner-list a:hover { color:var(--violet-l); }

/* ======================== PHONE FLOAT ======================== */
.phone-float {
  position:fixed; bottom:24px; right:24px; z-index:9998;
  width:54px; height:54px; border-radius:50%;
  background: var(--grad);
  color:var(--white); font-size:1.2rem;
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  box-shadow:0 8px 30px rgba(124,58,237,0.5);
  animation:phonePulse 3s ease-in-out infinite;
  transition:transform .25s,box-shadow .25s;
}
.phone-float:hover { transform:scale(1.12); box-shadow:0 14px 40px rgba(124,58,237,0.7); animation:none; }
@keyframes phonePulse {
  0%,100%{box-shadow:0 8px 30px rgba(124,58,237,0.5),0 0 0 0 rgba(124,58,237,0.35);}
  50%{box-shadow:0 8px 30px rgba(124,58,237,0.5),0 0 0 18px rgba(124,58,237,0);}
}

/* ======================== REVEAL ======================== */
.reveal { opacity:1; transform:translateY(0); transition:opacity .7s ease,transform .7s ease; }
.reveal.will-animate { opacity:0; transform:translateY(32px); }
.reveal.in-view { opacity:1 !important; transform:translateY(0) !important; }

/* ======================== MOUNTAIN SEP ======================== */
.mountain-sep { display:block; width:100%; line-height:0; }
.mountain-sep svg { width:100%; display:block; }

/* IMAGE STRIP */
.img-strip {
  width:100%; max-height:200px; object-fit:cover; display:block;
  border-radius:24px; filter:brightness(0.65) saturate(0.75);
  margin:0 auto;
}

@media(max-width:768px){
  .section-glass{padding:36px 22px;}
  .hero h1{font-size:2rem;}
  .hero-logo{height:110px;}
  .hero-stats{gap:28px;}
}

/* ======================== LIVE CHAT ======================== */
#chat-bubble {
  position:fixed; bottom:90px; right:24px; z-index:9997;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#7c3aed,#06b6d4);
  color:#fff; font-size:1.35rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; border:none;
  box-shadow:0 8px 28px rgba(124,58,237,0.55);
  animation:chatPulse 3s ease-in-out infinite;
  transition:transform .25s,box-shadow .25s;
}
#chat-bubble:hover{transform:scale(1.1);animation:none;box-shadow:0 12px 36px rgba(124,58,237,0.75);}
@keyframes chatPulse{
  0%,100%{box-shadow:0 8px 28px rgba(124,58,237,0.55),0 0 0 0 rgba(124,58,237,0.3);}
  50%{box-shadow:0 8px 28px rgba(124,58,237,0.55),0 0 0 16px rgba(124,58,237,0);}
}
#chat-notif-dot{
  position:absolute; top:2px; right:2px;
  width:14px; height:14px; border-radius:50%;
  background:#ef4444; border:2px solid #0b0d1a;
  animation:notifBlink 1.5s ease-in-out infinite;
}
@keyframes notifBlink{0%,100%{opacity:1;}50%{opacity:0.3;}}
#chat-window{
  position:fixed; bottom:162px; right:24px; z-index:9996;
  width:min(370px,calc(100vw - 32px)); height:510px;
  background:linear-gradient(170deg,#0f0b28,#160e3a);
  border:1px solid rgba(124,58,237,0.35); border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,0.65);
  display:flex; flex-direction:column; overflow:hidden;
  transform:scale(0.85) translateY(30px);
  opacity:0; pointer-events:none;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
#chat-window.open{transform:scale(1) translateY(0);opacity:1;pointer-events:auto;}
#chat-header{
  background:linear-gradient(135deg,#2563eb,#7c3aed,#06b6d4);
  padding:15px 18px; display:flex; align-items:center; gap:12px; flex-shrink:0;
}
#chat-header-avatar{
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:#fff; flex-shrink:0;
}
#chat-header-info{flex:1;}
#chat-header-info strong{display:block;color:#fff;font-weight:700;font-size:.95rem;}
#chat-header-info span{color:rgba(255,255,255,0.82);font-size:.77rem;}
#chat-status-dot{
  display:inline-block; width:7px; height:7px; border-radius:50%;
  background:#4ade80; margin-right:5px; box-shadow:0 0 6px #4ade80;
}
#chat-close{
  background:rgba(255,255,255,0.18); border:none; color:#fff;
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1rem; transition:background .2s; flex-shrink:0;
}
#chat-close:hover{background:rgba(255,255,255,0.32);}
#chat-welcome{
  margin:10px 14px 0;
  background:rgba(124,58,237,0.1); border:1px solid rgba(124,58,237,0.22);
  border-radius:14px; padding:9px 13px; font-size:.79rem;
  color:rgba(200,185,255,0.82); flex-shrink:0;
  display:flex; align-items:center; gap:8px;
}
#chat-welcome i{color:#a855f7;}
#chat-messages{
  flex:1; overflow-y:auto; padding:14px;
  display:flex; flex-direction:column; gap:11px;
  scrollbar-width:thin; scrollbar-color:rgba(124,58,237,0.4) transparent;
}
#chat-messages::-webkit-scrollbar{width:4px;}
#chat-messages::-webkit-scrollbar-thumb{background:rgba(124,58,237,0.4);border-radius:4px;}
.chat-msg{display:flex;gap:8px;align-items:flex-end;max-width:92%;}
.chat-msg.bot{align-self:flex-start;}
.chat-msg.user{align-self:flex-end;flex-direction:row-reverse;}
.chat-msg-avatar{
  width:28px; height:28px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; color:#fff;
}
.chat-msg-bubble{padding:10px 14px;border-radius:18px;font-size:.87rem;line-height:1.5;max-width:100%;}
.chat-msg.bot .chat-msg-bubble{
  background:rgba(124,58,237,0.18); border:1px solid rgba(124,58,237,0.25);
  color:rgba(220,210,255,0.95); border-bottom-left-radius:4px;
}
.chat-msg.user .chat-msg-bubble{
  background:linear-gradient(135deg,#2563eb,#7c3aed); color:#fff; border-bottom-right-radius:4px;
}
.chat-typing{
  display:flex; gap:5px; align-items:center; padding:10px 14px;
  background:rgba(124,58,237,0.18); border:1px solid rgba(124,58,237,0.25);
  border-radius:18px; border-bottom-left-radius:4px; width:fit-content;
}
.chat-typing span{
  width:7px; height:7px; border-radius:50%; background:rgba(168,85,247,0.85);
  animation:typingDot .8s ease-in-out infinite;
}
.chat-typing span:nth-child(2){animation-delay:.16s;}
.chat-typing span:nth-child(3){animation-delay:.32s;}
@keyframes typingDot{0%,80%,100%{transform:scale(0.7);opacity:0.4;}40%{transform:scale(1);opacity:1;}}
#chat-chips{padding:6px 14px 8px;display:flex;gap:6px;flex-wrap:wrap;flex-shrink:0;}
.chat-chip{
  background:rgba(124,58,237,0.13); border:1px solid rgba(124,58,237,0.3);
  color:rgba(200,185,255,0.9); font-size:.76rem; font-weight:600;
  padding:6px 11px; border-radius:999px; cursor:pointer;
  transition:all .2s; white-space:nowrap; font-family:'Inter',sans-serif;
}
.chat-chip:hover{background:rgba(124,58,237,0.3);color:#fff;}
#chat-input-row{
  padding:10px 14px 14px; display:flex; gap:9px; align-items:center;
  flex-shrink:0; border-top:1px solid rgba(124,58,237,0.15);
}
#chat-input{
  flex:1; background:rgba(11,13,26,0.7) !important;
  border:1px solid rgba(124,58,237,0.25) !important;
  border-radius:999px !important; padding:10px 15px !important;
  color:#fff !important; font-size:.87rem; font-family:'Inter',sans-serif;
  transition:border-color .25s;
}
#chat-input:focus{outline:none !important;border-color:rgba(124,58,237,0.6) !important;}
#chat-send{
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,#2563eb,#7c3aed); border:none; color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:.9rem; transition:all .25s;
  box-shadow:0 4px 14px rgba(124,58,237,0.4);
}
#chat-send:hover{transform:scale(1.1);box-shadow:0 6px 20px rgba(124,58,237,0.6);}

.stats-counter{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:25px;text-align:center}
.counter-box{background:rgba(20,12,50,.65);border:1px solid rgba(124,58,237,.25);border-radius:24px;padding:35px 20px;transition:.35s;backdrop-filter:blur(12px)}
.counter-box:hover{transform:translateY(-8px)}
.counter-box i{font-size:2.3rem;margin-bottom:15px}.counter-box h3{font-size:3rem}.counter-box p{color:var(--text-dim)}


/* ======================== UTILITAIRE (fix mobile) ======================== */
.hidden { display: none !important; }

/* ======================== INNER PAGES (added) ======================== */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #0b0d1a 0%, #100c26 100%);
  padding: 64px 24px 56px; text-align: center;
}
.page-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(124,58,237,0.22) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: .82rem; color: var(--text-dim); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--violet-l); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--white);
  font-size: clamp(1.8rem,3.4vw,2.6rem); line-height: 1.25; margin-bottom: 14px;
}
.page-hero p { color: var(--text); font-size: 1rem; line-height: 1.7; }

.page-main { max-width: 900px; margin: -30px auto 0; padding: 0 24px 70px; position: relative; z-index: 3; }
.page-content-card p { color: var(--text); font-size: 1rem; line-height: 1.85; margin-bottom: 18px; }
.page-content-card h2 {
  font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--white);
  font-size: 1.35rem; margin: 30px 0 14px;
}
.page-content-card h2:first-child { margin-top: 0; }
.page-content-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 18px; }
.page-content-card ul li {
  color: var(--text); font-size: .95rem; line-height: 1.6; padding-left: 22px; position: relative;
}
.page-content-card ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--violet-l); position: absolute; left: 0; top: 2px; font-size: .8rem;
}
.page-content-card a { color: var(--violet-l); font-weight: 600; text-decoration: none; }
.page-content-card a:hover { color: var(--white); text-decoration: underline; }
.page-content-card strong { color: var(--white); }

.back-home-wrap { display: flex; justify-content: center; margin-top: 40px; }

/* Contact form (reuses reservation-card visuals) */
.contact-form-wrap { max-width: 620px; margin: 0 auto; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; }
.gallery-card {
  background: rgba(20,12,50,0.7); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; transition: all .35s ease;
}
.gallery-card:hover { transform: translateY(-8px); border-color: var(--border-h); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.gallery-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.gallery-card-body { padding: 22px 20px; }
.gallery-card-body h3 { font-family:'Outfit',sans-serif; color: var(--white); font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.gallery-card-body p { color: var(--text-dim); font-size: .85rem; line-height: 1.6; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; }
.testimonial-card {
  background: rgba(20,12,50,0.7); border: 1px solid var(--border);
  border-radius: 22px; padding: 28px 24px; transition: all .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--border-h); }
.testimonial-card .stars { color: #f0c040; font-size: .85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--text); font-size: .95rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-card .author { color: var(--white); font-weight: 700; font-size: .9rem; }

/* Full services grid (services.html) reuse .service-item but ensure spacing */
.full-services-intro { color: var(--text); font-size: 1rem; line-height: 1.85; margin-bottom: 10px; }

/* ================================================================
   MODERNISATION — ajouts sans changement de couleurs
   ================================================================ */

/* --- 1. Grain / texture subtile sur le fond --- */
body {
  position: relative;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- 2. Typographie plus contrastée --- */
.page-hero h1, .section-title, .about-body h2, .services-header h2 {
  letter-spacing: -.02em;
}
.page-hero h1 { text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.page-content-card h2 { position: relative; padding-left: 18px; }
.page-content-card h2::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px;
  border-radius: 4px; background: var(--grad-v);
}

/* --- 3. Effet de survol enrichi (bordure animée + lueur) sur toutes les cartes --- */
.service-item, .gallery-card, .testimonial-card, .photo-service-card,
.price-card, .about-priority-card, .counter-box {
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.service-item::before, .gallery-card::before, .testimonial-card::before,
.photo-service-card::before, .price-card::before {
  content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  padding: 1px; opacity: 0; transition: opacity .4s ease;
  background: var(--grad-v);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.service-item:hover::before, .gallery-card:hover::before, .testimonial-card:hover::before,
.photo-service-card:hover::before, .price-card:hover::before { opacity: 1; }

/* --- 4. Liens soulignés animés dans le contenu --- */
.page-content-card a, .about-body p a {
  position: relative; text-decoration: none; background-image: linear-gradient(var(--violet-l), var(--violet-l));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1.5px;
  transition: background-size .3s ease;
}
.page-content-card a:hover, .about-body p a:hover { background-size: 100% 1.5px; }

/* --- 5. Focus visible plus net (accessibilité + modernité) --- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--violet-l); outline-offset: 3px; border-radius: 4px;
}

/* --- 6. Boutons : micro-interaction au clic --- */
.btn-primary, .btn-secondary, .btn-outline, #reservation-submit {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, filter .3s ease, background .3s ease;
}
.btn-primary:active, .btn-outline:active, #reservation-submit:active { transform: translateY(-1px) scale(.98); }

/* --- 7. Badge / pastille réutilisable (à placer où on veut) --- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,0.14); border: 1px solid rgba(167,107,251,0.4);
  color: var(--violet-l); font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 12px;
}

/* --- 8. Séparateur lumineux réutilisable --- */
.divider-glow {
  width: 70px; height: 3px; margin: 22px auto; border-radius: 3px;
  background: var(--grad-v); box-shadow: 0 0 18px rgba(124,58,237,0.6);
}

/* --- 9. FAQ en accordéon (utilise <details class="faq-item"><summary>...</summary><p>...</p></details>) --- */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.faq-item {
  background: rgba(20,12,50,0.6); border: 1px solid var(--border);
  border-radius: 16px; padding: 4px 20px; transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] { border-color: var(--border-h); background: rgba(30,18,70,0.7); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--white); font-size: .98rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .8rem;
  color: var(--violet-l); transition: transform .3s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { color: var(--text-dim); font-size: .9rem; line-height: 1.7; padding: 0 0 18px; margin: 0; }

/* --- 10. Bouton "retour en haut" flottant (nécessite un peu de JS, voir message) --- */
#back-to-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 10px 28px rgba(124,58,237,0.45);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { filter: brightness(1.1); transform: translateY(-3px); }

/* --- 11. Lightbox galerie 100% CSS (utilise <a href="#img1"> ... <div id="img1" class="lightbox">) --- */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(5,4,15,0.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox:target { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox .lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(124,58,237,0.2); border: 1px solid rgba(167,107,251,0.4);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; text-decoration: none;
}
.gallery-card img { cursor: zoom-in; }

/* --- 12. Étoiles d'avis animées légèrement au survol --- */
.testimonial-card .stars span { display: inline-block; transition: transform .2s ease; }
.testimonial-card:hover .stars span { animation: starPop .5s ease forwards; }
.testimonial-card:hover .stars span:nth-child(2){animation-delay:.05s}
.testimonial-card:hover .stars span:nth-child(3){animation-delay:.1s}
.testimonial-card:hover .stars span:nth-child(4){animation-delay:.15s}
.testimonial-card:hover .stars span:nth-child(5){animation-delay:.2s}
@keyframes starPop { 0%{transform:scale(1)} 40%{transform:scale(1.35)} 100%{transform:scale(1)} }

/* --- 13. Section "services associés" (grille compacte de liens croisés) --- */
.related-services { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--border); }
.related-services h3 {
  font-family: 'Outfit', sans-serif; color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 18px;
}
.related-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; }
.related-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(20,12,50,0.6); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 16px; text-decoration: none; transition: all .3s ease;
}
.related-card:hover { border-color: var(--border-h); transform: translateX(4px); background: rgba(30,18,70,0.7); }
.related-card i { color: var(--violet-l); font-size: 1.05rem; flex-shrink: 0; }
.related-card span { color: var(--white); font-weight: 600; font-size: .88rem; }
