/* ================================
   YV1 DIAMOND SERVICES - CLEAN CSS
   Premium clean version
================================ */

/* RESET */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc !important;
  color: #111827;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

/* TOP BAR */
.topbar {
  background: #0f172a !important;
  color: #f8fafc !important;
  padding: 10px 8%;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}
.contact-link {
  color: inherit;
  font-weight: 800;
}
.contact-link:hover {
  text-decoration: underline;
}

/* NAVBAR */
nav {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
  padding: 18px 8% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14) !important;
}
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #0f172a,
    #334155,
    #94a3b8,
    #334155,
    #0f172a
  );
}
.logo-wrap {
  display: flex;
  align-items: center;
  color: #0f172a !important;
  font-size: 28px !important;
  font-weight: 950 !important;
}
.logo-wrap span {
  color: #334155 !important;
}
.logo-img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
  margin-right: 15px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
nav a {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
  transition: 0.3s ease;
}
nav a:hover {
  background: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* GENERAL */
section {
  padding: 85px 8%;
}
h1,
h2,
h3 {
  margin-top: 0;
  color: #0f172a;
}
h2 {
  font-size: 40px;
  margin-bottom: 22px;
}
.section-title {
  display: inline-block;
  background: #e2e8f0 !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}
.btn {
  display: inline-block;
  background: #0f172a !important;
  color: #fff !important;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  margin-right: 10px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
}

.btn-gold {
  background-color: #c7a34a !important;
}

.btn.alt {
  background: #fff !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.2);
}
.btn:hover {
  transform: translateY(-3px);
}

/* HERO */
.hero {
  min-height: 82vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 90px 8% !important;
  position: relative !important;
  overflow: hidden !important;
  background: #0f172a !important;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.82),
      rgba(15, 23, 42, 0.5),
      rgba(15, 23, 42, 0.25)
    ),
    var(
      --hero-bg,
      url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2400&q=80")
    );
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: 1s ease;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 760px !important;
  background: rgba(15, 23, 42, 0.48) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32) !important;
}
.hero .tag {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  width: max-content;
}
.hero h1 {
  color: #fff !important;
  font-size: 50px !important;
  line-height: 1.12 !important;
}
.hero h1 span {
  color: #cbd5e1 !important;
}
.hero p {
  color: #e5e7eb !important;
  font-size: 19px !important;
}
#heroDynamicText {
  transition: 0.35s ease;
}
#heroDynamicText.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

