/* ===== PREMIUM CAR RENTAL - STYLE.CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --white: #F8F5EE;
  --gray: #888880;
  --gray-light: #C5C5BB;
  --accent: #8B0000;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --gold-shadow: 0 0 40px rgba(201,168,76,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--black); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold);
  letter-spacing: 8px; text-transform: uppercase;
}
.preloader-bar {
  width: 200px; height: 1px; background: var(--dark3);
  position: relative; overflow: hidden;
}
.preloader-bar::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: preload 1.5s ease forwards;
}
@keyframes preload { to { left: 0; } }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
header.scrolled {
  height: 70px;
  background: rgba(10,10,10,0.98);
  border-bottom-color: rgba(201,168,76,0.3);
}

.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--gold-shadow);
}
.logo-text { line-height: 1.2; }
.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; display: block;
}
.logo-text .tagline {
  font-size: 0.6rem; color: var(--gray);
  letter-spacing: 4px; text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 40px; }
nav a {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-light); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: var(--transition);
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after, nav a.active::after { width: 100%; }

.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px 28px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover { box-shadow: 0 0 30px rgba(201,168,76,0.4); transform: translateY(-1px); }

.menu-toggle {
  display: none; cursor: pointer;
  width: 30px; height: 20px;
  flex-direction: column; justify-content: space-between;
}
.menu-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--gold); transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  .menu-toggle { display: flex; }
  nav {
    position: fixed; inset: 0; top: 90px;
    background: rgba(10,10,10,0.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 30px; transform: translateX(100%); transition: var(--transition);
  }
  nav.open { transform: translateX(0); }
  nav a { font-size: 1rem; letter-spacing: 3px; }
  .header-cta { padding: 14px 40px !important; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 60px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.8; max-width: 280px; margin-bottom: 28px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px; display: flex;
  align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 24px; letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--gray); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.5px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item .icon {
  color: var(--gold); font-size: 0.9rem;
  margin-top: 2px; flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 0.82rem; color: var(--gray); line-height: 1.6;
}
.footer-contact-item p a { color: var(--gray); text-decoration: none; }
.footer-contact-item p a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--gray); }
.footer-bottom .gold { color: var(--gold); }

@media (max-width: 900px) {
  footer { padding: 60px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 2px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: var(--transition);
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--gold); padding: 15px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  border-radius: 2px; transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold); color: var(--black);
  box-shadow: 0 10px 40px rgba(201,168,76,0.3);
}

/* ===== SECTION TITLE ===== */
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 20px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 20px auto; position: relative;
}
.section-divider::before, .section-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 6px; height: 6px; border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.section-divider::before { left: -10px; }
.section-divider::after { right: -10px; }
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--gray); font-size: 0.9rem; line-height: 1.9;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== GOLD LINE DECORATION ===== */
.gold-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
