:root {
  --blue: #003366;
  --orange: #FF6B35;
  --gray: #f4f4f4;
  --text: #333;
}

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

body {
  margin: 0;
  background: #ffffff;
  /* color: #1d1d1f; */
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--blue);
}

h1 {
  font-size: 2.8rem;
  padding-bottom: 40px
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  color: var(--orange);
}

.nav a {
  margin-left: 1rem;
  color: var(--blue);
  font-weight: 600;
}

.burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}





/*.btn{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:.75rem 1.5rem;
  border-radius:4px;
  margin-right:.5rem;
}

.btn.outline{
  background:none;
  border:2px solid #fff;
}
*/

.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}





@media(max-width:768px) {
  .nav {
    display: none;
    flex-direction: column;
  }

  .burger {
    display: block;
  }

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



.nav-link {
  position: relative;
  padding: .5rem 0;
  font-weight: 800;
  color: #333;
}

.nav-link.active {
  color: #003366;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #FF6B35;
  border-radius: 2px;
}




.section{padding:5rem 0;}
.light{background:var(--gray);}


              .grid{
                display:grid;
                grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
                gap:1.5rem;
                margin-top:2rem;
              }

              .card{
                padding:1.5rem;
                background:#fff;
                border-radius:6px;
                box-shadow:0 2px 10px rgba(0,0,0,.05);
              }

              .benefits{margin:2rem 0;}
              .benefits li{margin:.5rem 0;}

              .stats{
                display:grid;
                grid-template-columns:repeat(4,1fr);
                gap:1rem;
                margin-top:2rem;
                text-align:center;
              }

              .contact-grid{
                display:grid;
                grid-template-columns:1fr 1fr;
                gap:2rem;
              }

              .form input,.form textarea{
                width:100%;
                padding:.75rem;
                margin-bottom:1rem;
              }

/* ============================= */
/* MODAL WINDOWS */
/* ============================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
}

.modal.active {
  display: block;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 2rem;
  position: relative;
  border-radius: 12px;
}

.modal-small {
  max-width: 400px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.form {
  display: flex;
  flex-direction: column;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form button {
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.form-success {
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: 4px;
  text-align: center;
}

.is-hidden {
  display: none;
}

.success {
  color: #155724;
  background: #d4edda;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.error {
  color: #721c24;
  background: #f8d7da;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}