/* ============================================================
   ALLO-PSY — Premium Design System v2
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --c-dark:     #071a12;
  --c-navy:     #0e2a1e;
  --c-green:    #059669;
  --c-green2:   #10b981;
  --c-gold:     #d97706;
  --c-gold2:    #f59e0b;
  --c-purple:   #7c3aed;
  --c-light:    #f0fdf7;
  --c-surface:  #ffffff;
  --c-text:     #1e293b;
  --c-muted:    #64748b;
  --c-border:   rgba(5,150,105,.12);

  --shadow-xs:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-md:  0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 25px rgba(0,0,0,.08), 0 10px 10px rgba(0,0,0,.04);
  --shadow-xl:  0 40px 60px rgba(0,0,0,.12), 0 20px 25px rgba(0,0,0,.06);
  --shadow-glow: 0 0 40px rgba(5,150,105,.25);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t: all .35s var(--ease);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-surface);
  overflow-x: hidden;
}
::selection { background: var(--c-green); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--c-green), var(--c-gold));
  border-radius: 3px;
}

a { color: var(--c-green); text-decoration: none; transition: var(--t); }
a:hover { color: var(--c-gold); }
h1,h2,h3,h4,h5,h6 { font-family: "Raleway", sans-serif; color: var(--c-dark); font-weight: 700; }
img { max-width: 100%; }

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}
@keyframes float-x {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(15px); }
}
@keyframes morph {
  0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
  25%     { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
  50%     { border-radius: 50% 60% 30% 60%/40% 70% 60% 30%; }
  75%     { border-radius: 40% 60% 60% 40%/70% 30% 50% 60%; }
}
@keyframes morph2 {
  0%,100% { border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; }
  50%     { border-radius: 70% 30% 30% 70%/70% 70% 30% 30%; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(5,150,105,.3), 0 0 40px rgba(5,150,105,.1); }
  50%     { box-shadow: 0 0 30px rgba(5,150,105,.5), 0 0 70px rgba(5,150,105,.2); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes slide-up {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes reveal-right {
  from { opacity:0; transform: translateX(-30px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity:0; transform: scale(.85); }
  to   { opacity:1; transform: scale(1); }
}
@keyframes gradient-pan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes particle-float {
  0%   { transform: translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { transform: translateY(-10vh) scale(1); opacity:0; }
}
@keyframes shimmer-move {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes bounce-in {
  0%   { transform: scale(0); opacity:0; }
  60%  { transform: scale(1.1); }
  80%  { transform: scale(.97); }
  100% { transform: scale(1); opacity:1; }
}
@keyframes draw-line {
  from { width: 0; }
  to   { width: 60px; }
}

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  box-shadow: 0 4px 20px rgba(5,150,105,.4);
  transition: var(--t);
  right: 20px; bottom: 20px;
}
.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(5,150,105,.5);
}

/* ── Header ─────────────────────────────────────────────── */
#header {
  background: rgba(7,26,18,.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: background .4s, backdrop-filter .4s, border-color .4s, padding .4s, box-shadow .4s;
  z-index: 100;
}
#header.header-scrolled {
  background: rgba(7,26,18,.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(5,150,105,.2);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
#header .logo { gap: 10px; }
#header .logo img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
#header .logo h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0;
}
#header .logo h1 span {
  background: linear-gradient(90deg, var(--c-gold2), #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar */
.navbar a, .navbar a:focus {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 10px 0 10px 24px;
  letter-spacing: .3px;
  position: relative;
  transition: color .3s;
}
.navbar a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 24px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--c-gold2), var(--c-green2));
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.navbar a:hover, .navbar .active {
  color: #fff !important;
}
.navbar a:hover::after, .navbar .active::after { width: calc(100% - 24px); }

/* CTA button in nav */
.navbar .nav-cta {
  background: linear-gradient(135deg, var(--c-green), var(--c-green2)) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .4px;
  box-shadow: 0 4px 15px rgba(5,150,105,.4);
  margin-left: 8px;
}
.navbar .nav-cta::after { display: none !important; }
.navbar .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5,150,105,.5) !important;
  filter: brightness(1.05);
}

