
/* --- index.css --- */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #141414;
  --bg-tertiary: #1A1A1A;
  --accent-red: #C0222B;
  --accent-red-hover: #A01B23;
  --accent-gold: #D4A017;
  
  --text-white: #FFFFFF;
  --text-body: #AAAAAA;
  --text-muted: #555555;
  --border-dark: #222222;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html, body {
  scroll-behavior: auto;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.75;
  font-size: 16px;
  cursor: default;
}

a, button {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

/* Texture Overlay */
.diagonal-texture {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeInScroll 0.8s ease forwards;
}
@keyframes fadeInScroll {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1;
  font-weight: normal; 
}

.display-hero {
  font-size: clamp(96px, 10vw, 120px);
}
.heading-section {
  font-size: clamp(56px, 6vw, 72px);
}
.heading-sub {
  font-size: clamp(28px, 4vw, 36px);
}

p {
  color: var(--text-body);
}

.eyebrow-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-red);
  color: var(--text-white);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: none;
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--accent-red-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-white);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: 1px solid var(--text-white);
  text-align: center;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Global Padding */
.section-padding {
  padding: 120px 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 120px 5%;
  }
}

/* LAYOUT SYSTEMS */

/* A) Split Layout */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.layout-split.reverse .split-content { order: 2; }
.layout-split.reverse .split-visual { order: 1; }
.split-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--bg-tertiary);
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* B) Full Width Editorial */
.layout-editorial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* C) Card Grid */
.layout-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.system-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  border-top: 3px solid var(--accent-red);
  padding: 32px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.system-card:hover {
  border-color: var(--accent-red);
  background-color: var(--bg-tertiary);
}
.system-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.system-card p {
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* D) Stat Row */
.layout-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.stat-item {
  text-align: center;
  border-right: 1px solid #333333;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item h4 {
  font-size: 72px;
  color: var(--text-white);
  margin-bottom: 5px;
}
.stat-item p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 1023px) {
  .layout-card-grid { grid-template-columns: repeat(2, 1fr); }
  .display-hero { font-size: 96px; }
  .heading-section { font-size: 48px; }
  .layout-stat-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item { border-right: none; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid #333333; padding-bottom: 30px; }
}

@media (max-width: 767px) {
  .layout-split { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .layout-split .split-content { order: 1; padding: 0 !important; text-align: left; }
  .layout-split .split-visual { order: 2; height: 240px; aspect-ratio: auto; clip-path: none; margin-top: 20px;}
  .layout-split.reverse .split-content { order: 1; }
  .layout-split.reverse .split-visual { order: 2; }
  
  .layout-card-grid { grid-template-columns: 1fr; }
  
  .layout-stat-row { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0;
  }
  .stat-item { 
    border-right: none !important;
    border-bottom: 1px solid #333333 !important;
    padding: 30px 0;
  }
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none !important;
  }
  
  .system-card { padding: 24px; }
  
  /* Typography Overrides */
  .display-hero { font-size: 64px !important; }
  .heading-section { font-size: 40px !important; }
  .heading-sub { font-size: 40px !important; }
  .system-card h3 { font-size: 22px !important; }
  .eyebrow-label { font-size: 10px !important; }
  body, p, .review-text { font-size: 15px !important; }
  .stat-item h4 { font-size: 48px !important; }
  
  /* Touch Boundaries */
  .btn-primary, .btn-secondary, button {
    min-height: 48px;
    min-width: 48px;
  }
  a {
    min-height: 14px; /* safe base */
  }
  
  /* Remove flex wrap blocks causing horizontal overflow */
  .layout-stat-row, .layout-card-grid, .layout-split {
    width: 100%;
  }
}


/* --- Navbar.css --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shield-icon {
  flex-shrink: 0;
}

.wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wordmark-line1 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-white);
  letter-spacing: 0.12em;
  line-height: 1;
}

.wordmark-line2 {
  font-family: var(--font-body);
  font-size: 9px;
  color: #AAAAAA;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.lang-toggle, .lang-toggle-mobile {
  font-family: var(--font-body);
  font-size: 12px;
  color: #555555;
  display: flex;
  gap: 8px;
}

.lang-toggle span, .lang-toggle-mobile span {
  cursor: pointer;
  transition: color 0.2s;
}

.lang-toggle span.active, .lang-toggle-mobile span.active {
  color: var(--text-white);
}

.lang-toggle span:hover, .lang-toggle-mobile span:hover {
  color: var(--text-white);
}

.lang-toggle .separator, .lang-toggle-mobile .separator {
  color: #333333;
  cursor: default;
}

/* Removed empty logo-icon class stuff here */

.nav-links {
  display: flex;
  gap: 35px;
  height: 100%;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-body);
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-red);
  transition: width 0.2s ease;
}

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

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.nav-phone:hover {
  color: var(--text-white);
}

.nav-right .btn-primary {
  padding: 10px 24px;
}

.mobile-menu-btn {
  display: none;
  color: var(--text-white);
  cursor: pointer;
  z-index: 1001;
}

.mobile-drawer {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: right 0.4s ease;
  z-index: 999;
  border-bottom: 1px solid #1F1F1F;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-drawer-links a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-white);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1A1A1A;
  width: 100%;
}

