/* ============================================
   EURO‑PA VIP — Luxury Chauffeur Website
   ============================================ */

:root {
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-dark: #aa8c2c;
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: #12121a;
  --bg-alt: #0f0f16;
  --text: #e8e8ec;
  --text-light: #a0a0b0;
  --text-muted: #6b6b7b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
#mainNav {
  padding: 1rem 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark);
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.brand-text { font-weight: 800; font-size: 1.3rem; color: white; letter-spacing: -0.5px; }
.brand-accent { color: var(--gold); font-weight: 300; }

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: white !important; background: var(--glass); }
#mainNav .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%); border-radius: 2px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }

.lang-toggle {
  background: var(--glass);
  border-radius: 8px !important;
  border: 1px solid var(--glass-border);
  padding: 0.4rem 0.8rem !important;
  display: flex; align-items: center; gap: 0.4rem;
}
.lang-flag { font-size: 1.1rem; line-height: 1; }
.dropdown-item .lang-flag { margin-right: 0.5rem; }

.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212,175,55,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(212, 175, 55, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(212, 175, 55, 0.04), transparent),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content { padding-top: 6rem; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--bg-dark);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: var(--bg-dark);
}
.btn-outline-gold {
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-features {
  display: flex; gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.feature-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.feature-item i { color: var(--gold); font-size: 1rem; }

/* Hero Car Animation */
.hero-car {
  position: relative;
  width: 300px; height: 300px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.car-ring {
  position: absolute;
  width: 250px; height: 250px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: spin-ring 20s linear infinite;
}
.car-ring-2 {
  width: 200px; height: 200px;
  border-color: rgba(212, 175, 55, 0.1);
  animation-direction: reverse;
  animation-duration: 15s;
}
.car-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.8;
  animation: float-car 4s ease-in-out infinite;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float-car {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 120px; z-index: 2;
}
.hero-wave path { fill: var(--bg-dark); }

/* ========== SECTIONS ========== */
.section-padding { padding: 6rem 0; }
.bg-alt { background: var(--bg-alt); }

.section-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; padding: 0.3rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  border-radius: 50px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.section-title.text-white { color: white; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== VIP SERVICE CARDS ========== */
.vip-service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vip-service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.vip-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}
.vip-service-card:hover::before { transform: scaleX(1); }

.vip-s-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.vip-service-card:hover .vip-s-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}
.vip-s-title {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--text);
}
.vip-s-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== WHY US ========== */
.whyus-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #0a0a12 100%);
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 70% 30%, rgba(212, 175, 55, 0.04), transparent);
}
.whyus-tag {
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.whyus-lead { color: rgba(255, 255, 255, 0.5) !important; }

.whyus-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.whyus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.whyus-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.whyus-card:hover .whyus-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}
.whyus-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: white; }
.whyus-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

/* ========== FLEET ========== */
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}
.fleet-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: var(--transition);
}
.fleet-card:hover .fleet-icon {
  transform: scale(1.1);
  opacity: 1;
}
.fleet-name { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.fleet-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.fleet-stars { color: var(--gold); font-size: 0.85rem; }

/* ========== CONTACT ========== */
.contact-section {
  background: linear-gradient(180deg, var(--bg-darker) 0%, #08080c 100%);
  position: relative;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 40%, rgba(212, 175, 55, 0.04), transparent);
}
.contact-tag {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--gold) !important;
}
.contact-info { position: relative; z-index: 1; }
.contact-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-item strong { color: white; font-size: 0.9rem; display: block; margin-bottom: 0.15rem; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
}
.link-gold { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.link-gold:hover { color: var(--gold); }

.contact-form-wrapper {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; z-index: 1;
}
.contact-form .form-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: white;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-form .form-control::placeholder { color: rgba(255, 255, 255, 0.25); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  color: white;
}
.contact-form .form-select option { background: var(--bg-dark); color: white; }

.submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 0.9rem !important;
  position: relative; overflow: hidden;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-darker);
  color: white;
  border-top: 1px solid var(--glass-border);
}
.footer-main { padding: 3rem 0 2rem; }
.footer-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 0;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 44px; height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.3); font-size: 0.85rem; margin: 0; }

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999; text-decoration: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-aos] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-content { text-align: center; padding-top: 5rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-features { justify-content: center; }
  .contact-info { text-align: center; }
  .contact-details { align-items: center; }
  .contact-item { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 767px) {
  .section-padding { padding: 4rem 0; }
  .hero-title { font-size: 2.2rem; }
  .contact-form-wrapper { padding: 1.5rem; }
}

/* ========== ALERT ========== */
.alert { border-radius: var(--radius); padding: 1rem 1.25rem; font-weight: 500; }
.alert-success { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25); color: #34d399; }
.alert-danger { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.25); color: #f87171; }
