/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f7f5;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: transparent;
  background-size: contain;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.logo {
  margin-right: auto;
}

.logo img {
  height: 45px;
  width: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e74c3c;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/contact_us_hero.png");
  background-size: cover;
  background-position-x: 50%;
  background-position-y: 50%;
  text-align: center;
  padding: 60px 0 20px;
  height: 35vh;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 90px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eee;
}

/* Main Content */
.main-content {
  padding: 80px 0;
}

.thank-you-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.thank-you-text {
  flex: 1;
  padding-right: 40px;
}

.thank-you-text h2 {
  color: #e74c3c;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.thank-you-image {
  flex: 1;
  text-align: right;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  flex: 1;
  padding: 50px;
  background-color: #f8f7f5;
}

.contact-info h3 {
  color: #e74c3c;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-item a:hover {
  background-color: #e74c3c;
}

.contact-item a i {
  font-size: 18px;
  color: #333;
}

.contact-item a:hover i {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #e74c3c;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #c0392b;
}

.contact-form {
  flex: 1;
  padding: 50px;
  background-color: #fff;
}

.contact-form h3 {
  color: #e74c3c;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-form p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #e74c3c;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #c0392b;
}

/* Footer - Updated */
footer {
  background-color: #f9f9f9;
  padding: 40px 0 20px;
  border-top: 1px solid #eee;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #e74c3c;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
}

.contact-item a:hover {
  background-color: #e74c3c;
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.contact-item1 a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  color: #333;
  text-decoration: none;
}

.contact-item1 a:hover {
  color: #e74c3c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #777;
}

.footer-info p,
.footer-credit p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #e74c3c;
}

.footer-social a i {
  font-size: 15px;
  color: #333;
}

.footer-social a:hover i {
  color: #fff;
}

.footer-credit a {
  color: #e74c3c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .thank-you-section,
  .contact-section {
    flex-direction: column;
  }

  .thank-you-text,
  .thank-you-image {
    flex: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .scrolled {
    height: 80px;
  }

  .logo {
    margin-top: 10px;
  }

  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1000;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
    padding-left: 40px;
    text-align: left;
    margin: 15px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  /* Active states */
  .nav-links.active {
    transform: translateX(0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active .line2 {
    opacity: 0;
  }

  .burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active + .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
