/* Reset and basic styles */
/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}


/* Header */
header {
  background-color: #0a023e;
  padding: 20px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    background-color: #0a023e;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
  }

  .nav ul.show {
    display: flex;
  }

  .nav ul li {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav ul li:last-child {
    border-bottom: none;
  }
}

/* Hero */
.hero {
  background-color: #1a1a1a;
  text-align: center;
  padding: 184.5px 20px;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Main section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-info, .contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1a1a1a;
}

/* Info section */
.contact-info p {
  margin-bottom: 15px;
  color: #444;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

/* Form styles */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 1rem;
  height: 120px;
}

button {
  background-color: #1a1a1a;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
}

/* Footer */
.footer {
  background-color: #0a023e;
  color: white;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  width: 80px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 1rem;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}
