/* ===== TAXI PRIVADO — Black & Gold Premium Theme ===== */

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

:root {
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b8922e;
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --black-card-hover: #222222;
  --white: #f5f5f5;
  --grey: #999;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Montserrat Alternates', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== ORNAMENTAL BG PATTERN (subtle) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVBAR ===== */
.tp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: background 0.3s;
}

.tp-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tp-nav-brand img {
  height: 42px;
}

.tp-nav-brand span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

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

.tp-nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  transition: color 0.3s;
  position: relative;
}

.tp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.tp-nav-links a:hover::after,
.tp-nav-links a.active::after {
  width: 100%;
}

.tp-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.tp-nav-phone i {
  font-size: 0.9rem;
}

/* Mobile hamburger */
.tp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.tp-hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ===== HERO ===== */
.tp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.tp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tp-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

/* Gold accent lines — mimicking the card's sweeping lines */
.tp-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background:
    linear-gradient(160deg, transparent 30%, rgba(212, 168, 67, 0.05) 50%, transparent 70%);
  z-index: 2;
}

.tp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.tp-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 2rem;
}

.tp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.tp-hero-title span {
  color: var(--gold);
  font-style: italic;
}

.tp-hero-sub {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.tp-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gold sweeping decorative line */
.tp-gold-line {
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 110%;
  height: 120px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.tp-gold-line svg {
  width: 100%;
  height: 100%;
}

/* ===== BUTTONS ===== */
.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
}

.tp-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 25px rgba(212, 168, 67, 0.3);
}

.tp-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 35px rgba(212, 168, 67, 0.45);
  transform: translateY(-2px);
}

.tp-btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.tp-btn-outline:hover {
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.tp-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

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

.tp-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
}

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

.tp-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.tp-services {
  background: var(--black-light);
}

.tp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tp-service-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.tp-service-card:hover {
  background: var(--black-card-hover);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tp-service-card:hover::before {
  opacity: 1;
}

.tp-service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.tp-service-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}

.tp-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.tp-service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== FLEET / ABOUT SECTION ===== */
.tp-fleet {
  background: var(--black);
}

.tp-fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tp-fleet-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 997 / 972;
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 168, 67, 0.15);
}

.tp-fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-fleet-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  pointer-events: none;
}

.tp-fleet-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.tp-fleet-text h2 span {
  color: var(--gold);
}

.tp-fleet-text > p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tp-fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.tp-fleet-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tp-fleet-feat i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.tp-fleet-feat span {
  font-size: 0.95rem;
  color: var(--white);
}

/* ===== STATS BAR ===== */
.tp-stats {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.tp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tp-stat h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.tp-stat p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(10, 10, 10, 0.7);
  font-weight: 600;
}

/* ===== WHY CHOOSE US ===== */
.tp-why {
  background: var(--black-light);
}

.tp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tp-why-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--black-card);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
}

.tp-why-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  background: var(--black-card-hover);
}

.tp-why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.tp-why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.tp-why-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== CTA / BOOKING SECTION ===== */
.tp-cta {
  background: var(--black);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.tp-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tp-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.tp-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.tp-cta h2 span {
  color: var(--gold);
}

.tp-cta p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.tp-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.tp-cta-phone:hover {
  color: var(--gold-light);
}

.tp-cta-phone i {
  font-size: 1.5rem;
  animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ===== CONTACT INFO BAR ===== */
.tp-contact-bar {
  background: var(--black-card);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.tp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.tp-contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(212, 168, 67, 0.1);
  transition: background 0.3s;
}

.tp-contact-item:last-child {
  border-right: none;
}

.tp-contact-item:hover {
  background: rgba(212, 168, 67, 0.03);
}

.tp-contact-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  flex-shrink: 0;
}

.tp-contact-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.tp-contact-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.tp-contact-item p {
  font-size: 0.95rem;
  color: var(--white);
}

/* ===== FOOTER ===== */
.tp-footer {
  background: var(--black);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}

.tp-footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tp-footer p {
  font-size: 0.85rem;
  color: var(--grey);
}

.tp-footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.tp-footer-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--gold);
  transition: all 0.3s;
}

.tp-footer-links a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.tp-footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== GOLD DIVIDER ===== */
.tp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
/* Mobile styles moved to taxi-privado-mobile.css */
