@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #000000;
}
.header {
  width: 100%;
  background: #000000;
}

.container {
  max-width: 1600px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  border: none;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 1px;
}
.logo a {
  text-decoration: none;
  color: #ffffff;
   font-family: "Goldman", sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #555;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .nav-links {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    height: auto;
    right: 0;
    background: #000000;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 50px 0;
    gap: 40px;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
}


.contact-us {
  font-family: Arial, sans-serif;
  width: 100%;
}

/* Top Banner */
.contact-banner {
  background: #0c0c0c;
  padding: 60px 8%;
}

.contact-banner h1 {
  color: #fff;
  margin: 0;
  font-size: 36px;
  letter-spacing: 1px;
}

/* Content Area */
.contact-content {
  background: #000000;
  text-align: center;
  padding: 80px 8%;
}

.contact-content h2 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-content p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 50px;
}

/* Cards */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: #000000;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
}

.contact-card p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card p a:hover {
  color: #ffffff;
}

.icon {
  font-size: 22px;
  color: #ffffff;
}

/* ========================= */
/* Tablet Responsive */
/* ========================= */
@media (max-width: 992px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-banner h1 {
    font-size: 30px;
  }
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */
@media (max-width: 576px) {
  .contact-banner {
    padding: 40px 6%;
  }

  .contact-banner h1 {
    font-size: 24px;
  }

  .contact-content {
    padding: 60px 6%;
  }

  .contact-content h2 {
    font-size: 22px;
  }

  .contact-content p {
    font-size: 14px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 14px;
  }
}

.find-us {
  padding: 70px 8%;
  background: #000000;
  font-family: Arial, sans-serif;
  text-align: center;
}

.find-us h2 {
  font-size: 35px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Map Wrapper */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive Map */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ========================= */
/* Tablet Responsive */
/* ========================= */
@media (max-width: 992px) {
  .find-us h2 {
    font-size: 28px;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */
@media (max-width: 576px) {
  .find-us {
    padding: 50px 6%;
  }

  .find-us h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .map-container iframe {
    height: 280px;
  }
}



.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  max-width: 350px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #444;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
}


@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {
  .cta-section {
    height: 220px;
    margin: 60px 16px;
  }

  .cta-content h2 {
    font-size: 22px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
  }
}