/* ================================================
   CM WORX - Main Stylesheet
   Black + Gold + White Theme
   ================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- VARIABLES ---------- */
:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e8c97a;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --gray: #a8a8a8;
  --gray-dark: #6a6a6a;
  --border: rgba(212, 175, 55, .2);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, .15);
  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p { color: #d8d8d8; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 24px; }
.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 18px;
  color: #c8c8c8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, .35);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-arrow { font-size: 18px; transition: transform .3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ================================================
   1. NAVIGATION (Sticky)
   ================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}
.nav.scrolled { background: rgba(10, 10, 10, .98); box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); letter-spacing: -.02em; }
.nav-logo-text span { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .3s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: rgba(212, 175, 55, .1); }
.nav-dropdown-menu a::after { display: none; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: all .4s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--black);
  padding: 100px 32px 40px;
  overflow-y: auto;
  transition: right .5s var(--ease);
  z-index: 1050;
  border-left: 1px solid var(--border);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-sub { padding-left: 20px; font-size: 15px; color: var(--gray); }
.mobile-menu .btn { margin-top: 24px; width: 100%; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: 1040;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* ================================================
   2. HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 8s ease-out forwards;
}
.hero-slide.active .hero-slide-bg { animation: kenBurns 8s ease-out forwards; }
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .65) 50%, rgba(10, 10, 10, .85) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, .1);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.4s var(--ease);
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateX(0); transition-delay: .3s; }

.hero-title {
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 900px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.4s var(--ease);
}
.hero-slide.active .hero-title { opacity: 1; transform: translateX(0); transition-delay: .5s; }
.hero-title .gold { color: var(--gold); display: block; }

.hero-text {
  font-size: clamp(17px, 1.5vw, 21px);
  color: #d8d8d8;
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.4s var(--ease);
}
.hero-slide.active .hero-text { opacity: 1; transform: translateX(0); transition-delay: .7s; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.4s var(--ease);
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateX(0); transition-delay: .9s; }

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}
.hero-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, .25);
  border-radius: 2px;
  cursor: pointer;
  transition: all .4s ease;
}
.hero-dot.active { background: var(--gold); width: 60px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 4;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* ================================================
   3. ABOUT INTRO
   ================================================ */
.about {
  padding: 140px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .eyebrow {
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}
.about-content h2 { margin-bottom: 24px; }
.about-content > p { font-size: 17px; margin-bottom: 32px; line-height: 1.8; }

.usp-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}
.usp-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, .2) 100%);
  z-index: 2;
  pointer-events: none;
}
.about-image img { width: 100%; height: 600px; object-fit: cover; }
.about-image-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

/* ================================================
   4. WHY US (USP Grid)
   ================================================ */
.why { background: var(--black); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black-2) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.usp-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.usp-card:hover::before { transform: scaleX(1); }

