@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ========================================
   CSS Variables - Brand Colors
======================================== */
:root {
  --primary-dark: #002844;
  --primary-accent: #a92467;
  --primary-accent-hover: #7c173e;
  --accent-green: #c8ee90;
  --bg-light: #f4f5f7;
  --bg-lighter: #f9f9f9;
  --footer-dark: #15222e;
  --text-secondary: #959ead;
  --text-muted: #666;
  --text-body: #555;
  --white: #ffffff;
  --border-light: rgba(0, 40, 68, 0.08);
  --border-medium: rgba(0, 40, 68, 0.12);
  --shadow-soft: 0 2px 12px rgba(12, 14, 28, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 40, 68, 0.06);
  --shadow-elevated: 0 8px 32px rgba(0, 40, 68, 0.1);
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: var(--primary-accent);
}

a:hover {
  color: var(--primary-accent-hover);
}

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4 {
  font-family: "Roboto Slab", serif;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ========================================
   Top Navigation Bar
======================================== */
.top-nav {
  background: var(--bg-light);
  color: var(--primary-dark);
  text-align: center;
  padding: 10px;
}

.top-nav p {
  margin: 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Main Navigation
======================================== */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.main-nav .logo a {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
}

.main-nav .menu {
  display: flex;
  gap: 28px;
}

.main-nav .menu a {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.main-nav .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
}

.main-nav .menu a:hover::after,
.main-nav .menu a.active::after {
  width: 100%;
}

.main-nav .menu a.active {
  color: var(--primary-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  background: var(--primary-dark);
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(169, 36, 103, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(169, 36, 103, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Sections - General
======================================== */
.section {
  padding: 64px 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  color: var(--primary-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-label-light {
  display: inline-block;
  color: var(--accent-green);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* ========================================
   Intro Section
======================================== */
.section-intro {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 0;
}

.breadcrumb {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.intro-content {
  max-width: 720px;
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-body);
  margin: 0;
}

/* ========================================
   Quick Navigation Section
======================================== */
.section-quick-nav {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 48px;
}

.quick-nav-box {
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
}

.quick-nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.quick-nav-header i {
  color: var(--primary-accent);
  font-size: 1.25rem;
}

.quick-nav-header h2 {
  font-size: 1.25rem;
  margin: 0;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.quick-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-body);
}

.quick-nav-item:hover {
  border-color: var(--primary-accent);
  background: var(--white);
}

.quick-nav-item:hover .nav-day {
  background: var(--primary-accent);
  color: var(--white);
}

.nav-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--primary-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.nav-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary-dark);
}

/* ========================================
   Why Car Rental Section
======================================== */
.section-why-car {
  background: var(--white);
  padding-top: 16px;
  padding-bottom: 64px;
}

.why-car-box {
  background: var(--primary-dark);
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.why-car-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.why-car-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

.benefits-list i {
  color: var(--accent-green);
  font-size: 0.875rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.btn-accent {
  display: inline-block;
  background: var(--accent-green);
  color: var(--primary-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  margin-top: 8px;
}

.btn-accent:hover {
  background: #b8e07a;
  color: var(--primary-dark);
}

.why-car-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-highlight {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 32px 40px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   Itinerary Section
======================================== */
.section-itinerary {
  background: var(--bg-lighter);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Day Card */
.day-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 100px 1fr;
  overflow: hidden;
}

.day-card:last-child {
  margin-bottom: 0;
}

.day-badge {
  background: var(--primary-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 16px;
  text-align: center;
}

.day-num {
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.day-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.day-content {
  padding: 32px 40px;
}

.day-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

/* Time Block */
.time-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.time-block:last-child {
  margin-bottom: 0;
}

.time-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 2px;
}

.time-marker i {
  color: var(--primary-accent);
  font-size: 1.125rem;
}

.time-marker span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-content h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.time-content h3:not(:first-child) {
  margin-top: 24px;
}

.time-content p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Attraction List */
.attraction-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.attraction-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

.attraction-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary-accent);
  border-radius: 50%;
}

.attraction-list li:last-child {
  margin-bottom: 0;
}

.attraction-list strong {
  color: var(--primary-dark);
}

/* Tip Callout */
.tip-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-accent);
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 0 6px 6px 0;
}

.tip-callout i {
  color: var(--primary-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.tip-callout p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   Additional Activities Section
======================================== */
.section-activities {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.activity-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
}

.activity-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card);
}

.activity-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon i {
  font-size: 1.25rem;
  color: var(--primary-accent);
}

.activity-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.activity-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   Practical Tips Section
======================================== */
.section-tips {
  background: var(--bg-lighter);
  padding-top: 80px;
  padding-bottom: 80px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
}

.tip-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon i {
  font-size: 1.125rem;
  color: var(--primary-accent);
}

.tip-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.tip-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   CTA Section
======================================== */
.section-cta {
  background: var(--white);
  padding: 0;
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #003d66 50%, var(--primary-accent-hover) 100%);
  padding: 80px 24px;
}

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

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--primary-accent);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

.cta-contact p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-contact a {
  color: var(--accent-green);
  font-weight: 500;
}

.cta-contact a:hover {
  text-decoration: underline;
  color: var(--accent-green);
}

/* ========================================
   Footer
======================================== */
footer {
  background-color: var(--footer-dark);
  color: var(--text-secondary);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.footer-section h2 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
}

.footer-section ul li a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-accent);
}

.social-links a:hover i {
  color: var(--white) !important;
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1024px) {
  .why-car-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-car-visual {
    justify-content: flex-start;
  }

  .stat-highlight {
    padding: 24px 32px;
  }

  .stat-value {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 16px;
  }

  .main-nav .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-elevated);
  }

  .main-nav .menu.active {
    display: flex;
  }

  .main-nav .menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav .menu a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 72px 20px 60px;
  }

  .section {
    padding: 48px 0;
  }

  .section-itinerary,
  .section-activities,
  .section-tips {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .quick-nav-box {
    padding: 24px;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr;
  }

  .why-car-box {
    padding: 32px 24px;
  }

  /* Day Card Mobile */
  .day-card {
    grid-template-columns: 1fr;
  }

  .day-badge {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 24px;
  }

  .day-num {
    font-size: 1.75rem;
  }

  .day-label {
    margin-top: 0;
  }

  .day-content {
    padding: 24px;
  }

  .day-title {
    font-size: 1.375rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .time-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .time-marker {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-light);
  }

  /* Activities Grid */
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    padding: 24px;
  }

  /* Tips Grid */
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tip-card {
    padding: 24px;
  }

  /* CTA */
  .cta-wrapper {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px 48px;
  }

  .container {
    padding: 0 16px;
  }

  .section-intro {
    padding-top: 32px;
  }

  .intro-text {
    font-size: 1rem;
  }

  .quick-nav-box {
    padding: 20px;
  }

  .quick-nav-item {
    padding: 12px 14px;
  }

  .why-car-box {
    padding: 24px 20px;
  }

  .stat-highlight {
    padding: 20px 24px;
    width: 100%;
  }

  .stat-value {
    font-size: 2.25rem;
  }

  .day-content {
    padding: 20px;
  }

  .day-title {
    font-size: 1.25rem;
  }

  .activity-card,
  .tip-card {
    flex-direction: column;
    gap: 16px;
  }

  .activity-icon,
  .tip-icon {
    width: 44px;
    height: 44px;
  }

  .cta-wrapper {
    padding: 48px 16px;
  }

  .btn-large {
    padding: 14px 32px;
  }
}
