/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f0faff;
  color: #222;
  line-height: 1.6;
}

/* ---------- Header ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  max-height: 90px;
  width: auto;
}

/* ---------- Navigation Links ---------- */
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #004a99;
  background-color: rgba(0, 74, 153, 0.15);
  box-shadow: 0 0 8px rgba(0, 74, 153, 0.4);
  border: 1px solid #004a99;
  outline: none;
}

/* ---------- Hamburger (Hidden on Desktop) ---------- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 1001;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: #fff;
    width: 75%;
    height: 100vh;
    padding: 30px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .logo img {
    max-height: 55px;
    width: auto;
  }

  nav ul.nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  nav ul.nav-links li {
    margin-bottom: 20px;
  }
}

/* ---------- Main Content ---------- */
.main-content {
  max-width: 900px;
  margin: 60px auto 100px auto;
  padding: 0 20px;
}

/* Sections */
.contact-intro,
.contact-form-section,
.strategy-call,
.contact-info-section {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.contact-intro h1 {
  font-size: 3rem;
  color: #00aaff;
  margin-bottom: 12px;
}

.contact-intro p {
  font-size: 1.2rem;
  color: #555;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #00aaff;
  border-radius: 8px;
  font-size: 1rem;
  background: #fdfdfd;
  font-family: 'Outfit', sans-serif;
  color: #222;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #004a99;
  box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.2);
  outline: none;
}

/* ---------- Strategy Call Section (Updated) ---------- */
.strategy-call {
  background-color: #f0f8ff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.strategy-call h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d192b;
  margin-bottom: 20px;
}

.strategy-call p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Stylish CTA Button ---------- */
.strategy-call .btn-primary {
  padding: 16px 42px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00aaff, #007acc);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 170, 255, 0.25);
  text-decoration: none;
  display: inline-block;
}

.strategy-call .btn-primary:hover,
.strategy-call .btn-primary:focus {
  background: linear-gradient(135deg, #004a99, #0066cc);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 74, 153, 0.35);
  outline: none;
}

/* ---------- Button (Generic) ---------- */
.btn-primary {
  background-color: #00aaff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #004a99;
  box-shadow: 0 0 14px #004a99;
  outline: none;
}

/* Info Section */
.contact-info-section p {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.contact-info-section a {
  color: #00aaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-section a:hover,
.contact-info-section a:focus {
  color: #004a99;
  outline: none;
}

/* ---------- Footer ---------- */
footer {
  background-color: #001f3f;
  color: #aad8ff;
  font-family: 'Outfit', sans-serif;
  padding: 40px 20px 20px;
  font-size: 16px;
  user-select: none;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #50aaff;
}

/* Footer nav */
footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer nav ul li {
  margin-bottom: 14px;
}

footer nav ul li a {
  color: #aad8ff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

footer nav ul li a:hover,
footer nav ul li a:focus {
  color: #50aaff;
  transform: translateX(6px);
  outline: none;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #003366;
  color: #aad8ff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(80,170,255,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  background-color: #50aaff;
  color: #001f3f;
  transform: scale(1.15);
  outline: none;
  box-shadow: 0 0 14px #50aaff;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #003366;
  padding-top: 14px;
  font-size: 14px;
  color: #6699cc;
}

/* Mobile adjustment for strategy-call */
@media (max-width: 768px) {
  .strategy-call {
    padding: 30px 20px;
  }

  .strategy-call h2 {
    font-size: 2rem;
  }

  .strategy-call p {
    font-size: 1rem;
  }
}