/* HOME SERVICES - CLEAN */
.home-main-services {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fafc 55%,
    #eef2f7 100%
  ) !important;
  padding: 95px 8% !important;
}
.services-premium-bg,
.home-main-services::before,
.home-main-services::after {
  display: none !important;
}
.services-shell {
  display: grid !important;
  grid-template-columns: 0.9fr 1.35fr !important;
  gap: 55px !important;
  align-items: center !important;
}
.services-left h2 {
  font-size: 44px !important;
  line-height: 1.1 !important;
  color: #0f172a !important;
}
.services-left p {
  color: #475569 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}
.services-line {
  width: 76px;
  height: 5px;
  background: #c7a34a !important;
  border-radius: 20px;
  margin: 25px 0;
}
.services-badges {
  display: flex;
  justify-content: space-around;
  gap: 18px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.services-badges div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-badges span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a !important;
  color: #fff !important;
}
.services-badges p {
  margin: 0;
  color: #334155 !important;
  font-weight: 700;
  font-size: 14px !important;
}
.services-cta {
  display: inline-flex;
  background: #0f172a !important;
  color: #fff !important;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
}
.services-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-feature-card {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 26px !important;
  padding: 26px !important;
  min-height: 250px !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
  transition: 0.3s ease !important;
}
.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14) !important;
}
.service-circle {
  width: 62px !important;
  height: 62px !important;
  border-radius: 18px !important;
  background: #0f172a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* margin: 0 auto 16px !important; */
}
.service-circle svg {
  width: 32px !important;
  height: 32px !important;
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.service-img {
  overflow: hidden;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 12px;
  display: flex;
}

.service-img img {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.service-feature-card span {
  display: inline-flex !important;
  background: #e2e8f0 !important;
  color: #0f172a !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}
.service-feature-card h3 {
  color: #0f172a !important;
  font-size: 21px !important;
  margin-bottom: 8px !important;
}
.service-feature-card p {
  color: #64748b !important;
  font-size: 15px !important;
}

/* GET STARTED */
section[style*="background:#000"] {
  background: #fff !important;
}

.home-get-started {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 8%;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(199, 163, 74, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(148, 163, 184, 0.14),
      transparent 32%
    ),
    linear-gradient(135deg, #07111f 0%, #0f172a 52%, #111827 100%);
}

.home-get-started::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(199, 163, 74, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(199, 163, 74, 0.035),
    0 0 0 110px rgba(199, 163, 74, 0.02);
  z-index: -1;
}

.home-get-started::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c7a34a, transparent);
  opacity: 0.9;
}

.get-started-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.get-started-content {
  max-width: 700px;
}

.home-get-started .section-title {
  color: #f1d58a !important;
  background: rgba(199, 163, 74, 0.12) !important;
  border-color: rgba(241, 213, 138, 0.28) !important;
  margin-bottom: 22px;
}

.home-get-started h2 {
  max-width: 680px;
  margin-bottom: 24px;
  color: #ffffff !important;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800 !important;
}

.home-get-started h2 span {
  color: #c7a34a;
}

.home-get-started > .get-started-shell > .get-started-content > p {
  max-width: 650px;
  margin: 0 0 32px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.get-started-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.home-get-started .btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn-gold {
  background: linear-gradient(135deg, #d6b55c, #b98c27) !important;
  color: #07111f !important;
  box-shadow: 0 16px 34px rgba(199, 163, 74, 0.22) !important;
  margin: 0 !important;
  min-height: 56px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 24px;
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-gold:hover {
  box-shadow: 0 20px 42px rgba(199, 163, 74, 0.32) !important;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin: 0 !important;
  min-height: 56px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 24px;
  border: 1px solid transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.get-started-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.get-started-meta span {
  position: relative;
  padding-left: 17px;
}

.get-started-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7a34a;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(199, 163, 74, 0.11);
}

.get-started-process {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.get-started-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c7a34a, transparent);
}

.get-started-process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.get-started-process-header span {
  color: #c7a34a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.get-started-process-header strong {
  color: #ffffff;
  font-size: 18px;
  text-align: right;
}

.get-started-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.get-started-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.get-started-step-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 163, 74, 0.35);
  border-radius: 15px;
  background: rgba(199, 163, 74, 0.1);
  color: #e5c76f;
  font-size: 13px;
  font-weight: 900;
}

.get-started-step strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
}

.get-started-step p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .get-started-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .get-started-content {
    max-width: 760px;
  }

  .get-started-process {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .home-get-started {
    padding: 72px 5% !important;
  }

  .home-get-started h2 {
    font-size: clamp(36px, 11vw, 48px) !important;
    letter-spacing: -1.3px;
  }

  .home-get-started > .get-started-shell > .get-started-content > p {
    font-size: 16px;
  }

  .get-started-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-get-started .btn {
    width: 100% !important;
  }

  .get-started-meta {
    display: grid;
    gap: 12px;
  }

  .get-started-process {
    padding: 26px;
    border-radius: 24px;
  }

  .get-started-process-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .get-started-process-header strong {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .get-started-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .get-started-step-number {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
}

/* SHOWCASE / GALLERY */
.premium-showcase,
.featured-projects,
.gallery-page .premium-showcase {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
}
.showcase-intro {
  max-width: 820px;
  color: #475569;
  font-size: 18px;
  margin-bottom: 40px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 22px;
}
.showcase-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
  transition: 0.35s ease;
}
.showcase-card.large {
  grid-row: span 2;
}
.showcase-card.wide {
  grid-column: span 2;
}
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.86),
    rgba(15, 23, 42, 0.15)
  );
}
.showcase-card:hover {
  transform: translateY(-8px);
}
.showcase-info {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 2;
  color: #fff;
}
.showcase-info span {
  display: inline-block;
  background: #fff !important;
  color: #0f172a !important;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}
.showcase-info h3 {
  color: #fff !important;
  font-size: 28px !important;
  margin-bottom: 8px;
}
.showcase-info p {
  color: #e5e7eb !important;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #0f172a, #111827, #020617) !important;
  color: #fff !important;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: 28px;
}
.stat-box h3 {
  color: #e5e7eb !important;
  font-size: 46px !important;
}
.stat-box p {
  color: #cbd5e1;
}

/* RESIDENTIAL / COMMERCIAL */
.market-section {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.market-card {
  background: #fff !important;
  color: #0f172a !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 28px;
  padding: 40px;
  min-height: 260px !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}
.market-card::before {
  display: none !important;
}
.market-card h3 {
  color: #0f172a !important;
  font-size: 30px;
}
.market-card p {
  color: #64748b !important;
}
.market-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #0f172a !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.market-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff !important;
  fill: none;
}

/* TESTIMONIALS */
.premium-reviews {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
}
.reviews-intro {
  max-width: 760px;
  color: #475569;
  font-size: 18px;
  margin-bottom: 38px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-left: 6px solid #334155 !important;
  border-radius: 26px !important;
  padding: 34px !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1) !important;
}
.review-stars {
  color: #0f172a !important;
  font-size: 23px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-form-box {
  max-width: 850px;
  margin: 45px auto 0 !important;
  background: linear-gradient(135deg, #0f172a, #111827) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 38px !important;
}
.review-form-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.review-form-header span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  color: #0f172a !important;
  font-size: 30px;
}
.review-form-header h3 {
  color: #fff !important;
}
.review-form-box input,
.review-form-box textarea,
.review-form-box select {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
}
.review-form-box button {
  width: 100%;
  background: #fff !important;
  color: #0f172a !important;
  border: 0;
  padding: 16px;
  border-radius: 999px;
  font-weight: 900;
}

/* MODALS */
.showcase-modal,
.project-modal,
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.showcase-modal-box,
.project-modal-content {
  width: min(1050px, 92vw);
  background: #111827;
  border-radius: 26px;
  overflow: hidden;
}
.showcase-modal-box img,
.project-modal img {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
  display: block;
}
.showcase-modal-info,
.project-modal-caption {
  padding: 26px 32px;
  background: #0f172a !important;
  color: #fff !important;
}
.showcase-close,
.project-modal > span,
.gallery-modal span {
  position: absolute;
  top: 24px;
  right: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 46px;
  cursor: pointer;
}
.showcase-nav,
.project-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 38px;
  cursor: pointer;
}
.showcase-nav.left,
.project-arrow.left {
  left: 34px;
}
.showcase-nav.right,
.project-arrow.right {
  right: 34px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 68px;
  height: 68px;
  background: #25d366 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0f172a, #111827) !important;
  color: #cbd5e1 !important;
  text-align: center;
  padding: 28px;
}

