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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ------------------------ */
/* Header */
/* ------------------------ */

header {
  background: #000;
  border-bottom: 2px solid #123b73;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

header h1 {
  color: white;
  font-size: 2rem;
}

#menu-btn {
  display: none;

  background: none;
  border: none;

  color: white;
  font-size: 2rem;

  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: bold;
}

nav a:hover {
  color: #1d5fa7;
}

.logo {
  width: 75px;
  height: auto;
}

/*=========================================
            CONTACT HERO
=========================================*/

.contact-hero {
  padding: 120px 0 80px;

  text-align: center;

  background: #111;
}

.contact-hero h1 {
  font-size: 3.5rem;

  color: white;

  margin-bottom: 25px;
}

.contact-hero p {
  max-width: 800px;

  margin: auto;

  font-size: 1.1rem;

  line-height: 1.8;

  color: #cfcfcf;
}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section {
  padding: 80px 0;

  background: #0d0d0d;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: start;
}

/*=========================================
            INFO CARD
=========================================*/

.contact-info {
  background: #181818;

  padding: 40px;

  border-radius: 12px;

  border: 1px solid #2c2c2c;

  border-top: 4px solid #123b73;
}

.contact-info h2 {
  color: white;

  margin-bottom: 20px;
}

.contact-info p {
  color: #d0d0d0;

  line-height: 1.8;

  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;

  margin-top: 30px;
}

.contact-info li {
  margin: 18px 0;

  color: white;
}

.response-box {
  margin-top: 40px;

  padding: 25px;

  background: #111;

  border-left: 5px solid #123b73;

  border-radius: 8px;
}

.response-box h3 {
  color: #1d5fa7;

  margin-bottom: 10px;
}

/*=========================================
            FORM
=========================================*/

.contact-form-box {
  background: #181818;

  padding: 40px;

  border-radius: 12px;

  border: 1px solid #2c2c2c;

  border-top: 4px solid #123b73;
}

.contact-form-box h2 {
  color: white;

  margin-bottom: 30px;
}

form {
  display: flex;

  flex-direction: column;
}

label {
  margin-bottom: 10px;

  margin-top: 20px;

  font-weight: 600;

  color: white;
}

input,
textarea {
  padding: 16px;

  background: #101010;

  border: 1px solid #333;

  color: white;

  border-radius: 8px;

  font-size: 1rem;

  transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

input:focus,
textarea:focus {
  outline: none;

  border-color: #1d5fa7;

  box-shadow: 0 0 12px rgba(29, 95, 167, 0.35);
}

textarea {
  resize: vertical;

  min-height: 180px;
}

/*=========================================
            BUTTON
=========================================*/

button {
  margin-top: 35px;

  padding: 18px;

  background: #123b73;

  color: white;

  border: none;

  border-radius: 8px;

  font-size: 1rem;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  background: #1d5fa7;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(29, 95, 167, 0.35);
}

/*=========================================
            PROCESS SECTION
=========================================*/

.contact-process {
  padding: 100px 0;

  background: #111;
}

.contact-process h2 {
  text-align: center;

  color: white;

  margin-bottom: 60px;

  font-size: 2.8rem;
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.step {
  background: #181818;

  border: 1px solid #2c2c2c;

  border-radius: 12px;

  padding: 40px 30px;

  text-align: center;

  transition: 0.3s;
}

.step:hover {
  transform: translateY(-8px);

  border-color: #123b73;
}

.step span {
  width: 65px;

  height: 65px;

  margin: auto auto 25px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: #123b73;

  color: white;

  font-size: 1.5rem;

  font-weight: bold;
}

.step h3 {
  color: white;

  margin-bottom: 15px;
}

.step p {
  color: #cfcfcf;

  line-height: 1.7;
}

/*=========================================
            FOOTER
=========================================*/

footer {
  padding: 30px 0;

  text-align: center;

  background: black;

  border-top: 2px solid #123b73;
}

footer p {
  color: #999;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  #hero h2 {
    font-size: 2.4rem;
  }

  #hero p {
    font-size: 1rem;
  }

  .logo {
    width: 60px;
    flex-shrink: 0;
  }

  header h1 {
    font-size: 1.6rem;
    flex: 1;
    margin-left: 0 15px;
    line-height: 1.2;
  }

  #menu-btn {
    display: block;
    margin: 0;
    padding: 0;

    background: none;
    border: none;

    font-size: 2rem;
    color: white;

    flex-shrink: 0;
  }

  nav {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: #000;
    border-top: 2px solid #123b73;
  }

  nav.show {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px 0;
    gap: 20px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form-box {
    padding: 30px;
  }
}
