/* ═══════════════════════════════════════════
   VICTORY PRO DECK BUILDERS - COMPLETE STYLES
   cPanel-ready static version
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background-color: #0f1219;
  color: #f0f0f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.serif { font-family: 'Playfair Display', serif; }
.sans { font-family: 'Lato', sans-serif; }
.gold { color: #C9A96E; }
.vcontainer { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .vcontainer { padding: 0 32px; } }

/* ── Sticky Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background-color: rgba(15, 18, 25, 0.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s, border-bottom 0.5s;
}
.site-header.scrolled {
  background-color: rgba(15, 18, 25, 0.92);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .header-inner { height: 72px; } }
.header-logo { height: auto; width: 150px; object-fit: contain; }
.desktop-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  background: none; border: none; color: rgba(255,255,255,0.8);
  font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-link:hover { color: #C9A96E; }
.cta-btn {
  padding: 10px 20px; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  background-color: #C9A96E; color: #1a1a1a;
  border: none; border-radius: 3px; transition: filter 0.3s;
}
.cta-btn:hover { filter: brightness(1.1); }

/* Mobile menu */
.mobile-toggle {
  display: block; background: none; border: none;
  color: rgba(255,255,255,0.8); padding: 8px;
}
.mobile-toggle:hover { color: #fff; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 0 20px 20px; background-color: rgba(15, 18, 25, 0.95);
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu .nav-link { text-align: left; padding: 8px 0; }
.mobile-menu .cta-btn { width: 100%; padding: 12px 20px; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-color: rgba(10, 15, 25, 0.55);
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 192px;
  background: linear-gradient(to bottom, transparent, rgba(15, 18, 25, 1));
}
@media (min-width: 640px) { .hero-gradient { height: 256px; } }
.hero-content {
  position: relative; z-index: 10; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 80px;
}
.hero-text {
  width: 100%; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 32px 20px 32px;
}
@media (min-width: 640px) { .hero-text { padding: 64px 32px 32px; } }
.hero-title {
  color: #fff; font-weight: 500; line-height: 1.1;
  font-size: clamp(2.25rem, 6vw, 4.5rem); max-width: 56rem;
}
.hero-subtitle {
  color: rgba(255,255,255,0.9); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-top: 12px; max-width: 48rem;
}
.hero-cta {
  margin-top: 32px; padding: 16px 32px;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  background-color: #C9A96E; color: #1a1a1a;
  border: 1px solid rgba(201,169,110,0.6); border-radius: 4px;
  box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}
@media (min-width: 640px) {
  .hero-cta { margin-top: 40px; padding: 20px 48px; font-size: 16px; }
}
.hero-transition-text {
  width: 100%; text-align: center; padding: 32px 20px;
}
@media (min-width: 640px) { .hero-transition-text { padding: 48px 32px; } }
.hero-transition-text p {
  color: rgba(255,255,255,0.85); font-weight: 300;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  max-width: 42rem; margin: 0 auto; line-height: 1.6;
}
.typeform-hero-wrap {
  width: 100%; display: flex; justify-content: center;
  padding: 0 16px 64px;
}
@media (min-width: 640px) { .typeform-hero-wrap { padding: 0 24px 96px; } }
.typeform-hero-box {
  width: 100%; max-width: 672px; border-radius: 8px; overflow: hidden;
  background-color: rgba(245, 243, 240, 0.97);
  min-height: 480px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 2px 12px rgba(0,0,0,0.15);
}
.typeform-hero-box > div { width: 100%; height: 100%; min-height: 480px; }

/* ── Services Section ── */
.services-section {
  position: relative; width: 100%; padding: 80px 0;
  background: linear-gradient(180deg, #0f1219 0%, #141820 40%, #181c24 100%);
}
@media (min-width: 640px) { .services-section { padding: 112px 0; } }
.section-label-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label-line span.line { display: block; width: 32px; height: 1px; background: #C9A96E; }
.section-label-line span.text {
  color: #C9A96E; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400;
}
.services-title {
  color: #fff; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.services-accent { width: 56px; height: 2px; background: #C9A96E; margin-top: 16px; }

/* Carousel wrapper */
.services-carousel-wrapper {
  position: relative; margin-top: 48px;
}
.services-carousel {
  display: flex; gap: 32px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.services-carousel::-webkit-scrollbar { display: none; }
.service-card {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
  flex: 0 0 100%; scroll-snap-align: start;
}
@media (min-width: 768px) {
  .service-card { flex: 0 0 calc((100% - 64px) / 3); }
}
.service-card-img {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
}
.service-card-img img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease-out;
}
.service-card:hover .service-card-img img { transform: scale(1.08); transition: transform 0.6s ease; }
.service-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(20,20,20,0.7) 0%, rgba(20,20,20,0.25) 40%, rgba(20,20,20,0.05) 100%);
  pointer-events: none;
}
.service-card-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: #C9A96E; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.service-card:hover .service-card-accent { transform: scaleX(1); }

/* Carousel arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13, 17, 23, 0.85); border: 1px solid #c79a6b;
  color: #c79a6b; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s, color 0.3s;
  padding: 0; font-size: 0;
}
.carousel-arrow:hover { background: #c79a6b; color: #0d1117; }
.carousel-arrow:hover svg { stroke: #0d1117; }
.carousel-arrow svg { width: 20px; height: 20px; stroke: #c79a6b; stroke-width: 2.5; fill: none; transition: stroke 0.3s; }
.carousel-arrow-left { left: -22px; }
.carousel-arrow-right { right: -22px; }
@media (max-width: 767px) {
  .carousel-arrow-left { left: 8px; }
  .carousel-arrow-right { right: 8px; }
}

/* ── Services Section Enhancements ── */
.services-subheading {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 300;
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.services-header-center {
  text-align: center;
  margin-bottom: 56px;
}
.services-header-center .section-label-line {
  justify-content: center;
}
.services-header-center .services-accent {
  margin: 16px auto 0;
}

/* Card text overlay */
.service-card-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  pointer-events: none;
}
.service-card-text h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.service-card-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 4px 0 0;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Hover overlay with View Project button */
.service-card-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(10, 14, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover .service-card-hover-overlay {
  opacity: 1;
}
.view-project-btn {
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #1a1a1a;
  background-color: #C9A96E;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: filter 0.3s, transform 0.3s;
  pointer-events: auto;
}
.view-project-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.05);
}

/* CTA below carousel */
.services-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.services-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  background-color: #C9A96E;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: filter 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}
.services-cta-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 30px rgba(201,169,110,0.45);
}

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.trust-item span.trust-icon {
  font-size: 1rem;
}