/* INTERNAL PAGES */
.about-page,
.services-page,
.gallery-page,
.contact-page {
  background: #f8fafc !important;
}
.about-page .hero::before {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=2200&q=80") !important;
}
.services-page .hero::before {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2200&q=80") !important;
}
.gallery-page .hero::before {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=80") !important;
}
.contact-page .hero::before {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2200&q=80") !important;
}
.value-card,
.card {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}
.value-icon,
.service-svg-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #0f172a !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-icon svg,
.service-svg-icon svg {
  width: 34px;
  height: 34px;
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 1.8;
}

/* MOBILE */

@media (max-width: 1320px) {
  .logo-wrap {
    font-size: 1rem !important;
  }

  .logo-img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 1000px) {
  .services-shell {
    grid-template-columns: 1fr !important;
  }
  .services-right {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .showcase-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 310px;
  }
  .showcase-card.large,
  .showcase-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}
@media (max-width: 1000px) {
  nav {
    display: block !important;
    text-align: center;
    padding: 18px 5% !important;
  }
  .logo-wrap {
    justify-content: center;
    font-size: 22px !important;
  }
  .logo-img {
    width: 90px !important;
    height: 90px !important;
  }
  .links {
    margin-top: 18px;
    gap: 16px !important;
    row-gap: 16px !important;
  }
  nav a {
    margin: 0 !important;
    padding: 11px 14px !important;
    min-width: 105px;
  }
  .topbar {
    font-size: 13px;
    gap: 10px;
    text-align: center;
  }
  .hero {
    min-height: 68vh !important;
    padding: 70px 6% !important;
  }
  .hero-content {
    padding: 30px !important;
  }
  .hero h1 {
    font-size: 36px !important;
  }
  section {
    padding: 65px 6% !important;
  }
  .services-right {
    grid-template-columns: 1fr !important;
  }
  .services-badges {
    flex-direction: column;
  }
  .service-feature-card {
    min-height: auto !important;
  }
}

/* ===== PREMIUM ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-feature-card,
.showcase-card,
.market-card,
.testimonial-card,
.value-card,
.card,
.stat-box {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.8s ease !important;
}

.service-feature-card:hover,
.showcase-card:hover,
.market-card:hover,
.testimonial-card:hover,
.value-card:hover,
.card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow: 0 28px 75px rgba(15, 23, 42, 0.16) !important;
}

.market-icon,
.value-icon,
.service-svg-icon {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}

.service-feature-card:hover .service-circle,
.market-card:hover .market-icon,
.value-card:hover .value-icon,
.card:hover .service-svg-icon {
  transform: translateY(-5px) rotate(-3deg) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22) !important;
}

/* Animated stats */
.stat-box {
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 20px;
  color: #38bdf8;
  font-size: 28px;
  font-weight: 900;
  opacity: 0.85;
  animation: statPulse 2.2s ease-in-out infinite;
}

@keyframes statPulse {
  0% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
}

/* Hero soft motion */
.hero-content {
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Buttons animation */
.btn,
.services-cta,
.review-form-box button,
nav a {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
}

.btn:hover,
.services-cta:hover,
.review-form-box button:hover,
nav a:hover {
  transform: translateY(-4px) !important;
}

/* Gallery zoom */
.showcase-card::after {
  content: "View Project";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  background: #ffffff;
  color: #0f172a;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.3s ease;
}

.showcase-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth glowing line */
.home-main-services {
  position: relative;
  overflow: hidden;
}

.home-main-services::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #94a3b8, transparent);
  animation: sectionLine 5s linear infinite;
}

@keyframes sectionLine {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

/* Mobile: reduce motion a bit */
@media (max-width: 768px) {
  .hero-content {
    animation: none;
  }
}

/* PREMIUM CONTACT FORM SELECT FINAL */
.contact-page form select {
  width: 100% !important;
  padding: 16px 18px !important;
  margin-bottom: 14px !important;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  font-size: 16px !important;
  font-family: Arial, sans-serif !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05) !important;
  cursor: pointer !important;
}

.contact-page form select:focus {
  outline: none !important;
  border-color: #334155 !important;
  box-shadow: 0 0 0 4px rgba(51, 65, 85, 0.12) !important;
}

.contact-page form select option,
.contact-page form select optgroup {
  color: #111827 !important;
  background: #ffffff !important;
}

/* ================================
   RESPONSIVE FINAL FIX
================================ */

