/*
Theme Name: Limousine Custom
Description: Luxury dark limousine theme - black & gold
Version: 1.3
*/

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07D2E;
  --black: #0A0A0A;
  --black-card: #1C1C1C;
  --black-surface: #242424;
  --white: #FAFAF5;
  --text: #E8E4DC;
  --text-muted: #B0A89E;
  --border: #3D3830;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 1; }

.nav-phone {
  color: var(--gold) !important;
  opacity: 1 !important;
  font-weight: 500;
  letter-spacing: 0.5px !important;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  opacity: 1 !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px !important;
  font-size: 11px !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/2026/03/limo-hero.jpg') center/cover no-repeat;
  filter: brightness(0.45) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.85) 100%);
}

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

.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 48px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SECTION ── */
.section {
  padding: 100px 24px;
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: border-color 0.3s, transform 0.3s;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── FLEET ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.fleet-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.fleet-card:hover { border-color: var(--gold); }

.fleet-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85);
}

.fleet-body {
  padding: 28px;
}

.fleet-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.fleet-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.fleet-meta span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.fleet-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: center;
  transition: border-color 0.3s;
}

.price-card.featured {
  border-color: var(--gold);
  position: relative;
}

.price-card.featured::before {
  content: 'Populärast';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  margin: 16px 0 4px;
}

.price-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── LEAD FORM ── */
.form-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.form-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.form-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.form-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.form-contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

.form-contact-item a:hover { color: var(--gold); }

.lead-form {
  background: var(--black-surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row select { cursor: pointer; }
.form-row select option { background: var(--black-card); }
.form-row textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover { background: var(--gold-light); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.review-source {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-logo img { height: 40px; }
  
  .nav-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-mobile-phone {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
  }
  
  .hero { min-height: 90vh; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .lead-form { padding: 28px 20px; }
  
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--gold);
    padding: 16px;
    text-align: center;
  }
  
  .mobile-cta a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
}

@media (min-width: 769px) {
  .nav-mobile { display: none; }
  .mobile-cta { display: none; }
}


/* Extra contrast helpers */
.section:nth-of-type(even) {
  background: #131313;
}

.service-card p,
.fleet-body p,
.price-features li,
.review-text,
.faq-answer,
.form-info p {
  color: var(--text) !important;
}

.service-card h3,
.fleet-body h3,
.price-card h3,
.form-info h3 {
  color: #FFFFFF !important;
}
