
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #1a2744;
}

/* ===== HEADER ===== */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  box-sizing: border-box;
  z-index: 1000;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 64px;
  width: auto;
  display: block;
}

.mobile-menu {
  display: none;
}

.mobile-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.mobile-nav a,
nav a {
  white-space: nowrap;
  font-size: 16px;
  text-decoration: none;
  color: #1a2744;
  font-weight: 600;
}

.mobile-nav a:hover,
nav a:hover {
  color: #1a3a72;
}

.mobile-nav a.active,
nav a.active {
  color: #1a3a72;
  font-weight: 800;
}

nav a .caret { font-size: 9px; opacity: 0.55; }

.nav-cta {
  background: #1a3a72 !important;
  color: #fff !important;
  padding: 13px 24px !important;
  border-radius: 5px;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(26,58,114,0.25);
}

.nav-cta:hover {
  background: #0f2a5a !important;
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,22,48,0.22) 0%, rgba(12,22,48,0.42) 100%),
    url('HeroImage.png') center/cover no-repeat;
}

/* Left half: darker blue tint (yacht/marina) */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 50%;
  background: rgba(10,20,50,0.25);
}

/* Right half: warm golden tint (event/garden) */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 50%;
  background: rgba(30,20,5,0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.hero-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #3dd474;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 57px;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.4);
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 510px;
  margin: 0 auto 38px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-explore {
  background: #1a3a72;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 5px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.15s;
  box-shadow: 0 4px 18px rgba(26,58,114,0.4);
}
.btn-explore:hover { background: #0f2a5a; }

.btn-expert {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.15s;
}
.btn-expert:hover { background: rgba(255,255,255,0.1); }

/* ===== FEATURE CARDS ===== */
.feat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 44px rgba(20,35,80,0.14);
  margin: -90px 56px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.feat-card {
  padding: 34px 28px;
  min-height: 190px;
  text-align: center;
  border-right: 1px solid #e6eaf3;
  background: #fff;
  transition: background 0.15s;
}
.feat-card:last-child { border-right: none; }
.feat-card:hover { background: #f7f9fc; }

.feat-icon{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    overflow:hidden;
}

.feat-icon img{
    max-width:82px;
    max-height:82px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    transition:.25s;
}

.feat-card:hover .feat-icon img{

    transform:translateY(-4px) scale(1.06);
}


.feat-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a2744;
  margin-bottom: 14px;
  line-height: 1.25;
}
.feat-card p {
  font-size: 15px;
  color: #6a7487;
  line-height: 1.55;
  font-weight: 400;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f2f4f8;
  border-radius: 10px;
  border: 1px solid #dde3ee;
  margin: 44px 56px 64px;
  overflow: hidden;
}

.trust-cell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 40px;
  border-right: 1px solid #dde3ee;
}
.trust-cell:last-child { border-right: none; }

.trust-cell svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #1a3a72;
  margin-top: 2px;
}

.trust-cell h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 5px;
}
.trust-cell p {
  font-size: 14px;
  color: #6a7487;
  line-height: 1.45;
  font-weight: 400;
}
/* ===== SERVICES PAGE ===== */

.page-hero{
height:420px;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

background:
linear-gradient(
rgba(5,20,45,.70),
rgba(5,20,45,.70)
),
url("HeroImage.png");

background-size:cover;
background-position:center;

color:white;
}

.page-content{
max-width:900px;
padding:50px;
}

.page-label{
color:#39d06a;
letter-spacing:3px;
}

.page-content h1{
font-size:60px;
margin-bottom:20px;
}

.service-grid{

max-width:1300px;

margin:80px auto;

padding:0 40px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

/* ===== SUBPAGE CARDS ===== */

.service-card{

    background:
        linear-gradient(
            135deg,
            #f5f8fd 0%,
            #f8fcf9 100%
        );

    border-top:4px solid #27b85d;

    border-radius:18px;

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    box-shadow:0 10px 36px rgba(20,35,80,.08);

    transition:.25s;
}

.service-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 44px rgba(20,35,80,.12);

}

/* ===== SUBPAGE CARD TYPOGRAPHY ===== */

.service-card h2{
    margin:0 0 24px 0;
}

.service-card p{
    margin:0 0 16px 0;
}

.service-card ul{
    margin:20px 0 0 0;
    padding-left:24px;
}

.service-card li{
    margin-bottom:8px;
}
.service-cta{

background:#0d3d88;

padding:90px;

text-align:center;

color:white;

margin-top:80px;

}

.service-cta a{

display:inline-block;

margin-top:25px;

background:#20b25a;

padding:18px 34px;

border-radius:8px;

color:white;

font-weight:700;

}

.service-cta a:hover{

background:#138d43;

}

/* ===== FOOTER / LEGAL ===== */

.site-footer {
  background: #071a33;
  color: #ffffff;
  padding: 34px 40px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  border-top: 4px solid #28a055;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}
/* CONTACT PAGE SPACING */

.contact-info h3{
    margin-bottom:28px;
}

.contact-info p{
    margin-bottom:24px;
}

.contact-info ul{
    margin-top:18px;
    margin-bottom:50px;
    padding-left:28px;
}

.contact-info li{
    margin-bottom:16px;
}

.contact-info hr{
    margin:42px 0;
    border:none;
    border-top:1px solid #d7dfeb;
}

.contact-info .response{
    margin-top:30px;
}
/* ===== FOOTER ===== */

.site-footer{

background:#071a33;

color:white;

padding:40px 30px;

text-align:center;

margin-top:80px;

border-top:
4px solid #28a055;

}

.site-footer p{

margin:8px 0;

}

.site-footer a{

color:white;

text-decoration:none;

font-weight:700;

}

.site-footer a:hover{

opacity:.8;

}

.tm{

font-size:.55em;

vertical-align:super;

letter-spacing:0;

}

/* ===== MOBILE OPTIMISATION ===== */

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  header {
    padding: 12px 18px;
  }

  nav{
  display:none;
  }
  .logo {
    max-width: 180px;
  }

  .logo img {
    max-width: 180px;
    max-height: 54px;
  }

  .mobile-menu {
    display: block;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #071a33;
    user-select: none;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    z-index: 1001;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
  }

  .hero {
    height: 620px;
    align-items: center;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-explore,
  .btn-expert {
    width: 100%;
    text-align: center;
  }

  .feat-cards {
    grid-template-columns: 1fr;
    margin: -60px 18px 0;
  }

  .feat-card {
    border-right: none;
    border-bottom: 1px solid #e6eaf3;
    padding: 28px 22px;
  }

  .feat-card:last-child {
    border-bottom: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 32px 18px 48px;
  }

  .trust-cell {
    border-right: none;
    border-bottom: 1px solid #dde3ee;
    padding: 24px 22px;
  }

  .trust-cell:last-child {
    border-bottom: none;
  }

  .page-content {
    padding: 36px 20px;
  }

  .page-content h1 {
    font-size: 40px;
  }

  .service-grid {
    padding: 0 18px;
    margin: 48px auto;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 22px;
  }

  .service-cta {
    padding: 56px 22px;
  }

  .site-footer {
    padding: 32px 20px;
    margin-top: 56px;
  }
}