*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #52b788 100%); min-height: 100vh; }
h1, h2, h3 { font-family: 'Marcellus', serif; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 16px 32px; display: flex; align-items: center; justify-content: flex-end; background: rgba(27,67,50,.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.1); transition: background .3s; }
nav.scrolled { background: rgba(27,67,50,.85); }
nav img { height: 36px; width: auto; border-radius: 6px; }
nav a { color: #fff; text-decoration: none; font-size: .9rem; font-weight: 600; opacity: .85; transition: opacity .2s; }
nav a:hover { opacity: 1; }
.nav-links { display: flex; gap: 24px; }

/* HERO SLIDER */
.hero { position: relative; height: 100vh; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform .8s ease; }
.slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.slide-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 20px; max-width: 700px; }
.slide-content h1, .slide-content h2 { font-size: clamp(1.4rem, 4vw, 2.4rem); margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.slide-content h3 { font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 400; opacity: .85; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.hero-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 10px; }
.hero-nav button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: background .3s; padding: 0; }
.hero-nav button.active { background: #fff; }
.hero-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 16px; z-index: 2; transform: translateY(-50%); pointer-events: none; }
.hero-arrows button { pointer-events: auto; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: all .2s; }
.hero-arrows button:hover { background: rgba(255,255,255,.3); }

/* SECTION */
section { padding: 80px 20px; }
.section-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2rem); color: #fff; margin-bottom: 12px; text-shadow: 0 2px 4px rgba(0,0,0,.2); }
.section-subtitle { text-align: center; font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 48px; }

/* FIND US */
.find-us { background: transparent; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
.contact-card { background: rgba(255,255,255,.12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 32px 24px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25); transition: transform .2s; }
.contact-card:hover { transform: translateY(-4px); }
.contact-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.contact-card p { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.contact-card a { color: rgba(255,255,255,.95); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.map-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); color: #fff !important; border: 1px solid rgba(255,255,255,.25); border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 4px 12px rgba(0,0,0,.1); transition: all .2s; }
.pill:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); text-decoration: none; color: #fff !important; }
.pill img { width: 25px; height: 25px; border-radius: 4px; }

/* FOOTER */
footer { background: rgba(0,0,0,.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); text-align: center; padding: 32px 20px; }
footer img { height: 40px; width: auto; border-radius: 8px; margin-bottom: 12px; }
footer a { color: #fff; text-decoration: none; }
footer p { font-size: .85rem; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-links { gap: 16px; }
  section { padding: 60px 16px; }
}
