:root{
  --green:#0e6b55;
  --green-dark:#0b5b48;
  --navy:#083a4b;
  --gold:#c7922b;
  --bg:#f3f6fb;
  --card:#ffffff;
  --text:#0b2e2a;
  --muted:#5c6b78;
  --shadow: 0 18px 40px rgba(10,20,30,.16);
  --shadow-soft: 0 10px 24px rgba(10,20,30,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}

.container{max-width:1160px;margin:0 auto;padding:0 20px}
a{color:inherit}

.header{
  position:sticky; top:0; z-index:50;
  background: radial-gradient(900px 300px at 12% 10%, rgba(255,255,255,.12), transparent 60%),
              radial-gradient(900px 300px at 80% 20%, rgba(255,255,255,.10), transparent 55%),
              linear-gradient(135deg, rgba(14,107,85,.92), rgba(8,58,75,.92));
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.14);
}

.header .row{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 0;
}

.brand{display:flex;align-items:center;gap:0px;text-decoration:none}
.brand img{height:100px;width:100px;object-fit:contain;padding:0px;}
.brand .name{display:flex;flex-direction:column;line-height:1.1}
.brand .name b{color:#fff;font-size:20px;letter-spacing:.2px}
.brand .name span{color:rgba(255,255,255,.78);font-size:13px;font-weight:600}

.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.nav a{
  text-decoration:none;
  color:rgba(255,255,255,.9);
  font-weight:800;
  font-size:14px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid transparent;
}
.nav a:hover{background:rgba(255,255,255,.10)}
.nav a.active{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.02);
}

/* HERO */
.hero{
  position:relative;
  min-height: 560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,58,75,.80) 0%, rgba(8,58,75,.55) 44%, rgba(8,58,75,.10) 100%);
}
.hero .content{position:relative; padding:72px 0 92px}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height:1.06;
  letter-spacing:-.3px;
  text-shadow: 0 12px 28px rgba(0,0,0,.40);
  max-width: 760px;
}
.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,.88);
  font-size: clamp(14px, 1.2vw, 18px);
  text-shadow: 0 10px 22px rgba(0,0,0,.34);
  max-width: 680px;
}

.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;
  border-radius: 999px;
  font-weight:900;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px);filter: brightness(1.02)}