/* Mobile nav */
.mobile-nav-toggle { color: #fff; }
.navbar-mobile {
  background: rgba(7,26,18,.98);
  backdrop-filter: blur(20px);
}
.navbar-mobile ul {
  background: rgba(255,255,255,.05);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.navbar-mobile a, .navbar-mobile a:focus { color: rgba(255,255,255,.85); }
.navbar-mobile a:hover { color: #fff; background: rgba(255,255,255,.07); border-radius: 8px; }

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--c-dark);
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* Noise texture */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .4;
  z-index: 0;
}

/* Gradient mesh */
.hero-mesh {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(5,150,105,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 15%, rgba(217,119,6,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 60% 80%, rgba(124,58,237,.10) 0%, transparent 50%);
}

/* Animated morphing blob */
.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: morph 14s ease-in-out infinite;
  filter: blur(1px);
}
.hero-blob-a {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(5,150,105,.18), rgba(16,185,129,.05));
  animation-duration: 14s;
}
.hero-blob-b {
  width: 350px; height: 350px;
  bottom: -80px; left: -60px;
  background: radial-gradient(ellipse, rgba(217,119,6,.12), transparent);
  animation: morph2 18s ease-in-out infinite;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--c-green2);
  border-radius: 50%;
  animation: particle-float linear infinite;
  opacity: 0;
}
.particle:nth-child(1)  { left:10%; width:3px;height:3px; animation-duration:12s; animation-delay:0s;   background: var(--c-gold2); }
.particle:nth-child(2)  { left:25%; width:5px;height:5px; animation-duration:16s; animation-delay:2s; }
.particle:nth-child(3)  { left:40%; width:3px;height:3px; animation-duration:10s; animation-delay:4s;   background: var(--c-gold2); }
.particle:nth-child(4)  { left:55%; width:4px;height:4px; animation-duration:14s; animation-delay:1s; }
.particle:nth-child(5)  { left:70%; width:3px;height:3px; animation-duration:18s; animation-delay:6s;   background: #a78bfa; }
.particle:nth-child(6)  { left:85%; width:5px;height:5px; animation-duration:11s; animation-delay:3s; }
.particle:nth-child(7)  { left:15%; width:2px;height:2px; animation-duration:15s; animation-delay:8s;   background: var(--c-gold2); }
.particle:nth-child(8)  { left:60%; width:6px;height:6px; animation-duration:13s; animation-delay:5s;   opacity:.5; }
.particle:nth-child(9)  { left:35%; width:3px;height:3px; animation-duration:17s; animation-delay:9s;   background: #a78bfa; }
.particle:nth-child(10) { left:78%; width:4px;height:4px; animation-duration:12s; animation-delay:7s; }

/* Ring decoration */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(5,150,105,.15);
  z-index: 1;
  animation: spin-slow linear infinite;
}
.hero-ring-1 { width:600px;height:600px; top:-150px;right:-150px; animation-duration:60s; }
.hero-ring-2 { width:400px;height:400px; top:-50px; right:-50px;  animation-duration:40s; border-style: dashed; }

/* Hero content */
#hero .container { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.3);
  backdrop-filter: blur(8px);
  color: var(--c-green2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  animation: slide-up .7s var(--ease) both;
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--c-green2);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}
#hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: slide-up .9s var(--ease) .1s both;
}
#hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-gold2) 0%, #fcd34d 50%, var(--c-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-pan 4s ease infinite;
}
#hero h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  animation: slide-up 1s var(--ease) .2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: slide-up 1.1s var(--ease) .3s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(5,150,105,.4), inset 0 1px 0 rgba(255,255,255,.2);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shimmer-move 3s infinite 1s;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(5,150,105,.55);
  color: #fff;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.06);
  transition: var(--t);
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: slide-up 1.2s var(--ease) .4s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  animation: scale-in 1s var(--ease-spring) .3s both;
}
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-card-icon.green  { background: rgba(5,150,105,.2);  color: var(--c-green2); }
.hero-card-icon.gold   { background: rgba(217,119,6,.2);  color: var(--c-gold2); }
.hero-card-icon.purple { background: rgba(124,58,237,.2); color: #a78bfa; }
.hero-card-text { display: flex; flex-direction: column; gap: 2px; }
.hero-card-text strong { color: #fff; font-size: 14px; font-family: "Raleway",sans-serif; }
.hero-card-text span { color: rgba(255,255,255,.5); font-size: 12px; }
.hero-card-1 { animation: float-y 6s ease-in-out infinite; }
.hero-card-2 { animation: float-y 7s ease-in-out infinite .8s; }
.hero-card-3 { animation: float-y 5.5s ease-in-out infinite 1.5s; }

/* ── Section Styles ─────────────────────────────────────── */
section { padding: 100px 0; position: relative; overflow: hidden; }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green2));
  border-radius: 1px;
}

