/* =============================================
   Kristian Express LLC — Main Stylesheet
   Colors: Red #CC1515 | Gold #D4A017 | Black #111
============================================= */

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

:root {
  --red: #CC1515;
  --red-dark: #a01010;
  --gold: #D4A017;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #f4f4f4;
  --text: #222222;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAVIGATION ── */
header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

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

.nav-cta {
  background: var(--red) !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #2a0808 60%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,21,21,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-gold:hover {
  background: #b88c10;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title span {
  color: var(--red);
}

.section-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 48px;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-sub {
  color: #aaa;
}

.section-gray {
  background: var(--gray);
}

/* ── CARDS GRID ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-top: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2a0808 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-item-text a {
  color: var(--red);
  text-decoration: none;
}

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

/* ── FORM ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

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

/* ── OWNER OPERATOR ── */
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
}

.benefits-list li .check {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefits-list li span {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.requirements-box {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  padding: 40px;
  margin-top: 48px;
}

.requirements-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}

.req-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ddd;
}

.req-list li::before {
  content: '▶';
  color: var(--red);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-intro-text h2 span {
  color: var(--red);
}

.about-intro-text p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-visual {
  background: linear-gradient(135deg, var(--black) 0%, #2a0808 100%);
  border-radius: 12px;
  padding: 48px 36px;
  color: var(--white);
  text-align: center;
}

.about-visual .big-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

.about-visual h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-visual p {
  opacity: 0.85;
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
}

/* ── SLIDESHOW ── */
.slideshow-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #111;
  opacity: 0;
  transform: scale(0.97) translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.slideshow-wrap.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.slideshow {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

/* Blurred backdrop fills the frame */
.slide-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.35);
  transform: scale(1.08);
  z-index: 0;
}

/* Actual photo, fully visible on top */
.slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  animation: none;
}

.slide.active img {
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  font-size: 2.6rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  background: var(--red);
}

.slide-prev { left: 20px; }
.slide-next { right: 20px; }

.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slideshow-wrap { height: 280px; }
  .slide-btn { width: 40px; height: 40px; font-size: 2rem; }
}

/* ── FILE UPLOAD ── */
.file-upload-area {
  position: relative;
}

.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border: 2px dashed #ccc;
  border-radius: 6px;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.97rem;
  font-weight: 600;
  color: #444;
}

.file-upload-btn:hover {
  border-color: var(--red);
  background: #fff5f5;
  color: var(--red);
}

.file-upload-btn.file-selected {
  border-color: var(--gold);
  background: #fffbf0;
  color: var(--black);
}

.file-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.file-hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: 6px;
  padding-left: 4px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: #aaa;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #888;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #888;
}

.footer-col address a {
  color: #888;
  text-decoration: none;
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 12px 16px; }

  .contact-grid,
  .about-intro,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  section { padding: 56px 20px; }

  .hero { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
