/* ===============================
   BRAND COLORS
================================= */
:root {
  --primary: #1f7a8c;
  --secondary: #66c2a5;
  --dark: #2f2f2f;
  --light-bg: #eef3f4;
  --section-light: #f7f9fa;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #dde5ec;
   
}


img {
  max-width: 100%;
  display: block;
}

/* ===============================
   NAVBAR
================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 8%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

.logo img {
  max-height: 70px;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btns {
  display: flex;
  gap: 10px;
}

/* ===============================
   BUTTONS
================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;   /* same width for both */
  height: 52px;       /* fixed height */
  padding: 0 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;   /* professional spacing */
  background: var(--primary);
  color: #fff;
  transition: all 0.3s ease;
}

/* NAVBAR BUTTONS SMALLER */
.nav-btns .btn {
  min-width: 100px;
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: none;
}

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


.btn.green {
  background: var(--secondary);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===============================
   HOMEPAGE HERO
================================= */
.hero-full {
  position: relative;
  height: 79vh;   /* smaller height */
  display: flex;
  align-items: center;
  overflow: hidden;
}



.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('hero.jpg') center center / cover no-repeat;
  filter: blur(1.8px);
  transform: scale(1.05);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 55px 8%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  );
}

.hero-content {
  max-width: 520px;  /* tighter width = better alignment */
  color: #fff;
  text-align: left;
}

.hero-content p {
  letter-spacing: 0.3px;
    text-align: justify;
}


.hero-full h1 {
  font-size: 26px;
  margin-bottom: 18px;
}

.hero-full h1 .location {
  font-size: 0.7em;
  display: block;
  font-weight: 500;
  opacity: 0.85;
}

.hero-full h1 span {
  color: var(--secondary);
  display: block;
  margin-top: 10px;
}

.hero-emotion {
  font-size: 14px;
  line-height: 1.7;
  margin: 22px 0;
  max-width: 560px;
}

.hero-sub {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}


/* ===============================
   INNER PAGE HERO
================================= */
.hero {
  padding: 70px 8% 50px;
  text-align: center;
  background: var(--light-bg);
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.hero span {
  color: var(--secondary);
}

/* ===============================
   SECTIONS
================================= */
.section {
  padding: 40px 8%;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section.white {
  background: #ffffff;
  border-radius: 15px;
  margin: 20px auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.section.light {
  background: #f8fafc;
  border-radius: 18px;
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}


.section.cta {
  background: var(--primary);
  color: #fff;
}

.section.cta .btn {
  background: #fff;
  color: var(--primary);
}

/* ===============================
   GRID
================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* ===============================
   APPROACH SECTION FIX
================================= */

.approach-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}

.approach-left {
  flex: 1;
  text-align: left;
}

.approach-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-points {
  margin-top: 25px;
  padding-left: 20px;
  line-height: 1.8;
}

.approach-points li {
  margin-bottom: 12px;
}

.link-card {
  text-decoration: none;
  color: var(--dark);
  padding: 20px;
  border-radius: 14px;
  background: #f8fafa;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.link-card:hover {
  transform: translateY(-4px);
  background: #eef6f6;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-icon {
    display: block;
  }

  .nav-btns {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    z-index: 20000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .hero-full h1 {
    font-size: 34px;
  }

  /* APPROACH MOBILE */
  .approach-container {
    flex-direction: column;
  }

  .approach-left {
    text-align: center;
  }

  .approach-points {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
  }
}

@media (max-width: 600px) {

  .grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Reduce section spacing */
  .section {
    padding: 50px 20px;
  }

  /* Fix hero height */
  .hero-full {
    min-height: auto;
    padding: 60px 20px;
  }

  /* Better headline scale */
  .hero-full h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  /* Improve paragraph spacing */
  .hero-emotion {
    font-size: 15px;
    margin: 14px 0;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Stack buttons properly */
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
  }

}

