/* Reset & Pure Neutral Dark Grey Design System */
:root {
  /* Clean Neutral Dark Grey Colors - No Navy/Blue Tint */
  --bg-site: #171717;       /* Pure neutral dark grey background */
  --bg-card: #262626;       /* Neutral dark grey card surface */
  --bg-card-hover: #323232; /* Slightly lighter grey hover */
  --bg-subtle: #1f1f1f;     /* Subtle section grey background */
  --bg-header: #171717;     /* Header background (matching site) */
  
  --primary-gold: #f59e0b;
  --primary-gold-bright: #fbbf24;
  --primary-gold-hover: #d97706;
  
  --text-main: #ffffff;
  --text-body: #e5e5e5;
  --text-muted: #a3a3a3;
  
  --border-subtle: #404040;
  --border-gold: rgba(245, 158, 11, 0.4);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 24px rgba(245, 158, 11, 0.25);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-site);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Site Header (Non-sticky, Centered Logos, No Curves) */
.site-header {
  background-color: var(--bg-site);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  position: relative; /* Non-sticky */
  z-index: 10;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: center; /* Centered side by side */
  gap: 2rem;
  flex-wrap: nowrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0.2rem 0.5rem;
  border-radius: 0; /* Removed curves */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.brand-logo {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.04);
}

.transition-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.5);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.transition-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.transition-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-gold-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 9rem 0 7.5rem;
  min-height: 600px;
  background: url('hero-vans-liverpool.jpg') no-repeat center center / cover;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: none;
  margin: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  background: rgba(23, 23, 23, 0.84); /* Dark charcoal tint overlay */
  backdrop-filter: blur(2px);          /* Full edge blur */
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.title-line1, .title-line3 {
  display: inline-block;
}

.text-highlight {
  color: var(--primary-gold-bright);
  display: inline-block;
}

.highlight-nw, .highlight-el {
  display: inline-block;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold-bright), var(--primary-gold-hover));
  color: #171717;
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #525252;
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Compact Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-gold-bright);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Notice Section */
.notice-section {
  padding: 2.5rem 0;
  background-color: var(--bg-subtle);
}

.notice-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 5px solid var(--primary-gold-bright);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
}

.notice-icon {
  color: var(--primary-gold-bright);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.notice-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.notice-content p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold-bright);
  margin-bottom: 0.4rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--bg-site);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--bg-subtle);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary-gold-bright);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-chevron {
  color: var(--primary-gold-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.35rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.35rem 1.15rem;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 4rem 0;
  background-color: var(--bg-site);
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 1.75rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background-color: #121212;
  color: #ffffff;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.3rem;
}

.footer-contact a {
  color: var(--primary-gold-bright);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #0a0a0a;
  padding: 1.1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive Rules & Mobile Optimization */
@media (max-width: 768px) {
  .header-flex {
    justify-content: space-between;
    gap: 0.4rem;
    flex-wrap: nowrap;
  }
  
  .logo-wrapper {
    padding: 0.2rem 0.4rem;
    flex-shrink: 1;
    min-width: 0;
  }
  
  .brand-logo {
    max-height: 50px;
    object-fit: contain;
  }
  
  .transition-badge {
    padding: 0.3rem 0.65rem;
    gap: 0.3rem;
    flex-shrink: 0;
  }

  .transition-icon {
    width: 20px;
    height: 20px;
    display: flex;
  }

  .transition-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .transition-text {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }
  
  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  
  .stat-card {
    padding: 0.5rem 0.25rem;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.68rem;
  }
  
  .notice-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 4rem 0 3.25rem;
    min-height: 460px;
  }

  .hero-title {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .title-line1, .title-line3 {
    font-size: 1.15rem;
  }

  .highlight-nw, .highlight-el {
    display: block;
  }

  .text-highlight {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 480px;
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.92rem;
    width: 100%;
    max-width: 270px;
  }
}

@media (max-width: 440px) {
  .header-flex {
    gap: 0.25rem;
  }

  .logo-wrapper {
    padding: 0.15rem 0.3rem;
  }

  .brand-logo {
    max-height: 44px;
  }

  .transition-badge {
    padding: 0.25rem 0.45rem;
    gap: 0.25rem;
  }

  .transition-icon {
    width: 16px;
    height: 16px;
    display: flex;
  }

  .transition-icon svg {
    width: 12px;
    height: 12px;
  }

  .transition-text {
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .title-line1, .title-line3 {
    font-size: 1.05rem;
  }

  .text-highlight {
    font-size: 1.15rem;
  }

  .hero-subtitle {
    font-size: 0.84rem;
  }
}
