@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* ================= IMPORTS & RESET ================= */

:root {
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Palette */
  --color-bg: #ffffff;
  --color-text-main: #0f172a;  /* Slate 900 */
  --color-text-muted: #42474d; /* Slate 600 */
  --color-accent: #000000;
  --color-border: #e2e8f0;     /* Slate 200 */
  --color-bg-alt: #f8fafc;     /* Slate 50 */
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

/* ================= NAVBAR ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.0); /* Transparent initially */
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 5px 0;
}

body.menu-open .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 60px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-suffix {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.navlinks {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--color-text-main);
  color: #fff;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text-main);
  white-space: nowrap;
}

.nav-btn:hover {
  background: #ffffff;
  color: var(--color-text-main);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-text-main);
}

.mobile-only { display: none; }

/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/map-bg.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.hero p {
  font-size: 24px;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto 40px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.nv-pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 575px) {
  .nv-pill-row {
    gap: 8px;
  }
}

.nv-pill {
  background: var(--color-text-main);
  color: #fff;
  padding: 14px 36px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text-main);
  white-space: nowrap;
}

.nv-pill:hover {
  background: #ffffff;
  color: var(--color-text-main);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media screen and (max-width: 575px) {
  .nv-pill {
    padding: 10px 18px;
    font-size: 12px;
}
}

/* ================= FEATURES (ALT SQUARES) ================= */

.alt-squares {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 24px;
}

.square-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.square-row.right {
  flex-direction: row-reverse;
}

.square {
  flex: 1;
}

.square.banner {
  max-width: 320px;
  display: inline-flex;
}

.alt-squares h3 {
  font-size: 34px;
  color: var(--color-text-main);
  margin: 0 0 12px;
}

.alt-squares p {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.alt-squares .square .visual-section {
  text-align: center;
  display: inline-flex;
}
.alt-squares .square .visual-section img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ================= FOOTER ================= */

.footer {
  margin-top: 120px;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
  background: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.footer-logo-text,
.footer-location {
  font-size: 14px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 12px;
}

.footer-list a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-list a:hover {
  color: var(--color-text-main);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 14px;
}
.footer-links-center {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-links-center a {
  color: var(--color-text-muted);
}

.footer-links-center a:hover {
  color: var(--color-text-main);
}

.footer-links-center .sep {
  opacity: 0.5;
}

.footer-bottom-right {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Mobile */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: #94a3b8;
  font-size: 18px;
}

.footer-social a:hover {
  color: var(--color-text-main);
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-location-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}


/* ================= ANIMATIONS ================= */

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Map animations are now handled in SVG inline styles */

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .square-row {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .navlinks {
    gap: 12px;
  }
  .nav-link {
    letter-spacing: 0;
    font-weight: 600;
    font-size: 13px;
}
  .footer-cols {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header {
    padding: 5px 0;
}
.hero {
  min-height: unset;
  padding: 70px 0;
}
  body.menu-open .hero {
    margin-top: 71px;
  }
  .hero h1 { font-size: 40px; }
  .hero p {
    font-size: 20px;
}
  .square-row { flex-direction: column !important; text-align: center; gap: 10px; }
  .square.visual { width: 100%; max-width: 100%; }
  .square.text { max-width: 100%; }
  .square.text p { font-size: 18px; margin: 0 auto; }
  .alt-squares {
    gap: 60px;
    margin: 70px auto;
    padding: 0 15px;
  }
  .alt-squares h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
  .navlinks {
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
    padding: 80px 40px 40px;
    width: 80%;
    max-width: 320px;
    transform-origin: right;
    transform: scaleX(0);
  }
  
  .navlinks.active {
    width: 80%;
    max-width: 320px;
    transform: scaleX(1);
  }
  
  .menu-toggle { 
    display: block; 
    z-index: 1100;
    position: relative;
  }
  
  /* Overlay for mobile menu */
  .desktop-only { display: none; }
  .mobile-only { 
    display: block; 
    text-align: center; 
    margin-top: 20px;
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-link:last-of-type {
    border-bottom: none;
  }
  .footer {
    margin-top: 90px;
}
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .brand-col { grid-column: span 2; margin-bottom: 20px; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 36px; }
  .footer-cols { grid-template-columns: 1fr; }
  .brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 20px; }
}