/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2EA3F2; text-decoration: none; transition: color .2s; }
a:hover { color: #1a7bbf; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', Georgia, serif;
  color: #333;
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: .6em; }
h2 { font-size: 1.8rem; margin-bottom: .5em; }
h3 { font-size: 1.3rem; margin-bottom: .4em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

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

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}
.header-top {
  background: #2EA3F2;
  color: #fff;
  font-size: .85rem;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.header-top a { color: #fff; }
.header-top a:hover { color: #e0e0e0; }
.header-main { padding: 12px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img { height: 70px; width: auto; }
.main-nav > ul {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav a {
  display: block;
  padding: 8px 10px;
  color: #333;
  font-size: .88rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #2EA3F2;
  background: #f0f8ff;
}
/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ' \25BE';
  font-size: .7em;
  margin-left: 4px;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  border-radius: 4px;
  min-width: 220px;
  z-index: 1000;
  padding: 8px 0;
  flex-direction: column;
}
.dropdown li { width: 100%; }
.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: .9rem;
  white-space: nowrap;
}
.dropdown a:hover { background: #f0f8ff; }
.has-dropdown:hover > .dropdown { display: block; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
  background: #2b303a;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 48, 58, .75);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: 2.6rem; margin-bottom: .3em; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 700px; margin: 0 auto 1.2em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.btn-primary {
  background: #2EA3F2;
  color: #fff;
  border-color: #2EA3F2;
}
.btn-primary:hover {
  background: #1a8ad8;
  border-color: #1a8ad8;
  color: #fff;
}
.btn-cta {
  background: #edf000;
  color: #2b303a;
  border-color: #edef77;
  font-size: 1.1rem;
}
.btn-cta:hover {
  background: #d9dc00;
  border-color: #d9dc00;
  color: #2b303a;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #2b303a;
}
.btn-phone {
  background: #2EA3F2;
  color: #fff;
  font-size: 1.2rem;
  padding: 16px 40px;
  letter-spacing: .5px;
}
.btn-phone:hover { background: #1a8ad8; color: #fff; }

/* ===== TABLES ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: .95rem;
}
.info-table thead {
  background: #2b303a;
  color: #fff;
}
.info-table th {
  font-family: 'PT Serif', Georgia, serif;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.info-table tbody tr:hover { background: #f8fbff; }
.info-table td:first-child { font-weight: 700; color: #333; white-space: nowrap; }
@media (max-width: 768px) {
  .info-table { font-size: .85rem; }
  .info-table th, .info-table td { padding: 10px 10px; }
  .info-table td:first-child { white-space: normal; }
}

/* ===== CONTENT SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: #f7f7f7; }
.section-dark { background: #2b303a; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.85); }
.section-dark a { color: #edf000; }
.section-dark a:hover { color: #fff; }
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: .3em; }
.card-body p { font-size: .95rem; }

/* ===== BLURB (icon + text) ===== */
.blurb { text-align: center; padding: 20px; }
.blurb-icon {
  width: 72px;
  height: 72px;
  background: #2EA3F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 1.6rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #2b303a;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.cta-banner h2 { color: #fff; margin-bottom: .4em; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 1.2em; }

/* ===== CITY LINKS BAR ===== */
.city-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  padding: 10px 0;
}
.city-links a {
  font-size: .95rem;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.city-links a:hover { border-bottom-color: currentColor; }

/* ===== DESTINATIONS LIST ===== */
.destinations-list { counter-reset: dest; }
.destinations-list li {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  counter-increment: dest;
  display: flex;
  gap: 12px;
}
.destinations-list li::before {
  content: counter(dest);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #2EA3F2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  margin-top: 2px;
}
.destinations-list li:last-child { border-bottom: none; }
.dest-title { font-weight: 700; color: #333; }

/* ===== CONTENT COLUMNS ===== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== FORMS ===== */
.form-section { max-width: 700px; margin: 0 auto; }
.google-form-embed {
  width: 100%;
  border: none;
  border-radius: 8px;
  min-height: 600px;
}

/* ===== BLOG ===== */
.blog-post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.blog-post-card:last-child { border-bottom: none; }
.blog-post-card img { border-radius: 6px; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-meta { font-size: .85rem; color: #999; margin-bottom: .5em; }

/* ===== FOOTER ===== */
.site-footer {
  background: #222;
  color: rgba(255,255,255,.8);
  padding: 50px 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0;
  font-size: .85rem;
  color: #999;
}
.breadcrumbs a { color: #2EA3F2; }
.breadcrumbs span { margin: 0 6px; }

/* ===== ABOUT / TEXT PAGES ===== */
.page-content {
  padding: 40px 0 60px;
}
.page-content h1 { margin-bottom: .8em; }
.page-content img {
  border-radius: 6px;
  margin: 1em 0;
}
.text-content { max-width: 800px; }
.wide-content { max-width: none; }
.text-content ul, .text-content ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.text-content ul { list-style: disc; }
.text-content ol { list-style: decimal; }
.text-content li { margin-bottom: .4em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 50px 20px; }
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 40px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 10px 0;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 12px 20px; border-radius: 0; }

  .header-main .container { position: relative; }
  .site-logo img { height: 50px; }

  .has-dropdown > a::after { content: ' \25BE'; }
  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 20px;
  }
  .has-dropdown:hover > .dropdown { display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown a { padding: 8px 20px; font-size: .85rem; }

  .blog-post-card { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 20px; }

  .btn { padding: 12px 24px; font-size: .95rem; }
  .btn-phone { padding: 14px 28px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .header-top .container { flex-direction: column; gap: 4px; }
  .hero h1 { font-size: 1.5rem; }
}
