/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

:root {
  --primary: #0b2c4d;
  --accent: #0f8b8d;
  --highlight: #7ddc6f;
  --text: #1f2937;
  --light: #f9fafb;
  --border: #e5e7eb;
}

/* DARK MODE */
@media (prefers-color-scheme: dark) {
  body {
    background: #0f172a;
    color: #e5e7eb;
  }
  .card, .cta {
    background: #020617;
    border-color: #1e293b;
  }
}

body {
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
}

/* HEADER */
header {
  background: var(--primary);
  padding: 18px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 44px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 600;
}

nav a:hover {
  color: var(--highlight);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 120px 64px;
  color: #ffffff;
}

.hero h1 {
  font-size: 48px;
  max-width: 900px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 720px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: var(--highlight);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #65c458;
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 96px 64px;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 28px;
}

.section p {
  font-size: 17px;
  max-width: 900px;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* CARD */
.card {
  background: var(--light);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  background: var(--light);
  text-align: center;
  padding: 90px 60px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 32px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }
  .hero {
    padding: 80px 24px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section {
    padding: 72px 24px;
  }
}
/* =========================
   HEADER & LOGO FIX
========================= */

.site-header {
  background: #0b2c4d;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO WRAPPER */
.site-header .logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE SIZE */
.site-header .logo img {
  height: 60px;          /* ✅ PERFECT HEADER SIZE */
  width: auto;
  max-width: 220px;     /* Prevents overflow */
}

/* NAVIGATION */
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 600;
}

.main-nav a:hover {
  color: #7ddc6f;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }

  .site-header .logo img {
    height: 46px;        /* Mobile-friendly */
  }

  .main-nav a {
    margin-left: 16px;
    font-size: 14px;
  }
}

/* =========================
   FORCE HEADER LOGO SIZE
========================= */

.site-header {
  background: #0b2c4d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
}

/* REMOVE ANY GLOBAL IMAGE LIMITS */
.site-header img {
  max-height: none !important;
  max-width: none !important;
}

/* LOGO WRAPPER */
.logo-wrap {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE — FINAL SIZE */
.logo-wrap img {
  height: 80px !important;      /* 🔥 MAIN FIX */
  width: auto !important;
  min-height: 80px;
}

/* NAV */
.main-nav a {
  color: #ffffff;
  margin-left: 28px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-wrap img {
    height: 56px !important;
  }
}
/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 14px;
}

form input,
form textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #0f8b8d;
}

form button {
  margin-top: 20px;
  cursor: pointer;
}
/* FORCE FORM SUBMIT FIX */
form {
  pointer-events: auto !important;
}

form * {
  pointer-events: auto !important;
}

button,
input,
textarea {
  pointer-events: auto !important;
}