.section-title {
  text-align: center;
  padding-bottom: 56px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--c-dark);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}
.section-title h2::after { display: none; }
.section-title h2::before { display: none; }
.section-title .title-line {
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green2));
  border-radius: 2px;
  margin: 14px auto 0;
  animation: draw-line .8s var(--ease) .5s both;
}
.section-title p {
  font-size: 17px;
  color: var(--c-muted);
  max-width: 580px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ── About Section ──────────────────────────────────────── */
.about { background: var(--c-surface); }
.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}
.about-img-wrap img {
  border-radius: var(--r-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: var(--t);
  position: relative;
  z-index: 2;
}
.about-img-wrap:hover img { transform: scale(1.02); }
.about-img-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 3px solid var(--c-green);
  border-radius: var(--r-xl);
  z-index: 1;
  opacity: .25;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  color: #fff;
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(5,150,105,.4);
  z-index: 3;
  text-align: center;
  animation: float-y 5s ease-in-out infinite;
}
.about-img-badge strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-img-badge span { font-size: 12px; opacity: .85; }

.about-content { padding-left: 50px; }
.about-content h3 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-content h3 span {
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-content .about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-content .about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}
.about-content .about-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.5 3.5L6 11 2.5 7.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--c-green);
}

/* Override old about styles */
.about .container { position: relative; z-index: 2; }
.about .content { padding: 0; }
.about .content h3 { padding-left: 0; }
.about .content h3::before { display: none; }

/* ── Values Section ─────────────────────────────────────── */
.about.section-bg {
  background: var(--c-dark) !important;
  padding: 100px 0 !important;
}
.about.section-bg::before { display: none !important; }

.values-heading h3 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.values-heading h3 span {
  background: linear-gradient(90deg, var(--c-gold2), #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.values-heading p {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 30px;
}
.about.section-bg .content .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  transition: var(--t);
  text-transform: none;
}
.about.section-bg .content .about-btn:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5,150,105,.4);
}

.value-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.value-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(5,150,105,.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 0 1px rgba(5,150,105,.15);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(5,150,105,.25), rgba(16,185,129,.15));
  color: var(--c-green2);
  border: 1px solid rgba(5,150,105,.2);
}
.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}

/* ── Services Section ───────────────────────────────────── */
.services {
  background: linear-gradient(180deg, #f8fffe 0%, var(--c-light) 100%);
}
.services.section-bg::before { display: none; }
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  transition: var(--t);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.service-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,150,105,.0), rgba(16,185,129,.06));
  opacity: 0;
  transition: opacity .3s;
}
.service-chip:hover {
  border-color: rgba(5,150,105,.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(5,150,105,.1);
  transform: translateX(6px);
}
.service-chip:hover::after { opacity: 1; }
.service-chip-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--t);
}
.service-chip:hover .service-chip-icon { transform: scale(1.1) rotate(-5deg); }
.service-chip-icon.c1 { background: rgba(5,150,105,.1);  color: var(--c-green); }
.service-chip-icon.c2 { background: rgba(217,119,6,.1);  color: var(--c-gold); }
.service-chip-icon.c3 { background: rgba(124,58,237,.1); color: var(--c-purple); }
.service-chip-icon.c4 { background: rgba(14,165,233,.1); color: #0ea5e9; }
.service-chip h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0;
}
.service-chip h4 a { color: var(--c-dark); font-size: 15px; }
.service-chip h4 a:hover { color: var(--c-green); }
.service-chip i.arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--c-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--t);
}
.service-chip:hover i.arrow { opacity: 1; transform: translateX(0); color: var(--c-green); }

