/* RESET & BASE STYLES -------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #FAFAFA;
  background: linear-gradient(135deg, #1a2127 60%, #17443B 100%);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a {
  color: #E7C24B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff000;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* BRAND FONT FACE (GOOGLE FONTS INCLUDED FROM HTML) ---------- */
h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* LAYOUT CONTAINER & GENERAL SPACING ------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(23, 68, 59, 0.7);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(12, 34, 50, 0.14);
  /* spacing*/
}
/* GAP Utility */
.gap-20 {
  gap: 20px;
}

/* TYPOGRAPHY SCALE --------------------------------------------- */
h1 {
  font-size: 2.75rem;
  letter-spacing: 0.02em;
  color: #E7C24B;
  text-shadow: 0 0 20px rgba(231, 194, 75, 0.07);
}
h2 {
  font-size: 2rem;
  color: #FAFAFA;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.3rem;
  color: #E7C24B;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #E7C24B;
}
p {
  color: #FAFAFA;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #E7C24B;
  font-weight: 600;
}

/* HEADER & MAIN NAVIGATION ----------------------------------- */
header {
  background: rgba(24, 32, 38, 0.92);
  box-shadow: 0 6px 28px 0 rgba(23, 68, 59, 0.14);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 45px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #E7C24B;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(231, 194, 75, 0.1);
  color: #FFF;
}

.button-primary {
  background: #E7C24B;
  color: #17443B !important;
  border-radius: 24px;
  padding: 10px 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px 0 rgba(228, 239, 47, 0.08), 0 0 0 1.5px #E7C24B;
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.08em;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
}
.button-primary:hover, .button-primary:focus {
  background: #fff000 !important;
  color: #17443B;
  box-shadow: 0 4px 32px 0 rgba(231, 194, 75, 0.3), 0 0 12px 0 #17443B;
  outline: none;
}
.button-secondary {
  background: #17443B;
  color: #E7C24B;
  border: 1.5px solid #E7C24B;
  border-radius: 24px;
  padding: 10px 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  transition: background 0.19s, color 0.19s, border 0.16s, box-shadow 0.21s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E7C24B;
  color: #17443B;
  border-color: #E7C24B;
  box-shadow: 0 4px 32px 0 rgba(231, 194, 75, 0.2);
  outline: none;
}

/* MOBILE NAVIGATION (HAMBURGER, OVERLAY) ----------------------- */
.mobile-menu-toggle {
  display: none;
  background: #17443B;
  color: #E7C24B;
  border-radius: 50%;
  border: 2px solid #E7C24B;
  height: 48px;
  width: 48px;
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.17s, box-shadow 0.13s;
  z-index: 101;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E7C24B;
  color: #17443B;
  box-shadow: 0 0 0 2px #E7C24B;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(19,30,31, 0.97);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.87,.06,.19,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 20px 24px 20px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #E7C24B;
  border: 2px solid #E7C24B;
  border-radius: 40px;
  font-size: 2.0rem;
  height: 48px;
  width: 48px;
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, color 0.25s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E7C24B;
  color: #17443B;
  outline: none;
}
.mobile-nav {
  margin-top: 86px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #E7C24B;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.18s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(231,194,75, 0.06);
  color: #fff000;
}

/* Hide navigation & show burger on mobile ---------------------- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ------------------------------------------------ */
.hero {
  padding: 68px 0 40px 0;
  background: linear-gradient(110deg, #17443B 86%, #194A36 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 40px 0 rgba(23,68,59,0.18);
  margin-bottom: 44px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(90deg, #E7C24B 20%, #fff000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.hero .button-primary {
  margin-top: 16px;
  font-size: 1.18rem;
}

/* FEATURE GRID ------------------------------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(26,44,42, 0.96);
  border-radius: 20px;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  box-shadow: 0 2px 16px 0 rgba(83, 255, 194, 0.09), 0 0 0 2px #17443B;
  transition: box-shadow 0.23s, border 0.15s;
}
.feature-item img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 0 10px #E7C24B55);
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 #E7C24B44, 0 0 0 3px #E7C24B;
}
.feature-item h3 {
  font-size: 1.13rem;
}

/* CARD CONTAINER & GENERAL FLEX CARDS ------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: rgba(25, 57, 47, 0.94);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #17443B33, 0 0 0 2px #235A4433;
  transition: box-shadow 0.18s;
  padding: 28px 16px;
  flex: 1 1 320px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #E7C24B44, 0 0 0 2.5px #E7C24B;
}

/* CONTENT GRID ------------------------------------------------ */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TEXT-IMAGE SECTION ------------------------------------------ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TESTIMONIALS ------------------------------------------------ */
.testimonials {
  padding-top: 30px;
  padding-bottom: 30px;
}