/* Section bottom gradient fade */
.services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #181c24);
  pointer-events: none;
  z-index: 1;
}

/* ── Gradient Divider ── */
.gradient-divider-1 {
  width: 100%; height: 64px;
  background: linear-gradient(180deg, #181c24 0%, #1a1e28 100%);
}
@media (min-width: 640px) { .gradient-divider-1 { height: 80px; } }
@media (min-width: 1024px) { .gradient-divider-1 { height: 96px; } }

/* ── Signature Projects ── */
.projects-section {
  position: relative; width: 100%;
  padding: 32px 0 80px;
  background: linear-gradient(180deg, #1a1e28 0%, #1a1e28 50%, #1c2029 100%);
}
@media (min-width: 640px) { .projects-section { padding: 48px 0 112px; } }
@media (min-width: 1024px) { .projects-section { padding: 56px 0 128px; } }
.section-label-center {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px;
}
.section-label-center .line { display: block; width: 48px; height: 1px; background: #C9A96E; }
.section-label-center .text {
  color: #C9A96E; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400;
}
@media (min-width: 640px) { .section-label-center .text { font-size: 14px; } }
.projects-title {
  color: #fff; font-weight: 500; text-align: center;
  font-size: clamp(1.875rem, 5vw, 3rem); margin-bottom: 56px;
}
@media (min-width: 640px) { .projects-title { margin-bottom: 80px; } }
.projects-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 1024px) { .projects-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

/* Testimonial */
.testimonial-card {
  border-radius: 8px; padding: 32px 40px;
  background-color: rgba(25, 29, 38, 0.8);
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.stars { display: flex; gap: 4px; margin-bottom: 24px; }
.stars svg { width: 20px; height: 20px; fill: #C9A96E; }
.quote-mark {
  color: rgba(201,169,110,0.3); font-size: 3.75rem; line-height: 1; margin-bottom: 8px;
}
@media (min-width: 640px) { .quote-mark { font-size: 4.375rem; } }
.quote-text {
  color: rgba(255,255,255,0.9); font-style: italic; font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem); line-height: 1.6; margin-bottom: 32px;
}
.client-info { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.client-info img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.client-name { color: #fff; font-size: 14px; font-weight: 600; }
.client-location { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.gold-accent-line { width: 64px; height: 3px; background: #C9A96E; border-radius: 999px; }

/* Featured project video */
.featured-project {
  position: relative; overflow: hidden; border-radius: 16px;
  height: 500px;
}
@media (min-width: 640px) { .featured-project { height: 650px; } }
.featured-project video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.featured-project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.featured-project-text {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 40px;
}
.featured-project-text .label {
  color: #C9A96E; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.featured-project-text h3 {
  color: #fff; font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ── Our Approach ── */
.approach-section {
  width: 100%; padding: 80px 0;
  background: linear-gradient(180deg, #1c2029 0%, #1c2029 100%);
}
@media (min-width: 640px) { .approach-section { padding: 96px 0; } }
@media (min-width: 1024px) { .approach-section { padding: 112px 0; } }
.approach-header { margin-bottom: 64px; }
.approach-label {
  display: block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 20px;
}
.approach-title {
  color: #fff; font-weight: 400; line-height: 1.15;
  font-size: clamp(1.875rem, 4vw, 2.625rem); margin-bottom: 24px;
}
.approach-desc {
  color: #6b7a90; font-size: 15px; line-height: 1.8; max-width: 520px;
}
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px 80px;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-item .feature-line {
  width: 32px; height: 1px; background: #c9a84c; margin-bottom: 20px;
}
.feature-item h3 {
  color: #fff; font-weight: 400; font-size: 1.125rem; margin-bottom: 12px;
}
.feature-item p {
  color: #6b7a90; font-size: 14px; line-height: 1.8;
}

/* ── Gradient to CTA ── */
.gradient-to-cta {
  width: 100%; height: 200px;
  background: linear-gradient(to bottom, #1c2029 0%, #1a1408 50%, #c9a84c 100%);
}

/* ── Final CTA ── */
.cta-section {
  position: relative; width: 100%; padding: 80px 0;
  background: linear-gradient(135deg, #C9A96E 0%, #b8944f 30%, #a88540 60%, #C9A96E 100%);
}
@media (min-width: 640px) { .cta-section { padding: 96px 0; } }
@media (min-width: 1024px) { .cta-section { padding: 112px 0; } }
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.08;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.15) 10px, rgba(0,0,0,0.15) 11px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.15) 10px, rgba(0,0,0,0.15) 11px);
}
.cta-inner {
  position: relative; max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center;
}
@media (min-width: 640px) { .cta-inner { padding: 0 32px; } }
.cta-title {
  font-weight: 600; font-style: italic; color: #1a1a1a; line-height: 1.1;
  font-size: clamp(1.875rem, 5vw, 3.5rem); margin-bottom: 24px;
}
@media (min-width: 640px) { .cta-title { margin-bottom: 32px; } }
.cta-desc {
  font-weight: 400; color: rgba(30, 30, 30, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.6;
  max-width: 640px; margin: 0 auto 40px;
}
@media (min-width: 640px) { .cta-desc { margin-bottom: 48px; } }
.cta-typeform-box {
  width: 100%; max-width: 700px; margin: 0 auto 40px;
  background: #fff; border-radius: 12px; padding: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  min-height: 500px;
}
@media (min-width: 640px) { .cta-typeform-box { margin-bottom: 56px; } }
.cta-typeform-box > div { width: 100%; min-height: 480px; }

/* ── Footer ── */
.site-footer { width: 100%; background-color: #0f1219; }
.footer-inner {
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 640px) { .footer-inner { padding: 80px 40px 56px; } }
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (min-width: 1024px) { .footer-inner { padding: 80px 64px 56px; gap: 64px; } }
.footer-brand img { width: 250px; height: auto; object-fit: contain; margin-bottom: 24px; }
.footer-brand p {
  color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6;
  max-width: 360px; margin-bottom: 32px;
}
.social-icons { display: flex; align-items: center; gap: 20px; }
.social-icons a {
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.social-icons a:hover { color: #C9A96E; }
.footer-nav {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) { .footer-nav { align-items: center; } }
.footer-nav a {
  background: none; border: none;
  color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 0.05em;
  transition: color 0.3s; text-align: left; text-decoration: none;
}
@media (min-width: 768px) { .footer-nav a { text-align: center; } }
.footer-nav a:hover { color: #fff; }
.footer-contact {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) { .footer-contact { align-items: flex-end; text-align: right; } }
.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 0 24px;
}
@media (min-width: 640px) { .footer-bottom { padding: 0 40px; } }
@media (min-width: 1024px) { .footer-bottom { padding: 0 64px; } }
.footer-divider {
  width: 100%; height: 1px; margin-bottom: 24px;
  background-color: rgba(201,169,110,0.2);
}
.footer-copyright {
  color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 0.05em;
  text-align: center; padding-bottom: 32px;
}
