: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; /* white header */
  padding: 18px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | menu | contact */
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

/* Logo */
.logo img {
  height: 34px;
  width: auto;
}

/* Center navigation menu */
.nav-center {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-center a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-blue); /* menu text color */
}

.nav-center a:hover {
  color: var(--coral-red);
}


/* 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: 80px 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: 24px;
}


.brand-logo {
  height: 95px;   /* increased from 70px */
  width: auto;
  display: block;
  margin-bottom: 20px;  /* spacing before heading */
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

.logo img {
  height: 80px;
  width: auto;
}

h1 {
  margin: 0 0 14px 0;
  font-size: 42px;
  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);
  color: #cbd5e1;
  padding: 20px 0;
}
.footer a {
  color: #ffffff;         
  text-decoration: none;   
  font-size: 13px;
}

.footer a:hover {
  color: var(--coral-red); /* optional hover effect */
}


.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
/* 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);
}
/* -------- PHONE INPUT FIX -------- */

.iti {
  width: 100%;
  display: block;
}

.iti input {
  width: 100%;
  padding-left: 120px !important; /* space for flag + dial code */
}

.iti__flag-container {
  padding-left: 10px;
}

.iti__country-list {
  z-index: 9999;
}