/* ── Prestations ────────────────────────────────────────── */
.breadcrumbs {
  padding: 100px 0 60px !important;
  min-height: 30vh !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.breadcrumbs::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,26,18,.9) 0%, rgba(5,150,105,.6) 100%);
  z-index: 1;
}
.breadcrumbs > * { position: relative; z-index: 2; }
.breadcrumbs h1, .breadcrumbs h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -1px;
}
.breadcrumbs ol { list-style:none; padding:0; display:flex; gap:0; margin-top:10px; }
.breadcrumbs ol li { color: rgba(255,255,255,.65); font-size: 14px; }
.breadcrumbs ol a { color: rgba(255,255,255,.85); }
.breadcrumbs ol a:hover { color: var(--c-gold2); }
.breadcrumbs ol li+li::before { content:'/'; padding:0 10px; color:rgba(255,255,255,.3); }

.services-list { background: var(--c-light); padding: 80px 0; }
.prestation-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.prestation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--c-green), var(--c-green2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.prestation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(5,150,105,.2);
}
.prestation-card:hover::before { transform: scaleY(1); }
.prestation-card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 14px;
  padding-right: 10px;
}
.prestation-card .title a { color: var(--c-dark); }
.prestation-card .title a:hover { color: var(--c-green); }
.prestation-card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.prestation-card ul li {
  font-size: 13.5px;
  color: var(--c-muted);
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid var(--c-border);
}
.prestation-card ul li:last-child { border-bottom: none; }
.prestation-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-size: 12px;
  line-height: inherit;
}

/* ── Team Section ───────────────────────────────────────── */
.team { background: var(--c-surface); }
.team.section-bg { background: var(--c-surface) !important; padding: 100px 0 !important; }
.team.section-bg::before { display: none !important; }
.team-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--t);
  background: var(--c-surface);
}
.team-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 0 2px var(--c-green);
}
.team-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.team-card:hover .team-card-img img { transform: scale(1.07); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,18,.95) 0%, rgba(7,26,18,.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.team-card-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--t);
  transform: translateY(10px);
  opacity: 0;
  transition-delay: var(--d, 0s);
}
.team-card:hover .team-card-socials a {
  opacity: 1;
  transform: translateY(0);
}
.team-card:hover .team-card-socials a:nth-child(1) { transition-delay: .05s; }
.team-card:hover .team-card-socials a:nth-child(2) { transition-delay: .1s; }
.team-card:hover .team-card-socials a:nth-child(3) { transition-delay: .15s; }
.team-card:hover .team-card-socials a:nth-child(4) { transition-delay: .2s; }
.team-card-socials a:hover { background: var(--c-green); border-color: var(--c-green); }
.team-card-info {
  padding: 22px;
  border-top: 1px solid var(--c-border);
}
.team-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.team-card-info span {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-green);
  display: block;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(5,150,105,.08), transparent),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(217,119,6,.05), transparent);
}
.testimonials .section-title h2 { color: #fff; }
.testimonials .section-title p { color: rgba(255,255,255,.5); }
.testimonials .title-line { background: linear-gradient(90deg, var(--c-gold2), var(--c-green2)); }

.testimonial-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  margin: 16px 12px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-size: 120px;
  font-family: Georgia, serif;
  font-weight: 900;
  color: rgba(5,150,105,.12);
  line-height: 1;
  user-select: none;
}
.testimonial-card:hover {
  border-color: rgba(5,150,105,.25);
  background: rgba(255,255,255,.08);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars i { color: var(--c-gold2); font-size: 14px; }
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.testimonial-author-info h4 {
  font-size: 12px;
  color: var(--c-green2);
  font-weight: 600;
  margin: 2px 0 0;
}
.testimonials .quote-icon-left,
.testimonials .quote-icon-right { display: none; }
.testimonials .swiper-pagination-bullet { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.2); }
.testimonials .swiper-pagination-bullet-active { background: var(--c-green); border-color: var(--c-green); }