.mobile-drawer-links a.mobile-phone {
  color: var(--accent-red);
  gap: 10px;
}

.mobile-drawer-links a.mobile-cta {
  border-bottom: none;
  border-radius: 0;
  width: 100%;
}

.lang-toggle-mobile.mt-30 {
  margin-top: 30px;
  justify-content: center;
}

@media (max-width: 992px) {
  .nav-links, .desktop-only {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 60px;
  }
  .mobile-drawer {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .brand-logo svg {
    height: 32px;
  }
  .wordmark-line1 {
    font-size: 18px;
  }
  .wordmark-line2 {
    font-size: 8px;
  }
}

/* --- Footer.css --- */
.footer {
  background-color: #080808;
  border-top: 1px solid #1F1F1F;
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.footer-brand-logo .wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-brand-logo .wordmark-line1 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-white);
  letter-spacing: 0.12em;
  line-height: 1;
}

.footer-brand-logo .wordmark-line2 {
  font-family: var(--font-body);
  font-size: 9px;
  color: #AAAAAA;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-tagline {
  color: #555555;
  font-size: 13px;
}

.links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #555555;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--text-body);
}

.footer-bottom {
  padding: 25px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1A1A1A;
}

.footer-bottom p {
  color: #333333;
  font-size: 13px;
  margin: 0;
}

.agency-credit {
  color: #333333;
}

.agency-credit a {
  color: #555555;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.agency-credit a:hover {
  color: #AAAAAA;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-logo {
    justify-content: center;
  }
  .footer-brand-logo .wordmark {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom p {
    font-size: 12px;
  }
}

/* --- Home.css --- */
/* Helpers */
.text-accent { color: var(--accent-red); }
.text-gold { color: var(--accent-gold); }
.bg-alt { background-color: var(--bg-secondary); }
.mt-60 { margin-top: 60px; }

/* Hero Section */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 100svh;
  padding: 120px 80px 80px 80px;
  position: relative;
  overflow: hidden;
  background: #0D0D0D;
  box-sizing: border-box;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 55%;
  position: relative;
  z-index: 2;
}

.hero-visual {
  width: 38%;
  height: 500px;
  background: #141414;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D4A017;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
}

.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #C0222B;
  text-transform: uppercase;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid #C0222B;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  line-height: 0.95;
  color: #FFFFFF;
  margin: 0;
}

.hero-headline .red { color: #C0222B; }

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #AAAAAA;
  line-height: 1.6;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid #C0222B;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-phone {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #555555;
  text-decoration: none;
}
.hero-phone:hover { color: #AAAAAA; }

/* Programs Card Override Updates */
.programs-header {
  margin-bottom: 60px;
}

.card-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-top: auto;
  transition: opacity 0.2s;
}

.card-cta:hover {
  opacity: 0.7;
}

/* Testimonials System */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--accent-red);
  opacity: 0.4;
  line-height: 1;
}

.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: #CCCCCC;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gold-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 14px;
}

.review-source {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .hero-container.layout-split { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    padding: 100px 20px 60px 20px;
    min-height: 100svh;
  }
  .hero-content {
    width: 100%;
  }
  .hero-visual {
    display: none;
  }
  .hero-headline {
    font-size: 64px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Testimonials */
  .testimonials-grid { 
    grid-template-columns: 1fr; 
  }
  .testimonial-card {
    padding: 24px;
  }
  .quote-mark {
    font-size: 56px;
    top: 15px;
    left: 15px;
  }
}

/* --- Programs.css --- */
.position-relative {
  position: relative;
  z-index: 2;
}

.strong-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 10px;
  font-weight: 500;
}

/* --- RingRental.css --- */
.padding-top-header {
  padding-top: 72px; /* For fixed nav */
}

.rental-immersive-section {
  position: relative;
  background-color: #111111;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  min-height: calc(100vh - 72px);
  padding: 120px 5%;
}

.rental-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.rental-subhead {
  font-size: 18px;
  margin-top: 20px;
  color: var(--text-body);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.use-case-item {
  border-left: 1px solid var(--accent-red);
  padding-left: 30px;
}

.use-case-item h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.use-case-item p {
  color: var(--text-body);
}

.text-center {
  text-align: center;
}

.mt-15 {
  margin-top: 15px;
}

.phone-line {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.phone-line:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .rental-immersive-section {
    clip-path: none;
    padding-top: 100px;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .rental-cta .btn-primary {
    width: 100%;
  }
}

/* --- About.css --- */
.mb-60 {
  margin-bottom: 60px;
}

.mb-30 {
  margin-bottom: 30px;
}

.card-visual {
  width: 100%;
}

/* --- Contact.css --- */
.contact-info-panel {
  clip-path: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.text-white {
  color: var(--text-white);
}

.underline-hover:hover {
  text-decoration: underline;
}

.hours-grid-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 5px;
  column-gap: 20px;
  color: var(--text-muted);
}

.map-section {
  padding-top: 0;
}

.contact-map {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.contact-call-btn {
  font-size: 24px;
  padding: 20px 40px;
}

@media (max-width: 767px) {
  .layout-split {
    flex-direction: column-reverse;
    display: flex;
  }
  .contact-call-btn {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-map {
    height: 280px;
  }
}