.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, .15) 0%, rgba(212, 175, 55, .05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  border: 1px solid var(--border);
}
.usp-card h3 { margin-bottom: 12px; font-size: 22px; }
.usp-card p { color: #b8b8b8; font-size: 15px; }

/* ================================================
   5. EXPERTISE TICKER
   ================================================ */
.ticker {
  background: var(--gold);
  color: #0a0a0a;
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--gold), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--gold), transparent); }
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.ticker-item::after {
  content: '★';
  color: #0a0a0a;
  font-size: 20px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   6. SERVICES
   ================================================ */
.services { background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, .8) 100%);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { margin-bottom: 12px; transition: color .3s; }
.service-card:hover h3 { color: var(--gold); }
.service-card p { color: #b8b8b8; font-size: 15px; margin-bottom: 24px; flex: 1; }
.service-card-link {
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s ease;
}
.service-card:hover .service-card-link { gap: 14px; }

/* ================================================
   7. WORKFLOW STEPS
   ================================================ */
.workflow { background: var(--black-2); position: relative; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  z-index: 0;
  opacity: .4;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black-3);
  border: 2px solid var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  position: relative;
  transition: all .4s var(--ease);
}
.step:hover .step-num {
  background: var(--gold);
  color: #0a0a0a;
  transform: scale(1.1);
}
.step h3 { font-size: 18px; margin-bottom: 12px; }
.step p { font-size: 14px; color: #a8a8a8; line-height: 1.6; }

/* ================================================
   8. PROJECTS
   ================================================ */
.projects { background: var(--black); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .5s var(--ease);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.project-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.project-card:hover .project-card-image img { transform: scale(1.08); }
.project-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.project-card-body { padding: 24px; }
.project-card h3 { font-size: 19px; margin-bottom: 8px; transition: color .3s; }
.project-card:hover h3 { color: var(--gold); }
.project-card p { font-size: 14px; color: #a8a8a8; }

/* ================================================
   9. TIPS & TRICKS
   ================================================ */
.tips { background: var(--black-2); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tip-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.tip-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.tip-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.tip-card:hover .tip-card-image img { transform: scale(1.05); }
.tip-card-body { padding: 28px; }
.tip-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.tip-card h3 { font-size: 21px; margin-bottom: 14px; line-height: 1.3; }
.tip-card p { font-size: 14px; color: #a8a8a8; margin-bottom: 20px; }
.tip-card-link {
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ================================================
   10. REVIEWS
   ================================================ */
.reviews { background: var(--black); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black-2) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: all .5s var(--ease);
}
.review-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 80px;
  color: var(--gold);
  opacity: .15;
  font-family: serif;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
}
.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #d8d8d8;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}
.review-name { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--white); }
.review-role { font-size: 13px; color: var(--gray); }

/* ================================================
   11. QUOTE FORM
   ================================================ */
.quote { background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-info h2 { margin-bottom: 24px; }
.quote-info p { font-size: 17px; margin-bottom: 32px; }
.quote-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.quote-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(212, 175, 55, .05);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .3s ease;
}
.quote-feature:hover { background: rgba(212, 175, 55, .1); border-color: var(--gold); }
.quote-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
}
.quote-feature-text strong { display: block; font-family: 'Manrope', sans-serif; color: var(--white); margin-bottom: 2px; }
.quote-feature-text span { font-size: 13px; color: var(--gray); }

.quote-form {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.quote-form h3 { margin-bottom: 8px; color: var(--gold); }
.quote-form .form-intro { margin-bottom: 28px; font-size: 14px; color: #a8a8a8; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all .3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}
textarea.form-control { min-height: 130px; resize: vertical; font-family: 'Inter', sans-serif; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { width: 100%; margin-top: 12px; }

/* ================================================
   12. FAQ
   ================================================ */
.faq { background: var(--black-2); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item.active { border-color: var(--gold); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  transition: color .3s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-item.active .faq-q { color: var(--gold); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease);
  color: var(--gold);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--gold); color: #0a0a0a; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a-inner { padding: 0 28px 24px; color: #c8c8c8; font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-a { max-height: 400px; }

/* ================================================
   13. FOOTER
   ================================================ */
.footer {
  background: #050505;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 50px; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #a8a8a8; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); color: #0a0a0a; transform: translateY(-3px); }

.footer-col h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #a8a8a8; font-size: 14px; transition: color .3s ease; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { font-size: 14px; color: #a8a8a8; line-height: 1.7; margin-bottom: 12px; }
.footer-col strong { color: var(--white); display: block; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ================================================
   FLOATING WIDGETS
   ================================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .3s ease;
}
.whatsapp-widget:hover { transform: scale(1.1); }
.whatsapp-widget::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .4);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.translate-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
}
.translate-toggle {
  background: var(--black-2);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}
.translate-toggle:hover { background: var(--gold); color: #0a0a0a; }
.translate-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: var(--black-2);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}
.translate-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.translate-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  text-align: left;
  transition: all .2s ease;
}
.translate-menu button:hover { background: rgba(212, 175, 55, .1); color: var(--gold); }
.translate-menu button.active { background: rgba(212, 175, 55, .15); color: var(--gold); }
.translate-flag { font-size: 18px; }

/* ================================================
   CTA BAND (Subpages)
   ================================================ */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, .15) 0%, transparent 70%);
}
.cta-band-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 32px; }
.cta-band h2 { margin-bottom: 20px; }
.cta-band p { font-size: 18px; color: #c8c8c8; margin-bottom: 36px; }

/* ================================================
   PAGE BANNER (Subpages)
   ================================================ */
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s ease-in-out;
  z-index: 1;
}
.page-banner-slide.active {
  opacity: 1;
  animation: pageKenBurns 9s ease-out forwards;
}
@keyframes pageKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.14); }
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .55) 100%);
  z-index: 2;
}
.page-banner::before { display: none; }
.page-banner-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--gray); transition: color .3s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }
.page-banner h1 { color: #fff; max-width: 800px; }

/* ================================================
   SUBPAGE CONTENT
   ================================================ */
.content-section { padding: 100px 0; background: var(--black); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: 24px; }
.content-text > p { font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.content-text ul { margin: 24px 0; }
.content-text ul li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 16px;
  color: #d0d0d0;
  border-bottom: 1px solid rgba(212, 175, 55, .08);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.content-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.content-image img { width: 100%; height: 500px; object-fit: cover; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.contact-info-block {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.contact-info-block h3 { color: var(--gold); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, .08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212, 175, 55, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--white); margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.contact-detail a, .contact-detail span { color: #c8c8c8; font-size: 15px; }
.contact-detail a:hover { color: var(--gold); }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  filter: grayscale(.4) contrast(1.2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================================================
   ANIMATIONS — smooth side-entry only (no top/bottom)
   ================================================ */
.reveal-text { opacity: 0; transform: translateX(-100px); transition: opacity 1.6s var(--ease-smooth), transform 1.6s var(--ease-smooth); }
.reveal-text.visible { opacity: 1; transform: translateX(0); }

.reveal-image { opacity: 0; transform: translateX(100px); transition: opacity 1.6s var(--ease-smooth), transform 1.6s var(--ease-smooth); }
.reveal-image.visible { opacity: 1; transform: translateX(0); }

/* Cards alternate left/right based on grid position */
.reveal-card { opacity: 0; transform: translateX(-80px); transition: opacity 1.7s var(--ease-smooth), transform 1.7s var(--ease-smooth); }
.reveal-card:nth-child(2n) { transform: translateX(80px); }
.reveal-card:nth-child(3n) { transform: translateX(-80px); }
.reveal-card.visible { opacity: 1; transform: translateX(0); }

/* Section headers come from left smoothly */
.reveal-up { opacity: 0; transform: translateX(-60px); transition: opacity 1.5s var(--ease-smooth), transform 1.5s var(--ease-smooth); }
.reveal-up.visible { opacity: 1; transform: translateX(0); }

[data-stagger="1"] { transition-delay: 0ms; }
[data-stagger="2"] { transition-delay: 180ms; }
[data-stagger="3"] { transition-delay: 360ms; }
[data-stagger="4"] { transition-delay: 540ms; }
[data-stagger="5"] { transition-delay: 720ms; }
[data-stagger="6"] { transition-delay: 900ms; }

/* ================================================
   RESPONSIVE — TABLET (768-1024)
   ================================================ */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .about-grid, .quote-grid, .content-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .content-grid.reverse { direction: ltr; }
  .about-image img, .content-image img { height: 380px; }

  .usp-grid, .services-grid, .projects-grid, .tips-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }

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

  /* Reduce animation displacement on smaller screens to prevent overflow issues */
  .reveal-text, .reveal-up { transform: translateX(-50px); }
  .reveal-image { transform: translateX(50px); }
  .reveal-card { transform: translateX(-40px); }
  .reveal-card:nth-child(2n) { transform: translateX(40px); }
}

/* ================================================
   RESPONSIVE — MOBILE (<768)
   ================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(32px, 8vw, 40px); }
  h2 { font-size: clamp(26px, 6.5vw, 32px); }
  h3 { font-size: 20px; }

  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-inner { padding: 14px 16px; }
  .nav-logo img { height: 32px; }
  .nav-logo-text { font-size: 18px; }
  .nav-cta .btn-text { display: none; }
  .nav-cta .btn { padding: 12px 16px; font-size: 13px; min-height: 44px; }

  /* Mobile menu styling */
  .mobile-menu { width: 88%; max-width: 360px; padding: 80px 24px 24px; }
  .mobile-menu a { padding: 14px 0; font-size: 16px; }

  /* Hero section */
  .hero { min-height: 600px; height: 100vh; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero-content { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Page banner */
  .page-banner { min-height: 280px; height: 38vh; }
  .page-banner-content { padding: 0 16px; }
  .breadcrumbs { font-size: 11px; gap: 8px; margin-bottom: 16px; }

  /* All grids → single column */
  .usp-grid, .services-grid, .projects-grid, .tips-grid, .reviews-grid, .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-grid, .quote-grid, .content-grid, .contact-grid {
    gap: 36px;
  }
  .content-image img, .about-image img { height: 280px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .quote-form { padding: 24px 18px; }
  .quote-form input, .quote-form textarea, .quote-form select {
    padding: 14px 16px;
    font-size: 16px;  /* prevents iOS zoom */
    min-height: 48px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 48px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; gap: 12px; }

  /* Floating widgets */
  .whatsapp-widget { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-widget svg { width: 24px; height: 24px; }
  .translate-widget { bottom: 16px; left: 16px; }
  .translate-toggle { padding: 10px 14px; font-size: 12px; }

  /* Ticker — slower, smaller */
  .ticker-item { font-size: 20px; gap: 28px; }

  .about-image-deco { display: none; }

  /* Buttons mobile */
  .btn { padding: 14px 22px; font-size: 14px; min-height: 48px; }

  /* CTA band mobile */
  .cta-band { padding: 64px 16px; }
  .cta-band-content { padding: 0 8px; }

  /* Section headers mobile */
  .section-header { padding: 0 8px; }
  .section-sub { font-size: 16px; }

  /* Mobile-friendly animations: smaller displacement */
  .reveal-text, .reveal-up { transform: translateX(-32px); }
  .reveal-image { transform: translateX(32px); }
  .reveal-card,
  .reveal-card:nth-child(2n),
  .reveal-card:nth-child(3n) { transform: translateX(-28px); }

  /* FAQ mobile */
  .faq-q { padding: 18px 16px; font-size: 15px; }
  .faq-a { padding: 0 16px 18px; font-size: 14px; }

  /* Service / project / tip cards mobile */
  .service-card, .project-card, .tip-card { margin: 0; }
  .service-image img, .project-image img, .tip-image img { height: 200px; }

  /* Reviews mobile */
  .review-card { padding: 24px 20px; }

  /* Workflow steps mobile */
  .step { padding: 24px 18px; }
  .step-number { width: 56px; height: 56px; font-size: 22px; }

  /* Map mobile */
  .map-wrap { height: 320px; }
  .contact-info-block { padding: 28px 22px; }
  .contact-detail { gap: 12px; padding: 14px 0; }

  /* Mobile tap targets */
  a, button { min-height: 44px; }
  .breadcrumbs a, .breadcrumbs span { min-height: auto; }
  .footer a, .nav-dropdown-menu a { min-height: auto; }
}

/* Very small screens */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 12px; }
  .whatsapp-widget { width: 48px; height: 48px; }
  .translate-toggle { font-size: 11px; padding: 8px 12px; }
}

/* ================================================
   PRINT
   ================================================ */
@media print {
  .nav, .footer, .whatsapp-widget, .translate-widget, .hero-scroll, .hero-dots { display: none; }
  body { background: #fff; color: #000; }
  * { color: #000 !important; background: #fff !important; }
}
