/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary: #d4a054;
  --primary-dark: #b8883e;
  --primary-light: #e8c88a;
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface-alt: #242836;
  --text: #e8e8ec;
  --text-muted: #9498a8;
  --white: #ffffff;
  --gradient-gold: linear-gradient(135deg, #d4a054, #f0d48a, #d4a054);
  --gradient-dark: linear-gradient(180deg, #0f1117 0%, #1a1d27 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 24px rgba(212, 160, 84, 0.25);
  --radius: 20px;
  --transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  --glow-gold: 0 0 15px rgba(212, 160, 84, 0.4);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(15, 17, 23, 0.65), rgba(15, 17, 23, 0.75)),
    url('img/IMG_6802.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: pageFadeIn 1s ease forwards;
  min-height: 100vh;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===== SCROLLBAR & SELECTION ===== */
::selection {
  background: rgba(212, 160, 84, 0.3);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface-alt);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== CUSTOM CURSOR CSS ===== */
@media (hover: hover) and (pointer: fine) {

  .custom-cursor-active,
  .custom-cursor-active * {
    cursor: none !important;
  }
}

@media (hover: none) {

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }

  .custom-cursor-active,
  .custom-cursor-active * {
    cursor: auto !important;
  }
}

.cursor-dot,
.cursor-outline {
  pointer-events: none !important;
  user-select: none !important;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: left, top;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  margin-left: -3px;
  margin-top: -3px;
  transition: opacity 0.3s ease;
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary);
  background-color: rgba(212, 160, 84, 0.02);
  margin-left: -18px;
  margin-top: -18px;
  transition: opacity 0.3s ease, width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}

.cursor-outline.hover {
  width: 58px;
  height: 58px;
  margin-left: -29px;
  margin-top: -29px;
  background-color: rgba(212, 160, 84, 0.12);
  border-color: var(--primary-light);
  box-shadow: 0 0 18px rgba(212, 160, 84, 0.25);
}

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
  border: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(212, 160, 84, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  background: rgba(212, 160, 84, 0.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.6;
    transform: scaleX(1.05);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== LUMINOUS ELEMENTS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 10000;
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.1s ease;
}

.glow-bar {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
  margin: 0 auto;
  box-shadow: var(--glow-gold);
}

.glow-bar.vertical {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(15, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Removed custom text colors for scrolled navbar since it's now dark */

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1350px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  perspective: 1000px;
  margin-left: -15px;
}

.nav-logo > span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: floatName 4s ease-in-out infinite;
}

@keyframes floatName {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.nav-logo:hover {
  transform: rotateY(15deg) rotateX(5deg);
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: logoRotate 10s linear infinite;
  transform-style: preserve-3d;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes logoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  text-shadow: 0 0 10px rgba(212, 160, 84, 0.4);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 10px var(--primary);
}

@keyframes ctaBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 160, 84, 0.3);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 30px rgba(212, 160, 84, 0.8);
  }
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 0 15px rgba(212, 160, 84, 0.3);
  transition: var(--transition);
  animation: ctaBlink 2s infinite;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(212, 160, 84, 0.6);
  transform: translateY(-2px);
  animation: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Removed custom hamburger color for scrolled navbar */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 17, 23, 0.85), rgba(15, 17, 23, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 160, 84, 0.15);
  border: 1px solid rgba(212, 160, 84, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.blink-text {
  animation: blinkTextAnim 2s infinite;
}

@keyframes blinkTextAnim {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(212, 160, 84, 0.6);
  }
  50% {
    opacity: 0.5;
    text-shadow: none;
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  animation: fadeUp 1s ease-out 0.4s both;
}

.hero h1 .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: fadeUp 1s ease-out 1s both;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 84, 0.12), transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 20%;
  animation-delay: 2s;
}

.hero-shapes .shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 35%;
  animation-delay: 4s;
}

/* ===== SERVICES ===== */
.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(26, 29, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-light);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(212, 160, 84, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--dark-card));
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 160, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(212, 160, 84, 0.2);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
}

.about-image-main {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-image-row img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-gold);
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0.4;
}

.about-experience {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 20px 28px;
  border-radius: 14px;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 84, 0.2);
}

.about-experience h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-experience p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text>p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-steps {
  color: var(--text-muted);
  margin: 0 0 32px 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-steps li::marker {
  color: var(--primary);
  font-weight: 700;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(212, 160, 84, 0.2);
}

.about-feature-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 160, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--gradient-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 17, 23, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--primary);
}

.gallery-item.large {
  grid-column: span 2;
}

/* ===== ENGAGEMENTS ===== */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.engagement-card {
  background: rgba(26, 29, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.engagement-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: rgba(26, 29, 39, 0.9);
}

.engagement-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 160, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(212, 160, 84, 0.2);
}

.engagement-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.engagement-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS PREVIEW ===== */
.testimonials-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(26, 29, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 160, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(212, 160, 84, 0.08);
  font-family: serif;
}

/* ===== CONTACT ===== */
.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(212, 160, 84, 0.3);
  transform: translateX(8px);
  background: rgba(26, 29, 39, 0.98);
}

.contact-info-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 160, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 160, 84, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1d27;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: rgba(212, 160, 84, 0.1);
  color: var(--primary);
  border-color: rgba(212, 160, 84, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-socials a:hover svg {
  transform: scale(1.1);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  z-index: 999;
  background: rgba(26, 29, 39, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(212, 160, 84, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  padding-left: 12px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

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

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

  .gallery-item.large {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 16px;
  }

  .section-desc {
    margin-bottom: 32px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .services-grid,
  .testimonials-grid,
  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-logo {
    margin-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

    grid-template-columns: 1fr;
  }
}

/* ===== FLOATING BUTTON ===== */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-gold);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(212, 160, 84, 0.4);
  z-index: 9998;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 160, 84, 0.6);
  color: #fff;
}

/* ===== PROCESS (NOTRE METHODE) ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(212, 160, 84, 0.2);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(212, 160, 84, 0.2);
  transition: var(--transition);
}
.process-step:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: #fff;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}
.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--primary);
}
.faq-item.active {
  border-color: rgba(212, 160, 84, 0.3);
  background: rgba(212, 160, 84, 0.05);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .floating-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }
  .floating-btn-text {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}