:root {
  --primary: #c5a059;
  --primary-hover: #e8c678;
  --bg-dark: #0a0a0a;
  --bg-light: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 5%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
}

.logo span {
  color: var(--text-main);
  font-weight: 400;
  font-size: 1rem;
  display: block;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch a {
  font-size: 0.85rem;
  opacity: 0.6;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--primary);
}

.btn {
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: var(--bg-dark);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  display: inline-block;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-dark);
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1.5s ease;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-line {
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 160, 89, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

/* About / Info */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.info-features {
  list-style: none;
  margin-top: 2rem;
}

.info-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-features i {
  color: var(--primary);
}

.info-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.info-image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.info-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 8px;
  transform: translate(15px, 15px);
  z-index: -1;
  transition: transform 0.4s ease;
}

.info-image-container:hover::after {
  transform: translate(10px, 10px);
}

/* Reservation Form */
.reservation-section {
  background-color: var(--bg-light);
}

.reservation-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.reservation-form .form-group {
  margin-bottom: 1.5rem;
}

.reservation-form .form-row {
  display: flex;
  gap: 1.5rem;
}

.reservation-form .form-row .form-group {
  flex: 1;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.reservation-form input:focus,
.reservation-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.reservation-form select option {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 768px) {
  .reservation-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .reservation-container {
    padding: 2rem 1.5rem;
  }
}

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fleet-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

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

.fleet-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Contact / Footer */
footer {
  background-color: #050505;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

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

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

.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.testimonial-card .stars {
  color: var(--primary);
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.reviewer h4 {
  color: var(--text-main);
  font-size: 1.1rem;
}

.reviewer span {
  font-size: 0.9rem;
  color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

/* Mobile responsive */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .info-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--bg-dark);
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active { right: 0; }
  .hamburger { display: block; z-index: 1001; }
  .hero-title { font-size: 2.2rem; }
  .fleet-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}
