/* =========================================
   Eolo Ventures — Stylesheet
   Clone of eoloventures.com (Google Sites)
   ========================================= */

:root {
  --navy: #032B85;
  --navy-dark: #021f63;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --dark: #1c1c1c;
  --mid: #555555;
  --border: #dddddd;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 14pt;
  line-height: 1.5;
  text-align: left;
}

a {
  color: var(--navy);
  text-decoration: underline;
}

a:hover {
  color: var(--navy-dark);
}

/* =========================================
   Navigation
   ========================================= */
.site-nav {
  background: var(--navy);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 14pt;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 13pt;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   Hero
   ========================================= */
.hero {
  background: var(--navy);
  padding: 112px 48px 56px;
  text-align: left;
}

.hero h1 {
  font-size: 48pt;
  font-weight: 700;
  color: var(--white);
  line-height: 1.38;
  margin-bottom: 8pt;
}

.hero-sub {
  font-size: 20pt;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10pt;
}

/* =========================================
   Page Hero (inner pages)
   ========================================= */
.page-hero {
  background: var(--navy);
  padding: 112px 48px 56px;
  text-align: left;
}

.page-hero h1 {
  font-size: 48pt;
  font-weight: 700;
  color: var(--white);
  line-height: 1.38;
  margin-bottom: 0;
}

/* =========================================
   Sections
   ========================================= */
.section {
  padding: 48px 48px;
  max-width: 1280px;
}

.section--full {
  padding: 48px 48px;
}

.section h2 {
  font-size: 34pt;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
  margin: 48px 32px 0;
}

.section h2:first-child {
  margin-top: 0;
}

.section p {
  font-size: 14pt;
  color: var(--dark);
  line-height: 1.5;
  margin: 10pt 32px;
}

.section ul {
  list-style-type: square;
  padding-left: 52px;
  margin: 10pt 32px 20pt;
}

.section ul li {
  margin-bottom: 8pt;
  font-size: 14pt;
  line-height: 1.5;
}

/* =========================================
   Divider
   ========================================= */
.divider {
  border: none;
  border-top: 1px solid var(--navy);
  opacity: 0.2;
  margin: 48px 32px;
}

/* =========================================
   Cards
   ========================================= */
.cards {
  display: flex;
  gap: 20px;
  padding: 48px;
}

.card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 18pt;
  font-weight: 700;
  color: var(--navy);
  margin: 18pt 0 0;
  line-height: 1.5;
}

.card p {
  font-size: 13pt;
  color: var(--mid);
  line-height: 1.5;
  margin: 8pt 0 16pt;
}

.card .btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 13pt;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: auto;
}

.card .btn:hover {
  background: var(--navy-dark);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: var(--off-white);
  padding: 112px 48px;
  text-align: center;
}

.cta-section h3 {
  font-size: 18pt;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8pt;
}

.cta-section p {
  font-size: 14pt;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-section .btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 13pt;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

.cta-section .btn:hover {
  background: var(--navy-dark);
}

/* =========================================
   Mission Text
   ========================================= */
.mission-text {
  font-size: 14pt;
  color: #333;
  line-height: 1.5;
  margin: 10pt 32px;
}

/* =========================================
   Intro Paragraph
   ========================================= */
.intro-para {
  font-size: 14pt;
  color: #333;
  line-height: 1.5;
  margin: 0 32px;
}

/* =========================================
   Contact
   ========================================= */
.contact-card {
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14pt;
  color: var(--dark);
}

.contact-detail-label {
  font-weight: 700;
  color: var(--navy);
  min-width: 72px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--navy);
}

.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-form-wrap h2 {
  margin: 48px 0 24px;
  font-size: 34pt;
  font-weight: 700;
  color: var(--navy);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13pt;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13pt;
  color: var(--dark);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(3, 43, 133, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group .error-msg {
  color: #cc0000;
  font-size: 12pt;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #cc0000;
}

.form-group.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: #f0f7f0;
  border: 1px solid #b8d4b8;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 14pt;
  color: #2a5a2a;
}

.form-success.show {
  display: block;
}

/* =========================================
   Footer
   ========================================= */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 24px 48px;
  font-size: 13pt;
  line-height: 1.9;
}

footer .footer-name {
  font-weight: 700;
  font-size: 14pt;
  margin-bottom: 2px;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
  color: var(--white);
}

/* =========================================
   Feature Grid (Who We Are)
   ========================================= */
.feature-grid {
  display: flex;
  gap: 20px;
  padding: 48px;
}

.feature-item {
  flex: 1;
}

.feature-item h3 {
  font-size: 18pt;
  font-weight: 700;
  color: var(--navy);
  margin: 18pt 32px 0;
  line-height: 1.5;
}

.feature-item p {
  font-size: 13pt;
  color: var(--mid);
  line-height: 1.5;
  margin: 8pt 32px 0;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
  .site-nav {
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12pt;
  }

  .hero,
  .page-hero {
    padding: 64px 20px 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 33pt;
  }

  .hero-sub {
    font-size: 18pt;
  }

  .section {
    padding: 32px 20px;
  }

  .section h2 {
    font-size: 30pt;
    margin: 34pt 0 0;
  }

  .section p,
  .section ul {
    margin-left: 0;
    margin-right: 0;
  }

  .cards {
    flex-direction: column;
    padding: 32px 20px;
  }

  .feature-grid {
    flex-direction: column;
    padding: 32px 20px;
  }

  .cta-section {
    padding: 64px 20px;
  }

  footer {
    padding: 20px 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 13pt;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 28pt;
  }

  .section h2 {
    font-size: 25pt;
  }
}