@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Noto+Serif:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --bg: #131313;
  --surface: #1e1e1e;
  --surface-low: #0e0e0e;
  --surface-high: #353535;
  --primary: #f2ca50;
  --primary-container: #d4af37;
  --on-primary: #3c2f00;
  --text-main: #e2e2e2;
  --text-muted: #d0c5af;
  --outline-ghost: rgba(77, 70, 53, 0.15);
  
  --font-serif: 'Noto Serif', serif;
  --font-sans: 'Manrope', sans-serif;

  --nav-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

h1.display-lg, .display-lg { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.1em; line-height: 1.1; }
h2.display-md, .display-md { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.08em; }
h3.headline-sm, .headline-sm { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: 0.05em; }
p.body-md, .body-md { font-size: 1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300;}
.label-sm { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); font-weight: 500;}

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--outline-ghost);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  height: 20px !important; /* Text logo is usually more elegant when slightly shorter than the icon */
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-container);
  color: var(--on-primary);
}

.btn-primary:hover {
  background-color: var(--primary);
  box-shadow: inset 0 0 10px rgba(242, 202, 80, 0.2), 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(242, 202, 80, 0.4);
}

.btn-outline:hover {
  background: rgba(242, 202, 80, 0.05);
  box-shadow: inset 0 0 0 1px var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--surface-low);
  padding-top: var(--nav-height);
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  overflow: hidden;
}

.hero-video-bg iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .label-sm {
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero h1 {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.hero p {
  margin-bottom: 3rem;
  max-width: 540px;
  font-size: 1.125rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

/* Brands Grid */
.brands-section {
  background-color: var(--surface);
  white-space: nowrap;
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid var(--outline-ghost);
  border-bottom: 1px solid var(--outline-ghost);
}

.brands-track {
  display: inline-flex;
  gap: 5rem;
  animation: scrollBrands 30s linear infinite;
  align-items: center;
  /* Duplicate content for seamless scroll */
}

.brands-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%) contrast(150%);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 24px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  cursor: default;
}

.brands-track img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.05);
  background: #ffffff;
}

/* Main Content Areas */
.asymmetrical-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.asymmetrical-grid.reverse {
  grid-template-columns: 7fr 5fr;
}

.text-content {
  padding-right: 40px;
}

.reverse .text-content {
  order: 2;
  padding-right: 0;
  padding-left: 40px;
}

.image-content {
  position: relative;
  height: 600px;
  background: var(--surface-high);
  overflow: hidden;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.image-content:hover img {
  opacity: 1;
}

/* Services Overview */
.services-overview {
  background-color: var(--bg);
}

.section-header {
  margin-bottom: 80px;
  max-width: 600px;
}

.section-header .label-sm {
  display: block;
  margin-bottom: 1rem;
}

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

.service-card {
  grid-column: span 4;
  background-color: var(--surface-high);
  padding: 50px 40px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: #3a3a3a;
}

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

.service-card h3 {
  margin: 1.5rem 0 1rem;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  background-color: var(--surface-low);
  text-align: center;
  position: relative;
  padding: 160px 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: var(--surface-low);
  padding: 40px 0;
  border-top: 1px solid var(--outline-ghost);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer-desc {
  max-width: 350px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--outline-ghost);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--primary);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1.25rem;
}

.footer-col ul a, .footer-col ul span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Page Headers (About, Services, Contact) */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--surface-low);
  text-align: center;
  border-bottom: 1px solid var(--outline-ghost);
}

.page-header h1 {
  margin-top: 1rem;
}

/* Contact Options */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface-high);
  padding: 60px 40px;
  text-align: center;
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2.5rem)); }
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-card {
    grid-column: span 6;
  }
  .asymmetrical-grid, .asymmetrical-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reverse .text-content, .text-content {
    padding: 0;
  }
  .reverse .text-content {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.nav-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
  }
  
  .nav-links.nav-active li {
      opacity: 1;
      transform: translateY(0);
  }
  
  .nav-links.nav-active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.nav-active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.nav-active li:nth-child(3) { transition-delay: 0.3s; }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
    font-size: 1.8rem;
    padding: 10px;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-logo-text {
    height: 16px !important;
  }

  .brands-track {
    gap: 2rem;
  }
  
  .brands-track img {
    height: 36px;
    padding: 8px 16px;
  }
}

/* Services Grid Section */
.services-grid-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.business-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 30px);
  max-width: 1000px;
  margin: 0 auto;
}

.biz-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(242, 202, 80, 0.1);
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 240px;
}

.biz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.biz-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 202, 80, 0.4);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.biz-card:hover::before {
  transform: scaleX(1);
}

.biz-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text-main);
}

.biz-card p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .business-cards-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    gap: 20px;
  }
  
  .services-grid-section {
      padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .biz-card {
    padding: 24px;
    min-height: auto;
  }
}