/* Tablets */
@media (max-width: 1100px) {
  nav {
    display: block !important;
    text-align: center !important;
  }

  .logo-wrap {
    justify-content: center !important;
  }

  .links {
    margin-top: 18px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .services-shell {
    grid-template-columns: 1fr !important;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 320px !important;
  }

  .showcase-card.large,
  .showcase-card.wide {
    grid-row: span 1 !important;
    grid-column: span 1 !important;
  }
}

/* Phones */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  .topbar {
    padding: 10px 5% !important;
    font-size: 12px !important;
    gap: 8px !important;
    text-align: center !important;
  }

  nav {
    padding: 16px 5% !important;
  }

  .logo-img {
    width: 78px !important;
    height: 78px !important;
  }

  .logo-wrap {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .links {
    gap: 12px !important;
    row-gap: 12px !important;
  }

  nav a {
    min-width: auto !important;
    padding: 10px 13px !important;
    font-size: 11px !important;
  }

  section {
    padding: 60px 5% !important;
  }

  h1 {
    font-size: 34px !important;
  }

  h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  .hero {
    min-height: auto !important;
    padding: 70px 5% !important;
  }

  .hero-content {
    width: 100% !important;
    padding: 28px !important;
    border-radius: 24px !important;
  }

  .hero h1 {
    font-size: 34px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .btn {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  .services-left h2 {
    font-size: 32px !important;
  }

  .services-badges {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .services-right {
    grid-template-columns: 1fr !important;
  }

  .service-feature-card {
    min-height: auto !important;
  }

  .market-grid,
  .stats-grid,
  .grid {
    grid-template-columns: 1fr !important;
  }

  .showcase-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 300px !important;
  }

  .showcase-info {
    padding: 22px !important;
  }

  .showcase-info h3 {
    font-size: 24px !important;
  }

  .review-form-box {
    padding: 26px !important;
  }

  .review-form-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .whatsapp-float {
    width: 58px !important;
    height: 58px !important;
    right: 18px !important;
    bottom: 18px !important;
  }

  .showcase-nav.left,
  .project-arrow.left {
    left: 10px !important;
  }

  .showcase-nav.right,
  .project-arrow.right {
    right: 10px !important;
  }
}

/* Small phones */
@media (max-width: 430px) {
  .topbar span {
    width: 100% !important;
  }

  .links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  nav a {
    width: 100% !important;
    padding: 11px 8px !important;
  }

  .logo-wrap {
    font-size: 18px !important;
  }

  .logo-img {
    width: 70px !important;
    height: 70px !important;
  }

  .hero h1 {
    font-size: 30px !important;
  }

  .hero-content {
    padding: 24px !important;
  }

  .services-left h2 {
    font-size: 30px !important;
  }

  .service-feature-card,
  .market-card,
  .testimonial-card,
  .value-card,
  .card {
    padding: 24px !important;
  }

  .showcase-grid {
    grid-auto-rows: 270px !important;
  }
}

/* ===== HOME NAVBAR + HERO LABEL RESPONSIVE FIX ===== */

/* Navbar igual en todas las páginas, pero bien acomodado */
nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

nav .links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
}

/* Botones del hero principal */
.hero .btn {
  display: inline-block !important;
  width: auto !important;
  margin: 8px 8px 0 0 !important;
}

/* Primer label del hero */
.hero .tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

/* Responsive solo para móvil */
@media (max-width: 768px) {
  nav {
    display: block !important;
    text-align: center !important;
  }

  nav .logo-wrap {
    justify-content: center !important;
  }

  nav .links {
    margin-top: 18px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    row-gap: 12px !important;
  }

  nav a {
    width: auto !important;
    min-width: 105px !important;
  }

  .hero .btn {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  .hero .tag {
    width: 100% !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    padding: 10px 12px !important;
  }
}

@media (max-width: 430px) {
  nav .links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  nav a {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ===== NAVBAR PREMIUM FINAL LOOK ===== */
nav {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12) !important;
}

nav .links {
  background: rgba(248, 250, 252, 0.85) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 999px !important;
  padding: 8px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 25px rgba(15, 23, 42, 0.08) !important;
}

nav a {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #0f172a !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  transition: 0.25s ease !important;
}

nav a:hover {
  background: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22) !important;
}

/* Mobile navbar premium */
@media (max-width: 768px) {
  nav .links {
    border-radius: 24px !important;
    padding: 12px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  nav a {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    text-align: center !important;
  }
}

/* ===== RESIDENTIAL / COMMERCIAL CARDS WITH REPRESENTATIVE BACKGROUNDS ===== */
.market-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: 360px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  color: #fff !important;
  background-size: cover !important;
  background-position: center !important;
  border: 0 !important;
}

.market-card:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=80") !important;
}

.market-card:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80") !important;
}

.market-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88),
    rgba(15, 23, 42, 0.22)
  ) !important;
  z-index: 1 !important;
}

.market-card > * {
  position: relative !important;
  z-index: 2 !important;
}

.market-card h3 {
  color: #ffffff !important;
}

.market-card p {
  color: #e5e7eb !important;
}

.market-icon {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(10px) !important;
}

.market-icon svg {
  stroke: #ffffff !important;
}

.market-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow: 0 32px 85px rgba(15, 23, 42, 0.28) !important;
}

/* ================================
   PHASE 1 - CONVERSION BOOST
================================ */

/* Call Floating Button */
.call-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 68px;
  height: 68px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.28);
  z-index: 9999;
  transition: 0.3s ease;
}

.call-float:hover {
  transform: scale(1.08);
  background: #334155;
}

.call-float svg {
  width: 31px;
  height: 31px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* Estimate Popup */
.estimate-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 25px;
}

.estimate-popup-box {
  width: min(520px, 95vw);
  background: #ffffff;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.estimate-popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #f1f5f9;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: #0f172a;
}

.estimate-popup-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin-bottom: 14px;
}

.estimate-popup-box span {
  display: inline-block;
  background: #e2e8f0;
  color: #0f172a;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.estimate-popup-box h3 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 12px;
}

.estimate-popup-box p {
  color: #475569;
  font-size: 17px;
  margin-bottom: 26px;
}

.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.popup-btn {
  background: #0f172a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
}

.popup-btn.alt {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

/* Success Message */
.success-message {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 18px 20px;
  border-radius: 18px;
  margin-bottom: 22px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}

.success-message.show {
  display: block;
  animation: successPop 0.55s ease;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Strip */
.conversion-strip {
  background: #0f172a;
  color: #fff;
  padding: 24px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.conversion-strip strong {
  font-size: 18px;
}

.conversion-strip a {
  background: #fff;
  color: #0f172a;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .call-float {
    width: 58px;
    height: 58px;
    left: 18px;
    bottom: 18px;
  }

  .estimate-popup-box {
    padding: 30px 24px;
  }

  .estimate-popup-box h3 {
    font-size: 26px;
  }
}

/* ===== AUTO-HIDE PREMIUM NAVBAR ===== */

nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease !important;
}

nav.nav-hidden {
  transform: translateY(-120%) !important;
}

nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
}

