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

:root {
  --color-bg: #050505;
  --color-surface: #0d0d0d;
  --color-accent: #d4af37; /* Premium Gold */
  --color-accent-soft: rgba(212, 175, 55, 0.15);
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-border: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 50%, rgba(5,5,5,0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 84px;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #000;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: #fff;
  margin-left: 20px;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Section Styling */
section {
  padding: 140px 0;
}

.section-tag {
  display: block;
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title {
  font-size: 54px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Grid Layouts */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fleet-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px);
}

.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.fleet-price {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.fleet-specs {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Feature Boxes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-box {
  padding: 40px;
  border-left: 1px solid var(--color-accent-soft);
}

.feature-box i {
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 25px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Footer */
footer {
  background: #000;
  padding: 100px 0 50px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-about p {
  margin-top: 30px;
  color: var(--color-text-muted);
  max-width: 400px;
}

.footer-col h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 14px;
}

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

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 64px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content h1 { font-size: 44px; }
  .fleet-grid, .features-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 38px; }
}

/* Subpage Hero */
.sub-hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(5,5,5,0.8), rgba(5,5,5,1)), url('/wp-content/uploads/2021/09/vip-arac-kiralama-1.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.sub-hero h1 {
  font-size: 54px;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-accent);
}

/* Page Content */
.page-content {
  background: var(--color-bg);
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.content-wrapper h2, .content-wrapper h3 {
  margin: 40px 0 20px;
  color: var(--color-accent);
}

.content-wrapper p {
  margin-bottom: 25px;
  color: #ccc;
  font-size: 17px;
}

.content-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 30px 0;
  border: 1px solid var(--color-border);
}

.content-wrapper ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.content-wrapper ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.content-wrapper ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* CTA Section */
.cta-section {
  background: var(--color-surface);
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.gold-text {
  color: var(--color-accent);
}

.cta-btns {
  margin-top: 40px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .sub-hero h1 { font-size: 38px; }
  .cta-box h2 { font-size: 32px; }

}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-surface);
    display: flex; /* Ensure it shows when active */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 18px;
    opacity: 1;
  }
}

