/* ============================================
   THANET ETHANET – CLEAN PUFFIN-STYLE THEME
============================================ */

/* ROOT VARIABLES */
:root {
  --blue: #00A3FF;
  --blue-dark: #005A99;
  --text-dark: #001636;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-grey: #f4f7fb;
  --border: rgba(0,0,0,0.14);
  --radius: 14px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg-grey);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* TOP STRIP */
.top-strip {
  background: var(--blue);
  color: white;
  padding: 6px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-strip a { color: white; text-decoration: none; }

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-light);
  border-bottom: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-link img {
  height: 70px;
  width: auto;
  display: block;
}

/* NAV */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s;
}

.nav-menu a:hover { color: var(--blue); }

.nav-menu a[aria-current="page"] {
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.show { display: flex; }
}

/* ===================== HERO FIXED ===================== */

.hero {
  position: relative;
  background: url('assets/img/van-hero.jpg') center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-inner h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-inner p {
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  padding: 14px 24px;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(0,163,255,0.3);
  transition: 0.2s;
}

.btn-primary:hover { filter: brightness(1.1); }

/* SERVICES GRID */
.services {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.3rem;
}

.card p {
  line-height: 1.5;
  color: #333;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #0d1a2a;
  color: white;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

footer h4 {
  margin-bottom: 8px;
  color: var(--blue);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li { margin-bottom: 6px; }

footer a { color: white; text-decoration: none; }
footer a:hover { color: var(--blue); }

.small {
  color: #b8c6d8;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}