/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Base Reset & Fonts */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #1e2a38;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #1e2a38;
  color: white;
  padding: 30px 0 20px;
  text-align: center;
}

.centered-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-height: 130px;
  margin-bottom: 10px;
}

.brand-title {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

.subtitle {
  margin-top: 6px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 300;
  color: #cccccc;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: "";
  display: block;
  margin: 4px auto 0;
  height: 3px;
  width: 60px;
  background-color: #d4af37; /* Gold from logo */
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 80px;
}

/* Hero Section */
#hero {
  background-color: #f4f9fd;
  color: #1e2a38;
  padding: 70px 20px;
  text-align: center;
}

#hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

#hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #333;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background-color: #0077cc;
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005fa3;
}

/* Sections */
section {
  padding: 60px 20px;
}

h2 {
  color: #1e2a38;
  margin-bottom: 20px;
  font-size: 28px;
}

/* Contact Section */
.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-form-container,
.calendly-section {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3,
.calendly-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #1e2a38;
  font-size: 1.5rem;
}

.calendly-section p {
  margin-bottom: 20px;
  color: #555;
}

/* Contact Form */
form input,
form textarea,
form button {
  width: 100%;
  margin: 12px 0;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

form button {
  background-color: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #005fa3;
}

#thank-you-message {
  margin-top: 20px;
  background-color: #dff0d8;
  padding: 20px;
  border-radius: 6px;
  color: #3c763d;
}

/* Calendly iframe container */
.calendly-wrapper {
  width: 100%;
  margin-top: 10px;
}

.calendly-wrapper iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #1e2a38;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-container,
  .calendly-section {
    padding: 20px;
  }

  form input,
  form textarea,
  form button {
    width: 100%;
    font-size: 16px;
  }

  .calendly-wrapper iframe {
    height: 500px;
  }
}

html {
  scroll-behavior: smooth;
}