.btn.green{background: linear-gradient(135deg, var(--green), var(--green-dark)); color:#fff}
.btn.gold{background: linear-gradient(135deg, #e2b556, var(--gold)); color:#1b1b1b; border-color: rgba(0,0,0,.08)}

/* wave separator */
.wave{
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height:120px;
  background:url("../img/wave.svg") center/100% 100% no-repeat;
}

/* SERVICES CARDS (top) */
.float-cards{
  margin-top: -92px;
  position:relative;
  z-index:5;
  padding-bottom: 10px;
}
.grid3{display:grid;grid-template-columns: repeat(3, 1fr); gap:18px}
.card{
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border:1px solid rgba(10,20,30,.06);
}
.service-card{
  text-align:center;
  padding: 18px 18px 22px;
  backdrop-filter: blur(6px);
}
.service-card .icon{
  width:74px; height:74px;
  border-radius: 18px;
  margin: 4px auto 10px;
  background: linear-gradient(135deg, rgba(14,107,85,.14), rgba(199,146,43,.16));
  display:grid;place-items:center;
  border:1px solid rgba(10,20,30,.06);
}
.service-card .icon img{width:54px;height:54px}
.service-card h3{margin:8px 0 8px;font-size:20px;color:var(--navy)}
.service-card p{margin:0;color:var(--muted);font-weight:600;font-size:14px;min-height:42px}
.service-card .btn{margin-top:14px; box-shadow: var(--shadow-soft); border-color: rgba(10,20,30,.06)}
.service-card .btn.green{border:1px solid rgba(14,107,85,.12)}
.service-card .btn.gold{border:1px solid rgba(199,146,43,.20)}

/* SECTIONS */
.section{padding: 46px 0}
.section h2{
  margin:0 0 14px;
  font-size: 44px;
  color: var(--navy);
  letter-spacing:-.4px;
}
.section .lead{margin:0 0 18px;color:var(--muted);font-size:16px;font-weight:650;max-width:820px}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.about .panel{
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(10,20,30,.06);
}
.checks{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.checks li{display:flex;gap:10px;align-items:flex-start;color:var(--text);font-weight:700}
.checks li span{color:var(--muted);font-weight:650}
.tick{
  width:22px;height:22px;border-radius:999px;
  background: linear-gradient(135deg, #f0d48b, var(--gold));
  display:grid;place-items:center;
  box-shadow: 0 10px 20px rgba(199,146,43,.22);
  flex:0 0 auto;
  margin-top:2px;
}
.tick svg{width:14px;height:14px;fill:#0b2e2a}
.flags{display:inline-flex;gap:8px;align-items:center;margin-left:8px}
.flag{
  width:22px;height:14px;border-radius:3px;overflow:hidden;border:1px solid rgba(10,20,30,.10);
  box-shadow:0 8px 16px rgba(0,0,0,.08);
}
.about .shot{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(10,20,30,.08);
  transform: rotate(-1deg);
}
.about .shot img{width:100%;height:auto;display:block}

/* NEWS / SERVICE TILES */
.tiles{display:grid;grid-template-columns: repeat(3,1fr);gap:18px}
.tile{
  padding:0;
  overflow:hidden;
}
.tile img{width:100%;height:210px;object-fit:cover;display:block}
.tile .pad{padding:18px}
.tile h3{margin:0 0 10px;color:var(--navy);font-size:18px}
.tile ul{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.tile li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-weight:650}
.tile li b{color:var(--text)}
.small-tick{
  width:18px;height:18px;border-radius:999px;
  background: linear-gradient(135deg, rgba(240,212,139,.9), rgba(199,146,43,.95));
  display:grid;place-items:center; flex:0 0 auto;
}
.small-tick svg{width:12px;height:12px;fill:#0b2e2a}

/* FOOTER */
.footer{
  margin-top: 40px;
  padding: 28px 0;
  background: linear-gradient(135deg, rgba(14,107,85,.94), rgba(8,58,75,.96));
  color:#fff;
}
.footer .cols{display:grid;grid-template-columns: 1.2fr .8fr; gap:18px}
.footer small{color:rgba(255,255,255,.82);font-weight:600}
.footer a{color:#fff;text-decoration:none;border-bottom:1px dashed rgba(255,255,255,.40)}
.footer a:hover{border-bottom-color:#fff}

/* Responsive */
@media (max-width: 980px){
  .grid3, .tiles{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .hero .content{padding:56px 0 100px}
  .section h2{font-size:34px}
  .float-cards{margin-top:-70px}
}


@media (max-width: 600px){

  /* Container */
  .container{
    padding: 0 14px;
  }

  /* Header */
  .header .row{
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .brand{
    justify-content: center;
    text-align: center;
  }

  .brand img{
    width:70px;
    height:70px;
  }

  .brand .name b{
    font-size:16px;
  }

  .brand .name span{
    font-size:11px;
  }

  /* Nav */
  .nav{
    justify-content: center;
    flex-wrap: wrap;
    gap:6px;
  }

  .nav a{
    font-size:12px;
    padding:8px 12px;
  }

  /* Hero */
  .hero{
    min-height: auto;
  }

  .hero .content{
    padding: 42px 0 80px;
    text-align: center;
  }

  .hero h1{
    font-size: 26px;
    line-height: 1.2;
  }

  .hero p{
    font-size: 14px;
  }

  .actions{
    justify-content: center;
  }

  /* Float Cards */
  .float-cards{
    margin-top: -40px;
  }

  /* Sections */
  .section{
    padding: 32px 0;
  }

  .section h2{
    font-size: 26px;
    text-align: center;
  }

  .section .lead{
    font-size:14px;
    text-align:center;
  }

  /* About / Contact */
  .about{
    grid-template-columns: 1fr;
    gap:14px;
  }

  .about .panel{
    padding:16px;
  }

  .checks li{
    font-size:13px;
  }

  /* Tiles & Services */
  .grid3,
  .tiles{
    grid-template-columns:1fr;
  }

  .service-card h3{
    font-size:17px;
  }

  .service-card p{
    font-size:13px;
  }

  /* Footer */
  .footer .cols{
    grid-template-columns:1fr;
    text-align:center;
    gap:14px;
  }

  .footer small{
    display:block;
    margin-bottom:6px;
  }

  /* Google Map */
  iframe{
    height:260px !important;
  }

}


/* ===== Mobile Header Menu ===== */
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* Mobile */
@media (max-width: 768px){

  .menu-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:linear-gradient(135deg, rgba(14,107,85,.98), rgba(8,58,75,.98));
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:.3s ease;
    border-bottom-left-radius:18px;
    border-bottom-right-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
  }

  .nav a{
    padding:14px;
    border-bottom:1px solid rgba(255,255,255,.12);
    text-align:center;
    font-size:15px;
  }

  .nav.show{
    max-height:300px;
  }

  .header .row{
    position:relative;
  }
}
