/* Sebastian Industrial Park — Modern Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #1a2d3f;
  --orange: #d97c2a;
  --light:  #f4f6f8;
  --border: #dde2e8;
  --text:   #333d47;
  --white:  #ffffff;
  --nav-h:  68px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--light); line-height: 1.65; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
header { position: sticky; top: 0; z-index: 1000; background: var(--navy); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 32px; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: .03em; }
.logo-sub { font-size: .7rem; color: #8fa8bf; letter-spacing: .06em; text-transform: uppercase; }
nav { display: flex; gap: 4px; }
nav a { color: #c8d8e8; font-size: .88rem; font-weight: 500; padding: 6px 14px; border-radius: 4px; transition: background .18s, color .18s; }
nav a:hover, nav a.active { background: var(--orange); color: var(--white); text-decoration: none; }
.header-contact { font-size: .78rem; color: #8fa8bf; }
.header-contact a { color: #c8d8e8; }
.header-contact a:hover { color: var(--orange); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO / CAROUSEL */
.hero { position: relative; width: 100%; height: 480px; overflow: hidden; background: #0d1a26; }
.carousel { display: flex; height: 100%; transition: transform .65s ease; }
.carousel-slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 40px; background: linear-gradient(transparent, rgba(13,26,38,.82)); color: var(--white); }
.carousel-caption h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; }
.carousel-caption p { font-size: .95rem; opacity: .88; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.18); border: none; color: var(--white); font-size: 1.6rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 10; }
.carousel-btn:hover { background: var(--orange); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots { position: absolute; bottom: 14px; right: 20px; display: flex; gap: 7px; z-index: 10; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: background .2s; }
.carousel-dots button.active { background: var(--orange); }

/* PAGE WRAP */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 60px; }
.page-hero { background: var(--navy); padding: 36px 32px; color: var(--white); }
.page-hero h1 { font-size: 1.9rem; font-weight: 700; }
.page-hero p { margin-top: 6px; color: #8fa8bf; font-size: .95rem; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 36px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,.06); }
.feature-card .icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: #666; }

/* CONTENT */
.content-section { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px; margin-top: 32px; box-shadow: 0 2px 6px rgba(0,0,0,.05); }
.content-section h2 { font-size: 1.35rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.content-section p { margin-bottom: 14px; font-size: .97rem; }
.content-section p:last-child { margin-bottom: 0; }

/* PHOTOS */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 28px; }
.photo-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }

/* PLANS */
.plan-container { margin-top: 28px; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.plan-container img { max-width: 100%; margin: 0 auto; border-radius: 4px; }
.plan-note { margin-top: 12px; font-size: .82rem; color: #888; font-style: italic; }

/* CTA */
.cta-banner { background: var(--orange); color: var(--white); border-radius: 8px; padding: 32px 36px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 1.25rem; margin-bottom: 4px; }
.cta-banner p { font-size: .9rem; opacity: .9; }
.cta-btn { display: inline-block; background: var(--white); color: var(--orange); font-weight: 700; padding: 12px 28px; border-radius: 6px; white-space: nowrap; transition: opacity .2s; }
.cta-btn:hover { opacity: .88; text-decoration: none; }

/* SPECS TABLE */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .92rem; }
.specs-table th { background: var(--navy); color: var(--white); padding: 10px 16px; text-align: left; font-weight: 600; }
.specs-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.specs-table tr:nth-child(even) td { background: var(--light); }

/* FOOTER */
footer { background: var(--navy); color: #8fa8bf; text-align: center; padding: 28px 24px; font-size: .82rem; line-height: 1.9; }
footer a { color: #c8d8e8; }
footer a:hover { color: var(--orange); text-decoration: none; }
footer .footer-links { margin-bottom: 8px; }
footer .footer-links a { margin: 0 10px; }

/* SITEMAP */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 28px; }
.sitemap-section h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--orange); }
.sitemap-section ul { list-style: none; }
.sitemap-section ul li { padding: 5px 0; font-size: .9rem; }
.sitemap-section ul li a { color: var(--text); }
.sitemap-section ul li a:hover { color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 768px) {
  header { padding: 14px 18px; position: relative; flex-wrap: wrap; height: auto; }
  .logo { order: 1; }
  .nav-toggle { display: flex; order: 3; }
  nav { display: none; order: 4; width: 100%; flex-direction: column; gap: 2px; padding: 10px 0 6px; }
  nav.open { display: flex; }
  nav a { padding: 10px 12px; }
  .header-contact { order: 2; font-size: .72rem; }
  .hero { height: 300px; }
  .carousel-caption h2 { font-size: 1.15rem; }
  .cta-banner { flex-direction: column; text-align: center; }
  .content-section { padding: 22px 18px; }
  .page-hero { padding: 24px 18px; }
}
