/* ============================================================
   FORECHECK STUDIO - Main Stylesheet
   Dark sports design studio theme with gold accents
   ============================================================ */

/* ----- CSS Custom Properties ----- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0c0c0c;
  --bg-card: #141414;
  --bg-input: #111111;
  --bg-nav: rgba(5, 5, 5, 0.85);
  --bg-nav-solid: rgba(5, 5, 5, 0.97);

  --gold: #c8a84e;
  --gold-light: #ddc06a;
  --gold-dark: #a68a3a;
  --gold-glow: rgba(200, 168, 78, 0.15);

  --text-primary: #ffffff;
  --text-secondary: #9a9a9a;
  --text-muted: #666666;
  --text-dim: #444444;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(200, 168, 78, 0.3);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1200px;
  --container-padding: 24px;
  --section-padding: 100px;
  --nav-height: 72px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ----- CSS Reset / Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ----- Utility Classes ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 48px 0;
  opacity: 0.4;
}

.gold-diamond {
  color: var(--gold);
  font-size: 14px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-title-large {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 168, 78, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ----- Scroll Reveal Animation ----- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav-scrolled {
  background: var(--bg-nav-solid);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

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

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
  padding: 120px var(--container-padding) 80px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 168, 78, 0.06) 0%,
    rgba(60, 50, 30, 0.08) 30%,
    rgba(5, 5, 5, 0) 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.hero-cta-btn {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition-base);
  animation: floatDown 2s ease-in-out infinite;
}

.scroll-down:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


/* ============================================================
   SECTION 2: ABOUT
   ============================================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.about-header {
  margin-bottom: 16px;
}

.about-subheading {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

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

.about-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.mission-quote {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.65;
  color: var(--text-primary);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ============================================================
   SECTION 3: SERVICES (WHAT WE DO)
   ============================================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.services .section-label {
  display: block;
}

.services .section-title-large {
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-number {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  padding-top: 2px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 0;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0 32px;
}

.find-out-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.find-out-more:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}


/* ============================================================
   SECTION 4: BRANDS + APPROACH
   ============================================================ */
.brands-approach {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
}

/* -- Brands / Marquee -- */
.brands-section {
  margin-bottom: 0;
}

.brands-section .section-label {
  display: block;
}

.brands-section .section-title {
  margin-bottom: 40px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-base);
}

.brand-logo:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 6));
  }
}

/* -- Approach -- */
.approach-section {
  padding-top: 0;
}

.approach-section .section-label {
  display: block;
}

.approach-section .section-title-large {
  margin-bottom: 56px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.approach-step {
  position: relative;
}

.approach-number {
  display: block;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.approach-connector {
  position: absolute;
  top: 28px;
  left: calc(100% - 48px);
  width: 64px;
  height: 0;
  border-top: 2px dashed var(--border-gold);
  z-index: 0;
}

.approach-step:last-child .approach-connector {
  display: none;
}

.approach-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.approach-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ============================================================
   SECTION 5: FEATURED PROJECTS
   ============================================================ */
.projects {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.projects-header .section-label {
  margin-bottom: 8px;
}

.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.view-all-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.04);
}

.project-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.project-accent-bar {
  display: flex;
  height: 4px;
}

.accent-segment {
  flex: 1;
}


/* ============================================================
   PROJECT DETAIL MODAL
   ============================================================ */
.project-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

body.modal-open {
  overflow: hidden;
}

.project-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.3s ease;
}

.project-modal-overlay.active .project-modal {
  transform: scale(1) translateY(0);
}

.project-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.project-modal-close:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.project-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.project-modal-image-col {
  position: relative;
  overflow: hidden;
}

.project-modal-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.project-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal-image-wrapper .project-category {
  top: 16px;
  left: 16px;
}

.project-modal-content-col {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 90vh;
}

.project-modal-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.project-modal-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.project-modal-quote {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.project-modal-quote:empty {
  display: none;
}

.project-modal-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.project-modal-text:empty {
  display: none;
}

.project-modal-link {
  align-self: flex-start;
}

.project-modal-link[style*="display: none"] {
  display: none;
}

/* -- Modal responsive -- */
@media (max-width: 768px) {
  .project-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .project-modal {
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }

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

  .project-modal-image-wrapper {
    min-height: 250px;
    max-height: 300px;
  }

  .project-modal-content-col {
    padding: 28px 24px 40px;
    max-height: none;
    overflow-y: visible;
  }

  .project-modal {
    overflow-y: auto;
  }

  .project-modal-close {
    top: 12px;
    right: 12px;
  }
}


/* ============================================================
   SECTION 6: CONTACT
   ============================================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.contact .section-title-large {
}

.contact-subheading {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 0 56px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-detail svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.schedule-card {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.schedule-header svg {
  color: var(--gold);
}

.schedule-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.schedule-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* -- Contact Form -- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

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

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

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.form-message {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  min-height: 32px;
}

.form-message.success {
  color: #34d399;
}

.form-message.error {
  color: #f87171;
}


/* ============================================================
   SECTION 7: FOOTER
   ============================================================ */
.footer {
  background: var(--bg-primary);
  padding: 0 0 40px;
}

.footer .gold-line {
  margin: 0 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-social svg {
  flex-shrink: 0;
}

.footer-text {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  display: block;
}

.footer-clock {
  color: var(--text-muted);
}

.footer-bottom {
  margin-bottom: 40px;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.back-to-top {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.back-to-top:hover {
  color: var(--gold);
}

.footer-watermark {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-watermark-logo {
  height: 80px;
  width: auto;
  opacity: 0.08;
}

.footer-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .service-item {
    grid-template-columns: 50px 160px 1fr;
    gap: 16px;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .approach-connector {
    display: none;
  }

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


/* ============================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
    --nav-height: 64px;
  }

  /* -- Mobile Navigation -- */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 20px;
    font-weight: 600;
  }

  /* -- Hero Mobile -- */
  .hero {
    min-height: 100svh;
    padding: 100px var(--container-padding) 60px;
  }

  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-body {
    font-size: 16px;
  }

  .hero-glow {
    width: 500px;
    height: 400px;
  }

  /* -- About Mobile -- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stat-number {
    font-size: 32px;
  }

  /* -- Services Mobile -- */
  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .service-number {
    font-size: 12px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 14px;
  }

  /* -- Brands / Approach Mobile -- */
  .marquee-track {
    gap: 40px;
  }

  .brand-logo {
    height: 32px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .approach-connector {
    display: none;
  }

  .approach-number {
    font-size: 40px;
  }

  /* -- Projects Mobile -- */
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

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

  /* -- Contact Mobile -- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* -- Footer Mobile -- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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


/* ============================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .section-title-large {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}