/* evitar que el contenido quede debajo del navbar */
body {
  padding-top: 115px !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 140px !important;
  }
}

/* On Time Results SVG */
.services-badges svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* ================================
   PHASE 2 - TRUST & BRANDING
================================ */

.trust-bar {
  background: #ffffff;
  padding: 26px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #0f172a;
}

.trust-item span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-yv1 {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7);
  padding: 95px 8%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.why-card h3 {
  color: #0f172a;
  font-size: 22px;
  margin-bottom: 10px;
}

.why-card p {
  color: #64748b;
}

.brand-strip {
  background: #0f172a;
  color: #fff;
  padding: 70px 8%;
  text-align: center;
}

.brand-strip img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  margin-bottom: 18px;
}

.brand-strip h2 {
  color: #fff;
  margin-bottom: 12px;
}

.brand-strip p {
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto 24px;
}

.brand-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .brand-strip img {
    width: 90px;
    height: 90px;
  }
}

/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer {
  background: linear-gradient(135deg, #020617, #0f172a, #111827);

  color: #e2e8f0;

  padding: 80px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;

  margin-bottom: 50px;
}

.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;

  margin-bottom: 18px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 30px;

  margin-bottom: 14px;
}

.footer-brand p {
  color: #94a3b8;

  line-height: 1.8;

  max-width: 420px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 24px;
}

.footer-badges span {
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  padding: 10px 16px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 800;
}

.footer-column h4 {
  color: #ffffff;

  font-size: 18px;

  margin-bottom: 20px;
}

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

.footer-column a {
  color: #94a3b8;

  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;

  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 25px;

  text-align: center;

  color: #64748b;

  font-size: 14px;
}

/* MOBILE */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-column a:hover {
    transform: none;
  }
}

/* ===== COMPACT PREMIUM FOOTER ===== */
.compact-footer {
  padding: 42px 8% 22px !important;
  background: linear-gradient(135deg, #020617, #0f172a, #111827) !important;
}

.footer-compact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-brand.compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
}

.footer-brand.compact .footer-logo {
  width: 82px !important;
  height: 82px !important;
  margin: 0 !important;
}

.footer-brand.compact h3 {
  font-size: 26px !important;
  margin: 0 0 6px !important;
  color: #ffffff !important;
}

.footer-brand.compact p {
  margin: 0 !important;
  color: #cbd5e1 !important;
  max-width: 620px !important;
  line-height: 1.6 !important;
}

.footer-contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-contact-row a {
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.footer-contact-row a:hover {
  background: #ffffff;
  color: #0f172a !important;
  transform: translateY(-3px);
}

.footer-mini-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-mini-badges span {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.compact-footer .footer-bottom {
  margin-top: 24px !important;
  padding-top: 18px !important;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .footer-brand.compact {
    flex-direction: column;
  }

  .footer-brand.compact .footer-logo {
    width: 74px !important;
    height: 74px !important;
  }

  .footer-contact-row {
    flex-direction: column;
    width: 100%;
  }

  .footer-contact-row a {
    width: 100%;
  }
}

/* ===== PREMIUM TRUST SECTION ===== */
.premium-trust {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
  padding: 70px 8% !important;
}

.trust-wrap {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.trust-head span {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.trust-head h2 {
  font-size: 38px !important;
  margin-bottom: 12px !important;
}

.trust-head p {
  color: #64748b;
  font-size: 17px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.trust-card strong {
  display: block;
  color: #0f172a;
  font-size: 24px;
  margin-bottom: 8px;
}

.trust-card p {
  color: #64748b;
  margin: 0;
  font-weight: 700;
}

/* ===== PREMIUM MENU BUTTON NAVBAR ===== */
.menu-toggle {
  background: #0f172a !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 13px 22px !important;
  font-weight: 900 !important;
  letter-spacing: 0.6px !important;
  cursor: pointer !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22) !important;
}

.nav-menu {
  position: absolute !important;
  top: 100% !important;
  right: 8% !important;
  display: none !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 14px !important;
  min-width: 220px !important;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18) !important;
}

.nav-menu.open {
  display: flex !important;
}

.nav-menu a {
  width: 100% !important;
  text-align: left !important;
  margin: 0 !important;
}

@media (max-width: 1000px) {
  .trust-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    right: 5% !important;
    left: 5% !important;
    min-width: auto !important;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-head h2 {
    font-size: 31px !important;
  }
}

/* ===== MOBILE MENU ONLY ===== */

/* Escritorio: mantener navbar actual */
.menu-toggle {
  display: none !important;
}

/* Solo móviles */
@media (max-width: 768px) {
  nav {
    position: relative !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 52px !important;
    height: 52px !important;

    border: none !important;
    border-radius: 16px !important;

    background: rgba(15, 23, 42, 0.95) !important;
    color: #fff !important;

    font-size: 24px !important;
    font-weight: 900 !important;

    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25) !important;

    z-index: 1000 !important;
  }

  nav .links {
    display: none !important;

    position: absolute !important;

    top: 85px !important;
    left: 5% !important;
    right: 5% !important;

    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) !important;

    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 24px !important;

    padding: 18px !important;

    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18) !important;
  }

  nav .links.open {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  nav .links a {
    width: 100% !important;
    text-align: center !important;

    background: #f8fafc !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 14px !important;

    padding: 14px !important;

    font-size: 14px !important;

    font-weight: 800 !important;
  }

  nav .links a:hover {
    background: #0f172a !important;
    color: #fff !important;
  }

  .logo-wrap {
    justify-content: flex-start !important;
    padding-right: 70px !important;
  }
}

/* ===== MOBILE HAMBURGER MENU ===== */

.menu-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 52px !important;
    height: 52px !important;

    border: none !important;
    border-radius: 18px !important;

    background: #0f172a !important;
    color: #fff !important;

    font-size: 28px !important;
    font-weight: 900 !important;

    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2) !important;

    cursor: pointer !important;
  }

  nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  nav .links {
    display: none !important;

    position: absolute !important;
    top: 90px !important;
    right: 0 !important;

    width: 260px !important;

    flex-direction: column !important;
    gap: 10px !important;

    padding: 18px !important;

    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;

    border-radius: 24px !important;

    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18) !important;
  }

  nav .links.open {
    display: flex !important;
  }

  nav .links a {
    width: 100% !important;

    margin: 0 !important;

    padding: 14px 18px !important;

    border-radius: 14px !important;

    text-align: center !important;

    background: #f8fafc !important;

    border: 1px solid #e2e8f0 !important;

    font-weight: 800 !important;
  }

  nav .links a:hover {
    background: #0f172a !important;
    color: #fff !important;
  }
}