/* ── Counts / Stats Section ─────────────────────────────── */
.counts {
  background: linear-gradient(135deg, var(--c-green) 0%, #047857 50%, #065f46 100%);
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}
.counts::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counts .section-title h2 { color: #fff; }
.stat-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.stat-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 20px;
  animation: pulse-glow 3s infinite;
}
.stat-card .count-box span {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.stat-card .count-box p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  font-family: "Raleway", sans-serif;
}
/* Override original count-box styles */
.counts .count-box { background: none; box-shadow: none; padding: 0; }
.counts .count-box i { display: none; }

/* ── Contact Section ────────────────────────────────────── */
.contact { background: var(--c-light); }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  margin-bottom: 18px;
  transition: var(--t);
}
.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(5,150,105,.25);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(5,150,105,.3);
}
.contact-info-text h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.contact-info-text p {
  font-size: 15px;
  color: var(--c-text);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green2), var(--c-gold2));
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 8px;
}
.contact-form-wrap p { color: var(--c-muted); font-size: 14px; margin-bottom: 28px; }

.form-floating-group {
  position: relative;
  margin-bottom: 18px;
}
.form-floating-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.form-floating-group .form-control,
.form-floating-group .form-select,
.php-email-form .form-control,
.php-email-form .form-select {
  background: #f8fafb;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--c-text);
  transition: var(--t);
  width: 100%;
  outline: none;
  box-shadow: none;
}
.form-floating-group .form-control:focus,
.php-email-form .form-control:focus,
.php-email-form .form-select:focus {
  background: #fff;
  border-color: var(--c-green);
  box-shadow: 0 0 0 4px rgba(5,150,105,.1);
}
.php-email-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
  display: block;
}
.php-email-form .form-group { margin-bottom: 16px; }

.php-email-form button[type=submit] {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green2));
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  transition: var(--t);
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(5,150,105,.35);
  position: relative;
  overflow: hidden;
}
.php-email-form button[type=submit]::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shimmer-move 3s infinite 1s;
}
.php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(5,150,105,.45);
}

.php-email-form .card.bg-warning {
  background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
  border: none !important;
  border-left: 4px solid var(--c-gold2) !important;
  border-radius: var(--r-sm) !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: #92400e !important;
  margin: 10px 0 !important;
  box-shadow: none !important;
}

/* Old info-box override */
.contact .info-box {
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
  background: none;
}

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-green), var(--c-gold2), transparent);
}
#footer .footer-top {
  background: transparent;
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#footer .footer-contact h3 {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--c-gold2), #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  display: inline-block;
}
#footer .footer-contact p {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
}
#footer .footer-contact strong { color: rgba(255,255,255,.8); }
#footer h4 {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
#footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold2));
  border-radius: 1px;
}
#footer .container.d-md-flex { padding: 24px 0; }
#footer .copyright { font-size: 13.5px; color: rgba(255,255,255,.4); }
#footer .credits { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 4px; }
#footer .credits a { color: var(--c-gold2); }
#footer .credits a:hover { color: #fcd34d; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  #hero h1 { font-size: 38px; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .about-img-badge { left: 10px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 22px; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  #hero h1 { font-size: 32px; letter-spacing: -1px; }
  #hero h2 { font-size: 15px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .about-content .about-list { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-ring-1, .hero-ring-2 { display: none; }
}

/* ── AOS tweaks ─────────────────────────────────────────── */
[data-aos] { transition-duration: 650ms !important; }
