:root {
  --orange: #f15a24;
  --deep-blue: #0d3b66;
  --canal-blue: #1f7a8c;
  --sunset: #f4d35e;
  --soft-white: #f9f9ff;
  --text-dark: #14213d;
  --shadow: 0 15px 35px rgba(13, 59, 102, 0.15);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  line-height: 1.7;
  min-height: 100vh;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 999px;
}

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2rem;
  padding: 4rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero .content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--deep-blue);
}

.hero .content p {
  font-size: 1.1rem;
  max-width: 550px;
}

.hero .actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.secondary {
  background: white;
  color: var(--deep-blue);
  border: 1px solid rgba(13, 59, 102, 0.15);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(241, 90, 36, 0.3);
}

.hero .visual {
  position: relative;
}

.hero .visual::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.4), rgba(13, 59, 102, 0.4));
  filter: blur(40px);
  z-index: 0;
}

.hero .visual img {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

section {
  padding: 4rem 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}

.icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(31, 122, 140, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--canal-blue);
  font-size: 1.3rem;
}

.eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.chip {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(241, 90, 36, 0.1);
  color: var(--deep-blue);
  font-weight: 600;
  font-size: 0.85rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--deep-blue);
}

.section-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(20, 33, 61, 0.8);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card figure {
  margin: 0;
}

.card figure img {
  border-radius: 16px;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(13, 59, 102, 0.2);
}

.card h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--deep-blue);
}

.highlight {
  background: radial-gradient(circle at top, rgba(241, 90, 36, 0.2), transparent);
  border: 1px solid rgba(241, 90, 36, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 2.3rem;
  color: var(--orange);
  display: block;
}

.timeline {
  border-left: 3px solid rgba(13, 59, 102, 0.3);
  margin-left: 1rem;
  padding-left: 1.5rem;
  display: grid;
  gap: 2rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(241, 90, 36, 0.2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery img {
  height: 220px;
  object-fit: cover;
}

.transport-list,
.culture-list,
.food-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.transport-card ul {
  padding-left: 1.2rem;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

#cityMap {
  width: 100%;
  height: 420px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 59, 102, 0.15);
  font: inherit;
}

footer {
  background: var(--deep-blue);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.4s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(241, 90, 36, 0.2);
  border-top: 6px solid var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-slide img {
  height: 320px;
  object-fit: cover;
}

footer .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.page-subhero {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.light-accent {
  background: linear-gradient(135deg, rgba(31, 122, 140, 0.08), rgba(244, 211, 94, 0.08));
  padding: 2rem;
  border-radius: var(--radius);
}

.list-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(20, 33, 61, 0.8);
}

.list-card ul li {
  margin-bottom: 0.35rem;
}

.transport-card,
.food-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transport-card h3,
.food-card h3 {
  margin: 0.5rem 0;
  color: var(--deep-blue);
}

.transport-card ul,
.food-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: rgba(20, 33, 61, 0.8);
}

.cta-card {
  background: linear-gradient(120deg, rgba(13, 59, 102, 0.9), rgba(31, 122, 140, 0.9));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(13, 59, 102, 0.06);
}

.contact-details i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: white;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(13, 59, 102, 0.12);
}

.contact-form button {
  border: none;
  background: var(--orange);
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 4rem 1.5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    text-align: center;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5rem;
  }

  .hero .actions {
    flex-direction: column;
  }

  section {
    padding: 3rem 1rem;
  }

  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline-item::before {
    display: none;
  }
}