/* ===== NAVBAR STRUCTURE FIX FINAL ===== */

/* Desktop */
nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

nav .links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
}

.menu-toggle {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 5% !important;
  }

  nav .logo-wrap {
    justify-content: flex-start !important;
    font-size: 18px !important;
    padding-right: 10px !important;
  }

  nav .logo-img {
    width: 62px !important;
    height: 62px !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    border-radius: 16px !important;
    background: #0f172a !important;
    color: #fff !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25) !important;
  }

  nav .links {
    display: none !important;
    position: absolute !important;
    top: 82px !important;
    left: 5% !important;
    right: 5% !important;
    width: auto !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(18px) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18) !important;
  }

  nav .links.open {
    display: flex !important;
  }

  nav .links a {
    width: 100% !important;
    margin: 0 !important;
    padding: 14px !important;
    text-align: center !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: none !important;
  }

  nav .links a:hover {
    background: #0f172a !important;
    color: #fff !important;
  }
}

/* ===== ON TIME RESULTS SVG ===== */
.badge-svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: block !important;
}

/* ===== PREMIUM TRUST BAND V2 ===== */
.premium-trust-v2 {
  padding: 34px 8% !important;
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06) !important;
}

.trust-v2-wrap {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-v2-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: 0.35s ease;
  text-align: center;
}

.trust-v2-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.trust-v2-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-v2-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-v2-item strong {
  display: block;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 4px;
}

.trust-v2-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

/* Animation */
.trust-v2-item {
  opacity: 0;
  transform: translateY(24px);
  animation: trustReveal 0.8s ease forwards;
}

.trust-v2-item:nth-child(1) {
  animation-delay: 0.05s;
}
.trust-v2-item:nth-child(2) {
  animation-delay: 0.15s;
}
.trust-v2-item:nth-child(3) {
  animation-delay: 0.25s;
}
.trust-v2-item:nth-child(4) {
  animation-delay: 0.35s;
}

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

@media (max-width: 1100px) {
  .trust-v2-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-trust-v2 {
    padding: 28px 5% !important;
  }

  .trust-v2-wrap {
    grid-template-columns: 1fr;
  }

  .trust-v2-item {
    padding: 22px;
  }
}

/* ===========================
   WHY YV1 PREMIUM
=========================== */

.yv1-why-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #eef2f7);
  text-align: center;
}

.yv1-why-subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
  color: #64748b;
  font-size: 18px;
}

.yv1-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.yv1-why-card {
  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 28px;

  padding: 35px 28px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);

  transition: 0.35s;
}

.yv1-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
}

.yv1-why-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 20px;

  border-radius: 22px;

  background: #0f172a;

  display: flex;
  align-items: center;
  justify-content: center;
}

.yv1-why-icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yv1-why-card h3 {
  margin-bottom: 12px;
}

.yv1-why-card p {
  color: #64748b;
}

.yv1-stats {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.yv1-stat {
  background: #0f172a;

  color: #fff;

  border-radius: 24px;

  padding: 30px;
}

.yv1-stat span {
  display: block;

  font-size: 54px;

  font-weight: 900;

  margin-bottom: 8px;
}

.yv1-stat small {
  font-size: 15px;

  color: #cbd5e1;
}

@media (max-width: 1000px) {
  .yv1-why-grid,
  .yv1-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .yv1-why-grid,
  .yv1-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PREMIUM REVIEWS V2
========================== */

.yv1-premium-reviews {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2f7) !important;
  padding: 95px 8% !important;
}

.yv1-premium-reviews h2 {
  max-width: 760px;
}

.yv1-premium-reviews .reviews-intro {
  max-width: 780px;
  color: #64748b;
  font-size: 18px;
  margin-bottom: 42px;
}

.yv1-premium-reviews .reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.premium-review-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-left: 0 !important;
  border-radius: 28px !important;
  padding: 30px !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: 0.35s ease !important;
}

.premium-review-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}

.premium-review-card:hover {
  transform: translateY(-9px) !important;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.15) !important;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: 0.5px;
}

