/* ==========================================================================
   LÉMAN CHAUFFEUR PRIVÉ - SWITZERLAND (LAUSANNE & GENÈVA)
   Ultra-lightweight High-End Dark Glassmorphism CSS Framework
   ========================================================================== */

:root {
  --bg-dark: #070a10;
  --bg-card: rgba(15, 22, 36, 0.78);
  --bg-card-hover: rgba(22, 32, 52, 0.88);
  --accent-gold: #d4af37;
  --accent-gold-bright: #f3e5ab;
  --accent-gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa820a 100%);
  --accent-emerald: #10b981;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #e5c158;
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-glow: 0 10px 40px -10px rgba(212, 175, 55, 0.25);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background Image with Dark Overlay */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(7, 10, 16, 0.94) 0%, rgba(11, 16, 26, 0.86) 45%, rgba(7, 10, 16, 0.96) 100%),
    url('../assets/images/hero_chauffeur_bg.jpg') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
}

/* Header & Top Bar */
.top-header {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(7, 10, 16, 0.6);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070a10;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.location-badge svg {
  color: var(--accent-gold);
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold-gradient);
  color: #070a10;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Main Hero Grid Layout */
.hero-content {
  flex: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

/* Left Hero Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-emerald);
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title .highlight-gold {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

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

.service-card-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.service-card-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Direct Contact Bar */
.direct-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent-gold-gradient);
  color: #070a10;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(212, 175, 55, 0.45);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* Trust Badges Bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-glass);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--accent-gold);
}

/* Right Hero Column (Google Form Container) */
.hero-right {
  position: relative;
  width: 100%;
}

.form-glass-card {
  background: rgba(10, 16, 28, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-card-header {
  padding: 1.1rem 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-title-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-title-group h3 svg {
  color: var(--accent-gold);
}

.form-title-group p {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.form-badge-instant {
  font-size: 0.725rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold-bright);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
}

.form-iframe-wrapper {
  width: 100%;
  height: 640px;
  background: #ffffff;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.form-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Overlay Strip */
.footer-strip {
  width: 100%;
  padding: 0.75rem 2rem;
  background: rgba(7, 10, 16, 0.9);
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  z-index: 10;
}

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

/* Responsive Rules */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }

  .form-iframe-wrapper {
    height: 600px;
  }
}

@media (max-width: 640px) {
  .top-header {
    padding: 0.75rem 1rem;
  }
  
  .brand-tagline {
    display: none;
  }
  
  .location-badge {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .services-tags {
    grid-template-columns: 1fr;
  }

  .form-iframe-wrapper {
    height: 550px;
  }

  .footer-strip {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
