/* ===== VARIABLES ===== */
:root {
  --gold: #b8952a;
  --gold-light: #d4af50;
  --gold-dark: #8a6e1e;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;
  --gray-light: #f5f5f5;
  --gray-mid: #f0eeee;
  --gray-text: #555;
  --white: #ffffff;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 13px 34px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-dark); }
.hero-btns { display:flex; gap:16px; justify-content:center; margin-top:28px; flex-wrap:wrap; }

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 13px 34px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-dark:hover { background: var(--dark2); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 16px;
}
.gold-bar {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.gold-bar.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ===== HEADER ===== */
#site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.header-logo { flex-shrink: 0; }
.header-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.3s;
}
.header-phone:hover { color: var(--gold-dark); }
.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NAVIGATION ===== */
nav.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
nav.main-nav > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  transition: color 0.3s;
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li > a.active { color: var(--gold); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #3a3028;
  min-width: 290px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 13px 22px;
  color: var(--white);
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.dropdown-menu a:hover {
  background: var(--gold);
  color: var(--white);
}
.chevron { display: inline-block; width: 14px; height: 14px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger svg { width: 28px; height: 28px; color: var(--dark); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--dark);
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  border: none;
  border-bottom: 1px solid #333;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav button:hover { color: var(--gold); }
.mobile-phone {
  padding: 14px 20px;
  color: var(--gold) !important;
  font-weight: 700 !important;
  border-bottom: 1px solid #333;
}
.mobile-sub {
  display: none;
  background: #222;
  flex-direction: column;
}
.mobile-sub.open { display: flex; }
.mobile-sub a {
  padding-left: 36px !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  color: #ccc !important;
}
.mobile-sub a:hover { color: var(--gold) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s;
}
.hero-phone:hover { color: var(--gold-light); }
.hero-phone svg { width: 22px; height: 22px; }

/* Page hero (smaller) */
.page-hero {
  min-height: 280px;
}
.page-hero .hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 0;
}

/* ===== FEATURES BOXES ===== */
.features-strip {
  background: var(--dark);
  color: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: 1px solid #333;
}
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid #333;
}
.feature-box:last-child { border-right: none; }
.feature-box img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.feature-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}
.section-white { background: var(--white); }
.section-gray { background: var(--gray-mid); }
.section-dark { background: var(--dark); color: var(--white); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  display: block;
}
.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay { background: rgba(0,0,0,0.52); }
.service-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fleet-card {
  background: var(--white);
  border: 1px solid #eee;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.fleet-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.fleet-card-body { padding: 22px; }
.fleet-card-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 14px;
}
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fleet-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-text);
}
.fleet-feature::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-text);
}
.why-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== TOURISM DESTINATIONS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.destination-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.5s;
}
.destination-card:hover img { transform: scale(1.06); }
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.destination-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FORMS ===== */
.form-section { max-width: 760px; margin: 0 auto; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-notice {
  background: var(--gray-light);
  padding: 16px;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 18px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--gray-text);
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] { margin-top: 3px; accent-color: var(--gold); }
.form-radios { display: flex; gap: 24px; margin-bottom: 12px; }
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 18px;
  margin-top: 30px;
}

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 820px; }
.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  color: var(--gray-text);
  margin-bottom: 14px;
  line-height: 1.8;
}
.legal-content a { color: var(--gold); transition: color 0.3s; }
.legal-content a:hover { color: var(--gold-dark); }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--dark);
  color: var(--white);
}
.footer-inner {
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #aaa;
  font-size: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: #aaa; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: #aaa; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--white);
  transition: background 0.3s;
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 18px; height: 18px; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  transition: background 0.3s;
}
.whatsapp-btn:hover { background: #1da851; }
.whatsapp-btn svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: #666;
}
.footer-copy a { color: #666; transition: color 0.3s; }
.footer-copy a:hover { color: var(--gold); }
.scroll-top {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.scroll-top:hover { background: var(--gold-dark); }
.scroll-top svg { width: 20px; height: 20px; }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s, background 0.3s;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== SERVICE PAGE CONTENT ===== */
.service-content { max-width: 860px; }
.service-content p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.service-content h2 { font-size: 1.8rem; margin-top: 40px; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-text);
  font-size: 15px;
}
.service-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===== RESEÑAS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.review-card {
  background: var(--white);
  padding: 24px;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
}
.review-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.review-date {
  font-weight: 400;
  color: #999;
}
.review-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 36px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.review-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 24px;
}
.review-msg {
  padding: 14px 18px;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.review-msg-ok    { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.review-msg-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Star rating input */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 6px;
}
.star-rating input { display: none; }
.star-rating label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: block; }
  .header-phone { display: none; }
  .header-row { padding: 8px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-box { border-right: none; border-bottom: 1px solid #333; }
  .feature-box:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 22px; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section-title { font-size: 1.5rem; letter-spacing: 2px; }
  .hero { min-height: 380px; }
  .page-hero { min-height: 220px; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-gold, .btn-dark { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