.review-top strong {
  display: block;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.review-top span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.review-stars-svg {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.review-stars-svg svg {
  width: 19px;
  height: 19px;
  fill: #c7a34a;
  stroke: #0f172a;
  stroke-width: 1.2;
}

.premium-review-card p {
  color: #334155 !important;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.review-tag {
  display: inline-flex;
  background: #e2e8f0;
  color: #0f172a;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

/* Smaller cleaner form */
.yv1-premium-reviews .review-form-box {
  max-width: 760px !important;
  margin-top: 48px !important;
  padding: 34px !important;
}

.yv1-premium-reviews .review-form-header span svg {
  width: 26px !important;
  height: 26px !important;
  stroke: #0f172a !important;
  fill: none !important;
}

@media (max-width: 1000px) {
  .yv1-premium-reviews .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

/* GALLERY */

:root {
  --yv1-navy: #0f172a;
  --yv1-navy-deep: #020617;
  --yv1-slate: #475569;
  --yv1-soft: #f8fafc;
  --yv1-line: #e2e8f0;
  --yv1-gold: #c7a34a;
  --yv1-gold-light: #e1c578;
  --yv1-white: #ffffff;
  --yv1-shadow: 0 24px 65px rgba(15, 23, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gallery-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--yv1-soft) !important;
  color: var(--yv1-navy);
  font-family: Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

/* HERO */
.gallery-page .gallery-hero {
  position: relative !important;
  isolation: isolate;
  min-height: 68vh !important;
  padding: 105px 8% 90px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.94) 0%,
      rgba(15, 23, 42, 0.82) 48%,
      rgba(15, 23, 42, 0.48) 100%
    ),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=85")
      center / cover no-repeat !important;
}

.gallery-page .gallery-hero::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(199, 163, 74, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, transparent 60%, rgba(199, 163, 74, 0.12));
}

.gallery-page .gallery-hero::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(225, 197, 120, 0.26);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(199, 163, 74, 0.035),
    0 0 0 140px rgba(199, 163, 74, 0.025);
  pointer-events: none;
}

.gallery-hero-content {
  width: min(780px, 100%);
  position: relative;
  z-index: 2;
}

.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 15px;
  color: #f8e5ac;
  border: 1px solid rgba(225, 197, 120, 0.34);
  border-radius: 999px;
  background: rgba(199, 163, 74, 0.1);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yv1-gold-light);
  box-shadow: 0 0 0 5px rgba(225, 197, 120, 0.12);
}

.gallery-page .gallery-hero h1 {
  max-width: 760px;
  margin: 0 0 22px !important;
  color: #ffffff !important;
  font-size: clamp(42px, 5.4vw, 72px) !important;
  line-height: 1.04 !important;
  letter-spacing: -2.5px;
}

.gallery-page .gallery-hero h1 span {
  color: var(--yv1-gold-light);
}

.gallery-page .gallery-hero p {
  max-width: 680px;
  margin: 0 0 32px;
  color: #dbe4ef !important;
  font-size: 18px !important;
  line-height: 1.75;
}

.gallery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.gallery-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.28s ease;
}

.gallery-hero-btn.primary {
  background: var(--yv1-gold);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(199, 163, 74, 0.28);
}

.gallery-hero-btn.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.gallery-hero-btn:hover {
  transform: translateY(-3px);
}

.gallery-hero-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TRUST STRIP */
.portfolio-trust {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dfe5ed;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--yv1-shadow);
  overflow: hidden;
}

.portfolio-trust-item {
  min-height: 92px;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
}

.portfolio-trust-item:first-child {
  border-radius: 15px 0 0 15px;
}

.portfolio-trust-item:last-child {
  border-radius: 0 15px 15px 0;
}

.portfolio-trust-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--yv1-gold);
  background: #f6f0e0;
}

.portfolio-trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--yv1-navy);
  font-size: 15px;
}

.portfolio-trust-item span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

/* PORTFOLIO */
.gallery-page .project-portfolio {
  padding: 105px 8% 95px !important;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(199, 163, 74, 0.09),
      transparent 24%
    ),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%) !important;
}

.portfolio-heading {
  max-width: 1240px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.portfolio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #9a7627;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.portfolio-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--yv1-gold);
}

.portfolio-heading h2 {
  max-width: 720px;
  margin: 0 !important;
  color: var(--yv1-navy) !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: -1.7px;
}

.portfolio-heading h2 span {
  color: var(--yv1-gold);
}

.portfolio-heading p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
}

