:root {
  /* Brand Colors */
  --color-primary: #ED7E37;
  --color-secondary: #88BAF9;
  --color-cta: #FFC107; /* Golden yellow for CTAs */
  --color-cta-hover: #E0A800;
  --color-text: #08090E;
  --color-text-light: #4A4A4A;
  --color-bg: #FFFFFF;
  --color-surface: #F5F7F9;
  --color-surface-dark: #E2E8F0;
  
  /* Typography */
  --font-display: 'Paytone One', 'Fredoka One', 'Arial Black', sans-serif;
  --font-body: 'Chivo', 'Source Sans Pro', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Layout */
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 4px rgba(8, 9, 14, 0.05);
  --shadow-md: 0 4px 12px rgba(8, 9, 14, 0.1);
  --shadow-lg: 0 12px 24px rgba(8, 9, 14, 0.15);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: var(--space-md);
  max-width: 75ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #005FCC;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: var(--space-sm);
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--color-text);
  color: white;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
  color: white;
}

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-light {
  background-color: var(--color-surface);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: none; /* Sentence or Title case per spec */
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 2px solid var(--color-surface-dark);
}

.btn-secondary:hover {
  background-color: var(--color-surface-dark);
  color: var(--color-text);
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

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

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(8, 9, 14, 0.3), rgba(8, 9, 14, 0.7));
  z-index: 1;
}

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

.hero h1 {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: var(--space-sm);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero .btn-group {
  justify-content: center;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card-meta {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.card-content p {
  flex-grow: 1;
}

.card-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Info Panels (Logistics) */
.info-panel {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border-top: 4px solid var(--color-primary);
}

.info-panel h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.info-panel ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
}

.info-panel li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-xs);
}

.info-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Reviews */
.review-card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-surface-dark);
}

.review-stars {
  color: var(--color-cta);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.review-quote {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.review-author {
  font-weight: 700;
  font-family: var(--font-display);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--color-surface-dark);
  margin-bottom: var(--space-xs);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: var(--space-sm);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(237, 126, 55, 0.2);
}

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

.form-error {
  display: block;
  margin-top: 0.5rem;
  color: #B42318;
  font-weight: 700;
}

.form-success {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  border: 1px solid #c3e6cb;
}

/* Footer */
.footer {
  background-color: var(--color-text);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer h3 {
  color: white;
}

.footer a {
  color: var(--color-secondary);
}

.footer a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-seo {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-seo p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  max-width: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-weight: bold;
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: white;
}

.footer-attribution {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-attribution a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

/* Page Header (Inner pages) */
.page-header {
  background-color: var(--color-surface);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--color-surface-dark);
}

.page-header h1 {
  margin-bottom: var(--space-xs);
}

/* Responsive */
button, a, input[type="checkbox"], input[type="radio"] {
  min-height: 44px;
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-container.menu-open .nav-links,
  .nav-container.menu-open .nav-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }
  
  .nav-container.menu-open .nav-actions {
    top: calc(100% + 180px);
    box-shadow: none;
    border-top: 1px solid var(--color-surface);
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}
