:root {
  --deep-blue: #1b2a41;
  --coral-red: #ff6b6b;
  --light-bg: #f7f7f7;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light-bg);
  color: var(--deep-blue);
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}


/* Logo */
.logo img {
  height: 34px;
  width: auto;
}
/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 26px; /* 👈 FIXES THE JAMMED LINKS */
}

.nav a {
  color: #000000;        /* BLACK text */
  text-decoration: none;
  font-weight: 500;
  margin: 0 14px;
}

.nav a:hover {
  color: #1b2a41;        /* optional dark blue hover */
}


/* Right contact button */
.nav-right {
  display: flex;
  justify-content: flex-end;
}


/* CONTACT BUTTON (RIGHT) */
.contact-btn {
  background: linear-gradient(135deg, var(--deep-blue), var(--coral-red));
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav .contact-btn:hover,
.nav .contact-btn:focus,
.nav .contact-btn:active,
.nav .contact-btn:visited {
  color: #ffffff;
}

.contact-btn:hover {
  transform: translateY(-1px); /* slight lift */
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* Layout */
.container {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 0 20px;
}

/* Content */
.brand {
  display: flex;
  justify-content: flex-start; /* aligns left */
  align-items: center;
  margin-bottom: 18px;
}

.brand-logo {
  height: 85px;      /* reduce logo height */
  width: auto;       /* keep proportions */
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.08));
}
.logo img {
  height: 68px;
  width: auto;
}

h1 {
  margin: 0 0 14px 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}
.highlight {
  color: var(--coral-red);
}

.subtitle {
  color: #475569;
  margin-bottom: 35px;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--coral-red);
}

/* Form */
.form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

form label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: var(--coral-red);
}

.error-text {
  font-size: 12px;
  color: var(--coral-red);
  margin-top: 6px;
}

/* CTA Button */
.cta-btn {
  margin-top: 10px;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--deep-blue), var(--coral-red));
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--deep-blue);
  padding: 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 20px;
}

/* Left text */
.footer-left {
  font-size: 13px;
  color: #ffffff;
}

/* Center social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: invert(1); /* 👈 THIS FIXES THE BLACK DOT ISSUE */
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Right links */
.footer-right a {
  margin-left: 18px;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
}

.footer-right a:hover {
  color: var(--coral-red);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }
}

/* Social icons in footer */
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  color: var(--coral-red);
  transform: translateY(-2px);
}