.project-toolbar {
  max-width: 1240px;
  margin: 0 auto 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--yv1-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(14px);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-filter {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: #475569;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.project-filter:hover,
.project-filter.is-active {
  color: #ffffff;
  background: var(--yv1-navy);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.project-count {
  flex: 0 0 auto;
  padding: 0 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.project-count strong {
  color: var(--yv1-navy);
}

.projects-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.project-card {
  grid-column: span 4;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: var(--yv1-navy);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    opacity 0.28s ease;
}

.project-card.featured {
  grid-column: span 8;
}

.project-card.is-hidden {
  display: none;
}

.project-card:focus-visible {
  outline: 3px solid rgba(199, 163, 74, 0.65);
  outline-offset: 4px;
}

.project-media {
  position: absolute;
  inset: 0;
  background-image: var(--project-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(2, 6, 23, 0.96) 0%,
      rgba(2, 6, 23, 0.35) 52%,
      rgba(2, 6, 23, 0.04) 100%
    ),
    linear-gradient(135deg, rgba(199, 163, 74, 0.11), transparent 46%);
  transition: background 0.35s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.98);
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.project-card:hover .project-media {
  transform: scale(1.065);
}

.project-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.project-card-top {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.project-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-category::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yv1-gold-light);
}

.project-number {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
}

.project-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 30px;
  color: #ffffff;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-bottom: 12px;
  color: #d5dce7;
  font-size: 12px;
  font-weight: 800;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--yv1-gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-content h3 {
  margin: 0 0 9px !important;
  color: #ffffff !important;
  font-size: 27px !important;
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.project-card.featured .project-content h3 {
  font-size: 34px !important;
}

.project-content p {
  max-width: 630px;
  margin: 0;
  color: #dbe3ee;
  font-size: 14px;
  line-height: 1.6;
}

.project-view {
  width: max-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f2d68e;
  font-size: 13px;
  font-weight: 900;
}

.project-view span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(225, 197, 120, 0.36);
  border-radius: 50%;
  transition: 0.28s ease;
}

.project-card:hover .project-view span {
  color: var(--yv1-navy);
  background: var(--yv1-gold-light);
  transform: translateX(3px);
}

/* BOTTOM CTA */
.portfolio-cta {
  max-width: 1240px;
  margin: 60px auto 0;
  padding: 42px 46px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(199, 163, 74, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, #020617, #0f172a 65%, #172033);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.23);
}

.portfolio-cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  pointer-events: none;
}

.portfolio-cta-copy,
.portfolio-cta-actions {
  position: relative;
  z-index: 2;
}

.portfolio-cta small {
  display: block;
  margin-bottom: 7px;
  color: var(--yv1-gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.portfolio-cta h3 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: clamp(25px, 3vw, 36px) !important;
}

.portfolio-cta p {
  max-width: 690px;
  margin: 0;
  color: #cbd5e1;
}

.portfolio-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.portfolio-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.portfolio-cta-actions .estimate {
  color: #ffffff;
  background: var(--yv1-gold);
}

.portfolio-cta-actions .call {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-cta-actions a:hover {
  transform: translateY(-3px);
}

/* MODAL */
.gallery-page .project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(15px);
}

.gallery-page .project-modal.is-open {
  display: flex;
  animation: modalFade 0.25s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.project-modal-dialog {
  width: min(1120px, 96vw);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  align-items: stretch;
}

.project-modal-media {
  min-height: 600px;
  position: relative;
  background: #0f172a center / cover no-repeat;
}

.project-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.4), transparent 45%);
}

.project-modal-side {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--yv1-navy);
  justify-content: flex-start;
  align-self: stretch;
  min-width: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.modal-category {
  width: max-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: #8c681e;
  border: 1px solid #eadba9;
  border-radius: 999px;
  background: #faf4e3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-modal-side h3 {
  margin: 0 0 15px !important;
  color: var(--yv1-navy) !important;
  font-size: 34px !important;
  line-height: 1.12;
}

.project-modal-side > p {
  margin: 0 0 24px;
  color: #64748b;
  line-height: 1.75;
}

.project-modal-side h3,
.project-modal-side > p,
.modal-details,
.modal-detail,
.modal-estimate {
  min-width: 0;
}

.modal-details {
  margin: 0 0 28px;
  padding: 20px 0;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--yv1-line);
  border-bottom: 1px solid var(--yv1-line);
}

.modal-detail {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  font-size: 13px;
  position: relative;
}

.modal-detail strong {
  color: #94a3b8;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  line-height: 1.35;
}

.modal-detail span {
  color: #334155;
  font-weight: 800;
  display: block;
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
}

.modal-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--yv1-navy);
  font-weight: 900;
  transition: 0.25s ease;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.modal-estimate:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.project-modal-close,
.project-modal-nav {
  position: fixed;
  z-index: 100001;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: 0.25s ease;
}

.project-modal-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
}

.project-modal-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 30px;
}

.project-modal-nav.prev {
  left: 20px;
}

.project-modal-nav.next {
  right: 20px;
}

.project-modal-close:hover,
.project-modal-nav:hover {
  color: var(--yv1-navy);
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-card,
  .project-card.featured {
    grid-column: span 6;
  }

  .project-modal-dialog {
    grid-template-columns: 1fr;
  }

  .project-modal-media {
    min-height: 420px;
  }

  .portfolio-cta {
    grid-template-columns: 1fr;
  }

  .portfolio-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .portfolio-trust {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .portfolio-trust-item,
  .portfolio-trust-item:first-child,
  .portfolio-trust-item:last-child {
    border-radius: 14px;
  }

  .project-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-count {
    padding: 0 8px 4px;
  }
}

@media (max-width: 700px) {
  .gallery-page .gallery-hero {
    min-height: auto !important;
    padding: 78px 6% 100px !important;
    background-position: 62% center !important;
  }

  .gallery-page .gallery-hero h1 {
    letter-spacing: -1.6px;
  }

  .gallery-hero-actions,
  .portfolio-cta-actions {
    flex-direction: column;
  }

  .gallery-hero-btn,
  .portfolio-cta-actions a {
    width: 100%;
  }

  .gallery-page .project-portfolio {
    padding: 85px 5% 75px !important;
  }

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

  .project-card,
  .project-card.featured {
    grid-column: auto;
    min-height: 410px;
  }

  .project-card.featured .project-content h3,
  .project-content h3 {
    font-size: 26px !important;
  }

  .project-content {
    padding: 25px;
  }

  .portfolio-cta {
    padding: 36px 26px;
  }

  .gallery-page .project-modal {
    padding: 12px;
  }

  .project-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px;
  }

  .project-modal-media {
    min-height: 300px;
  }

  .project-modal-side {
    padding: 30px 24px;
    overflow-y: visible;
  }

  .project-modal-side h3 {
    font-size: 29px !important;
  }

  .project-modal-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .project-modal-nav.prev {
    left: calc(50% - 59px);
  }

  .project-modal-nav.next {
    right: calc(50% - 59px);
  }
  .modal-detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal-detail span {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
