/* Base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f0f0f;
color: #ffffff;
line-height: 1.6;
}
.simple-contact-header {
  text-align: center;
  margin: 2rem auto 1rem auto;
  padding: 0.5rem 1rem;
}

.simple-contact-header h1 {
  font-size: 2rem;
  color: #e60000;
  margin: 0;
}


/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  border-bottom: 2px solid #e60000;
  position: relative;
  z-index: 100;
}

.nav__logo a {
  color: #e60000;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 40px;
  margin-right: 10px;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}


.nav__links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #e60000;
}

/* Language Dropdown */
#languageSwitcher {
  padding: 0.4rem 0.6rem;
  background-color: #111;
  color: #fff;
  border: 1px solid #e60000;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 20px;
}

/* Hamburger Toggle Button */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #000;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid #e60000;
    display: none;
  }

  .nav__links.active {
    display: flex;
  }

  #languageSwitcher {
    position: absolute;
    top: 15px;
    right: 60px;
  }
}
/* Center & simplify Contact Us header */
header {
  background: linear-gradient(145deg, #1a1a1a, #000);
  max-width: 700px;
  margin: 3rem auto; /* center and add some breathing room */
  padding: 2rem 1rem;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.2);
}

header h1 {
  font-size: 2.4rem;
  color: #e60000;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

header h1 i {
  font-size: 2rem;
  vertical-align: middle;
  color: #e60000;
}

header p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.4;
}

/* Responsive font sizes */
@media (max-width: 480px) {
  header {
    margin: 2rem 1rem;
    padding: 1.5rem 1rem;
  }
  header h1 {
    font-size: 1.8rem;
  }
  header h1 i {
    font-size: 1.5rem;
  }
  header p {
    font-size: 1rem;
  }
}

header button {
  padding: 0.6rem 1.2rem;
  background-color: #e60000;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

header button:hover {
  background-color: #cc0000;
}

header h1 i {
  color: #e60000;
  margin-right: 0.5rem;
  vertical-align: middle;
  font-size: 1.5rem;
}

.contact__section {
  background-color: #0f0f0f;
  color: white;
  padding: 4rem 1.5rem;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__title {
  color: #e60000;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.contact__info h3 {
  color: #e60000;
  margin-bottom: 1rem;
}

.contact__info p {
  margin-bottom: 1rem;
  color: #ccc;
}

.contact__form {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #111;
  border: 1px solid #e60000;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #ff3333;
  outline: none;
}

.contact__form button {
  padding: 0.75rem 2rem;
  background-color: #e60000;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact__form button:hover {
  background-color: #ff1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 1.5rem;
  }
} 
.contact__form select,
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #111;
  border: 1px solid #e60000;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  appearance: none; /* for consistent dropdown style */
}

.contact__form select:focus {
  border-color: #ff3333;
  outline: none;
}
/* Why Us Slideshow Styles */
.slideshow__container {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 1rem;
  margin-top: -22px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.3s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 60, 60, 0.8);
}

.fade {
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.why__us__text {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  background-color: #fefefe;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .prev, .next {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  .why__us__text {
    font-size: 1rem;
    padding: 1rem;
  }
}


footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer__logo-contact {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer__logo-contact h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e74c3c; /* NestUp gold-ish */
}

.footer__logo-contact p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer__form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer__form input[type="email"] {
  padding: 8px 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer__form button {
  background-color: #e74c3c;
  border: none;
  color: #222;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer__form button:hover {
  background-color: #e74c3c;
}

.footer__links {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__links h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links ul li a:hover {
  color: #e74c3c;
}

.footer__social {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__social h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.social__icons a {
  color: #ccc;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social__icons a:hover {
  color: #f1c40f;
}

.footer__bottom {
  margin-top: 30px;
  text-align: center;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 20px;
}
.thank__you {
  text-align: center;
  background-color: #1a1a1a;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
  color: white;
}

.thank__you h2 {
  color: #e60000;
  margin-bottom: 1rem;
}

.thank__you p {
  margin-bottom: 2rem;
  color: #ccc;
}

.home__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e60000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home__button:hover {
  background-color: #cc0000;
}
/* Simplified header for contact page */
.simple-contact-header {
  text-align: center;
  background: none;
  margin: 1.5rem auto 1rem auto;
  padding: 0.5rem 1rem;
}

.simple-contact-header h1 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
}
.contact-page-header {
  background: linear-gradient(135deg, #000000, #e00000);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: popIn 1s ease-out;
}

.header-text-box h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.header-text-box p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
