:root{
  --bg:#ffffff;
  --text:#222222;
  --muted:#6b6b6b;
  --accent:#8aa3a6;
}

/* Base reset */
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}
a{color:inherit}

/* Announcements (fixed) */
.announcements-banner{position:fixed;top:0;left:0;right:0;height:40px;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.55);color:#fff;font-size:13px;z-index:60}
.announcement-content{max-width:980px;padding:0 16px}

/* Header - default is in-flow (so it doesn't overlap page content) */
.site-header{position:relative;z-index:50;background:var(--bg);border-bottom:1px solid rgba(0,0,0,0.03)}
.site-header .nav-container{display:flex;align-items:center;justify-content:space-between;padding:16px 28px}
.nav-brand{display:flex;align-items:center;gap:10px}
.nav-brand svg{width:32px;height:32px;fill:currentColor}
.nav-brand span{font-weight:700;color:var(--text)}
.nav-menu{display:flex;gap:22px;align-items:center;margin:0;padding:0;list-style:none}
.nav-menu a{color:var(--text);text-decoration:none;font-weight:600}
.nav-toggle{display:none}

/* Transparent header variant for hero page */
.site-header.transparent{position:fixed;top:0;left:0;right:0;background:transparent;border-bottom:0}
.site-header.transparent .nav-menu a{color:#fff}
.site-header.transparent .nav-brand span{color:#fff}
.site-header.transparent .nav-brand svg{filter:drop-shadow(0 1px 2px rgba(0,0,0,0.45))}

/* Hero / carousel */
.hero{position:relative;height:100vh;overflow:hidden}
.carousel{position:relative;height:100%}
.carousel-slides{position:relative;height:100%}
.slide{position:absolute;inset:0;opacity:0;transition:opacity 1.4s ease-in-out;background:#000}
.slide img{width:100%;height:100%;object-fit:cover;display:block}
.slide.active{opacity:1;z-index:2}
.slide-overlay{position:absolute;left:6vw;bottom:18vh;color:#fff;max-width:50vw}
.slide-overlay h1{font-size:clamp(40px,8vw,84px);margin:0;font-weight:800;line-height:0.95}
.slide-overlay p{margin-top:12px;color:rgba(255,255,255,0.9)}

.carousel-prev,.carousel-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,0.45);color:#fff;border:0;padding:10px 12px;border-radius:6px;cursor:pointer;z-index:30}
.carousel-prev{left:14px}
.carousel-next{right:14px}
.carousel-dots{position:absolute;left:50%;transform:translateX(-50%);bottom:18px;display:flex;gap:8px;z-index:30}
.dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.45);cursor:pointer}
.dot.active{background:#fff}

/* Content and utilities */
.container{max-width:980px;margin:0 auto;padding:56px 20px}
h1,h2,h3{color:var(--text);margin:0}
h2{font-size:28px;text-align:center;margin-top:16px}
.btn{display:inline-block;padding:10px 14px;background:var(--accent);color:#fff;border-radius:6px;text-decoration:none;font-weight:700}

/* Footer */
.site-footer{padding:36px 20px;text-align:center;color:var(--muted);background:transparent}

/* Responsive */
@media (max-width:900px){
  .nav-menu{display:none}
  .nav-toggle{display:block}
  .slide-overlay{left:6vw;right:6vw;max-width:none;bottom:12vh}
  .slide-overlay h1{font-size:clamp(28px,9vw,40px)}
}
/* Re-declare header defaults to avoid being overridden
   Keep header non-fixed and with light background by default
   The `.site-header.transparent` class is used on the homepage only. */

.site-header {
  position: relative;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.nav-container { display:flex; align-items:center; justify-content:space-between; width:100%; }

.nav-brand { display:flex; align-items:center; gap:10px; color:var(--text); }

.nav-brand a{ display:flex; align-items:center; gap:8px; color:var(--text); text-decoration:none; font-weight:700 }

.nav-brand svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  color: var(--text);
}

.nav-brand span {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

/* Language toggle button */
.lang-toggle {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.3s;
}

.lang-toggle:hover {
  opacity: 0.9;
}

.site-header.transparent .lang-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.site-header.transparent:hover .lang-toggle {
  background: var(--accent);
  color: white;
  border: none;
}

/* Transparent header variant (homepage) - placed after defaults so it overrides them */
.site-header.transparent{position:fixed;top:0;left:0;right:0;background:transparent;border-bottom:0;z-index:120;transition:background 0.4s ease, border-color 0.4s ease}
.site-header.transparent:hover{background:var(--bg);border-bottom:1px solid rgba(0,0,0,0.03)}
.site-header.transparent .nav-menu a{color:#fff;transition:color 0.4s ease}
.site-header.transparent:hover .nav-menu a{color:var(--text)}
.site-header.transparent .nav-brand span{color:#fff;transition:color 0.4s ease}
.site-header.transparent:hover .nav-brand span{color:var(--text)}
.site-header.transparent .nav-brand svg{color:#fff;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.45));transition:color 0.4s ease, filter 0.4s ease}
.site-header.transparent:hover .nav-brand svg{color:var(--text);filter:drop-shadow(0 0 0 rgba(0,0,0,0))}
.site-header.transparent .nav-toggle span{background:#fff;transition:background 0.4s ease}
.site-header.transparent:hover .nav-toggle span{background:var(--text)}

/* Force dark nav/logo on non-home pages to avoid white-on-white issues */
.site-header:not(.transparent) .nav-link,
.site-header:not(.transparent) .nav-menu a,
.site-header:not(.transparent) .nav-brand span,
.site-header:not(.transparent) .nav-brand svg,
.site-header:not(.transparent) .nav-toggle span {
  color: var(--text) !important;
  fill: currentColor;
}

/* Announcements Banner */
.announcements-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 13px;
  z-index: 99;
  padding: 0 20px;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.close-announcement {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Hero and Carousel
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide styling (created by JS with class .slide) */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  background: #000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Slide overlay (created by JS inside each slide) */
.slide-overlay {
  position: absolute;
  left: 6vw;
  bottom: 18vh;
  max-width: 50vw;
  color: white;
  z-index: 5;
}

.slide-overlay h1 {
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.95;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
}

.slide-overlay p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
  max-width: 400px;
}

/* Carousel controls (prev/next buttons) */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  z-index: 20;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
  opacity: 1;
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

/* Carousel dots (navigation) */
.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.dot.active {
  background: white;
}

/* Welcome section - white text */
.welcome {
  color: white;
}

.welcome h2,
.welcome p {
  color: white;
}

/* Hero overlay (text section if used separately) */
.hero-overlay {
  position: absolute;
  left: 6vw;
  bottom: 18vh;
  max-width: 50vw;
  color: white;
  z-index: 5;
}

.hero-overlay h1 {
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.95;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
}

.hero-overlay p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
}

/* ========================================
   Main Content Sections
   ======================================== */

main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 68px 28px;
}

section {
  width: 100%;
}

h1 {
  font-size: 48px;
  margin: 0 0 24px;
  font-weight: 800;
}

h2 {
  font-size: 32px;
  margin: 0 0 24px;
  text-align: center;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
}

h4 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* Welcome Section */
.welcome {
  background: var(--bg);
  padding: 68px 0;
}

/* Service Preview */
.service-preview {
  background: #f5f5f5;
  padding: 68px 0;
}

.service-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.service-item {
  text-align: center;
}

.service-time {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}

.service-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

/* Get Connected */
.get-connected {
  background: var(--bg);
  padding: 68px 0;
}

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

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid #eee;
  padding: 48px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  color: var(--text);
}

.footer-section p {
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

/* Content Sections */
.page-header {
  background: #f5f5f5;
  padding: 88px 28px 68px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.content-section {
  padding: 68px 0;
  border-bottom: 1px solid #f0f0f0;
}

.content-section:last-of-type {
  border-bottom: none;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    gap: 0;
    padding: 16px 0;
  }

  .nav-menu.active li {
    padding: 12px 28px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  .carousel-prev,
  .carousel-next {
    padding: 10px 12px;
    font-size: 14px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .slide-overlay,
  .hero-overlay {
    left: 5vw;
    right: 5vw;
    max-width: unset;
    bottom: 12vh;
  }

  .slide-overlay h1,
  .hero-overlay h1 {
    font-size: clamp(28px, 10vw, 48px);
  }

  .container {
    padding: 48px 20px;
  }

  h2 {
    font-size: 24px;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .announcements-banner {
    height: auto;
    padding: 12px 16px;
    font-size: 12px;
  }

  .announcement-content {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .hero,
  .carousel,
  .carousel-prev,
  .carousel-next,
  .carousel-dots {
    display: none;
  }

  body {
    background: white;
  }
}

/* Map embed styling */
.map-embed {
  width: 100%;
  max-width: 920px;
  margin: 18px 0 6px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 800px) {
  .map-embed iframe { height: 240px; }
}

/* Form styling */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 163, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  line-height: 1.5;
}

.contact-form .btn {
  width: 100%;
  padding: 14px 24px;
  margin-top: 12px;
  font-size: 16px;
}

.contact-form .btn:hover {
  opacity: 0.85;
}
