/*
:root {
  --teal: #0ea5a4;
  --teal-dark: #0a7d7b;
  --gold: #f4b942;
  --bg: #f9fafb;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  font-family: "Poppins", sans-serif;
}
*/
:root {
  --teal: #CE0000;
  --teal-dark: #22162B;
  --gold: #F8C630;
  --bg: #f9fafb;
  --text: #22162B;
  --muted: #64748b;
  --white: #ffffff;
  font-family: "Poppins", sans-serif;
}

.customT {
  color: black;
  font-size: 24px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  text-decoration: none;
}


body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo { width: 45px; }
.navbar h1 { font-size: 18px; margin: 0; color: var(--teal-dark); }

nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: color .2s;
}
nav a:hover { color: var(--teal-dark); }
.btn-nav {
  border: 1px solid var(--teal);
  padding: 6px 12px;
  border-radius: 8px;
}
.menu-btn { display: none; background: none; border: none; font-size: 24px; }

/* HERO */
.hero {
  /*
  position: relative;
  background: linear-gradient(135deg, #0ea5a4, #042f2e);
  */
  position: relative;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.overlay {
  position: absolute;
  inset: 0;
  /*
  background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
  opacity: 0.2;
  */
  background: url('assets/BG_Picked.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  filter: brightness(60%) blur(5px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}
.hero h2 { font-size: 58px; margin-bottom: 10px; }
.hero p { font-size: 18px; color: #e2e8f0; }
.actions { margin-top: 25px; }
.btn-main, .btn-outline {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.btn-main {
  background: var(--gold);
  color: #000;
}
.btn-main:hover { background: #e9ac2d; }
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  margin-left: 10px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.iconImg {
image-rendering: pixelated;
width: 40%;
}

.imgSaf {
display: block;
width: 50%;
margin: 0 auto;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}
.section.alt { background: #fff; }
.container {
  max-width: 1100px;
  margin: auto;
}
h3 { color: var(--teal-dark); font-size: 28px; margin-bottom: 20px; }

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}

/* CARDS */
.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.07);
}
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
.checklist li::before {
  content: "✓";
  color: var(--teal);
  position: absolute;
  left: 0;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.step {
  background: white;
  border-radius: 12px;
  padding: 18px;
  /*
  min-width: 130px;
  max-width: 160px;
  */
  width: 25%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.step span {
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 28px; height: 28px;
  line-height: 28px;
  margin-bottom: 6px;
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form input, .form textarea {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(14,165,164,0.2);
  outline: none;
}
.full { width: 100%; }

/* FOOTER */
.footer {
  background: var(--teal-dark);
  color: white;
  text-align: center;
  padding: 25px 10px;
}

/* FADE-IN */
.fade { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE NAV */
@media (max-width: 800px) {
  nav { display: none; flex-direction: column; align-items: flex-end; }
  nav.show { display: flex; background: rgba(255,255,255,0.9); padding: 20px; border-radius: 12px; }
  .menu-btn { display: block; }
}
