body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1d3a;
  color: white;
}

/* TOP NAVBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  background: #0a2a66; /* rgba(6, 20, 45, 0.95);*/
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 50px;
  box-sizing: border-box;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;

}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.brand {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

/*.nav-center{
  display: flex;
  gap: 10px;
}

.nav-center a {
  margin: 0 12px;
  color: #f5a623;
  text-decoration: none;
  font-size: 16px;
}

.nav-center a:hover {
  text-decoration: underline;
} */



.phone {
  margin-right: 12px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-right a {
  margin-left: auto;
  font-size: 18px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 70vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://i8.amplience.net/i/flooranddecor/export-services-hero-desktop?w=1440&fmt=auto&qlt=80");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 60px;
}

.overlay {
  position: absolute;
  top: 18%;
  left: 8%;
  right: 8%;
}

.welcome {
  color: orange;
  font-size: 50px;
  margin: 0;
}

.overlay h2 {
  font-size: 36px;
  margin: 10px 0;
}

.overlay span {
  color: orange;
}



.export-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.export-box {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/

  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 30px 45px;
  text-align: center;

  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  min-width: 340px;
}

.export-top {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #555;
}

.export-title {
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 22px;
  margin: 10px 0;
}

.export-products {
  font-size: 17px;
  font-weight: 500;
  margin-top: 12px;
  color: #333;
}



.features-bar {
  background: #06142d;
  padding: 45px 80px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.feature-item {
  flex: 1;
  text-align: center;
  color: white;
}

.feature-item .icon {
  font-size: 34px;
  color: orange;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #cfd6e4;
  max-width: 260px;
  margin: auto;
}

@media (max-width: 900px) {
  .features-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.about-company {
  background: linear-gradient(180deg, #06142d, #0b1d3a);
  padding: 0px 20px;
  color: #ffffff;
  font-size: 20px;
}

.about-company p{
  padding: 10px 0px;
}

.about-container {
  max-width: 980px; /* ⬅ keeps text readable */
  margin: 0 auto; /* ⬅ centers block */
  text-align: center;
}

.about-container p {
  font-size: 16px;
  line-height: 1.9; /* ⬅ comfortable reading */
  color: #e3e9f4;
  margin-bottom: 28px;
}

.about-container strong {
  color: #f5a623;
  font-weight: 600;
}

.about-container hr {
  width: 120px;
  border: none;
  border-top: 2px solid #f5a623;
  margin: 40px auto;
  opacity: 0.9;
}

.download-btn {
  background: #ff9800;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #e68900;
  transform: translateY(-2px);
}


.video-section {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  background: #0b2341;
}

.video-box {
  position: relative;
  width: 700px;
  cursor: pointer;
}

.video-box img {
  width: 100%;
  border-radius: 25px;
  height: 400px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 55%;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.video-content {
  position: relative;
  width: 70%;
  max-width: 800px;
  margin: 5% auto;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}

.video-content iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


/* FAQ SECTION */

.faq {
  background: linear-gradient(180deg, #06142d, #0b1d3a);
  padding: 20px 20px;
  text-align: center;
  color: #ffffff;
}

.faq h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.faq p {
  font-size: 16px;
  color: #d3dbeb;
  margin-bottom: 30px;
}

/*
.faq .btn {
  display:inline;
  padding: 20px 32px;
  background: #f5a623;
  color: #06142d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.faq .btn:hover {
  background: #ffb84d;
  transform: translateY(-2px);
} */
.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: #0a2a66;
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: #08306b;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #f7f9fc;
  color: #333;
}
.btn {
  /*display: block;*/
  padding: 14px 32px;
  background: #f5a623;
  color: #06142d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2vh;
}

.contact {
  background: linear-gradient(180deg, #06142d, #0b1d3a);
  padding: 20px 20px;
  text-align: center;
  color: #ffffff;
}

.contact h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact p {
  font-size: 16px;
  color: #d3dbeb;
  margin-bottom: 30px;
}

/* SOCIAL */
.social {
  text-align: center;
  padding: 10px;
}

.social button {
  /*margin: 8px;
  padding: 10px 18px;
  background: orange;
  border: none;
  cursor: pointer;*/
  display: inline-block;
  padding: 14px 32px;
  background: #f5a623;
  color: #06142d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.social button:hover {
  background: #ffb84d;
  transform: translateY(-2px);
}



.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.modal-box {
  background: #ffffff;
  color: #06142d;
  width: 360px;
  max-width: 90%;
  padding: 30px;
  border-radius: 14px;
  margin: 120px auto;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  animation: pop 0.35s ease;
}

@keyframes pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-box h2 {
  margin: 0;
  font-size: 24px;
}

.modal-box p {
  font-size: 14px;
  color: #6b7280;
  margin: 8px 0 20px;
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
}

.modal-box textarea {
  resize: none;
  height: 90px;
}

.modal-box input:focus,
.modal-box textarea:focus {
  outline: none;
  border-color: #f5a623;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #f5a623, #ffb84d);
  border: none;
  color: #06142d;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

/* FOOTER */
footer {
  background: #0a2a66;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* HAMBURGER DEFAULT (DESKTOP) */
.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* REPLACE the full @media (max-width: 768px) block with this */
@media (max-width: 768px) {

     html, body{
        width: 100% !important;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
   .topbar {
    padding: 0 15px;
    flex-wrap: wrap;
  }

 

  /* Hide desktop nav links */
  /*.nav-center {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a2a66;
    text-align: center;
    z-index: 999;
  }

   Show when active 
  .nav-center.active {
    display: flex;
  } 

  .nav-center a {
    padding: 15px;
    display: block;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0;
  } */

  /* Show hamburger */
  /*.menu-icon {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
    order: 1; /* keeps it on the left 
  }*/

  /* Hide phone + social icons in topbar */
  

 

  /* Hero fixes */
  .welcome {
    font-size: 32px;
  }
  .overlay h2 {
    font-size: 30px;
  }
  .overlay {
    top: 10%;
    left: 4%;
    right: 4%;
  }
  .export-box {
    min-width: auto;
    width: 80%;
    padding: 20px;
  }

  /* Features stack vertically */
  .features-bar {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  /* Video */
  .video-box {
    width: 95%;
  }
  .video-box img {
    height: 200px;
  }
  .video-content {
    width: 95%;
  }
  .video-content iframe {
    height: 220px;
  }

  /* About / Products text */
  .about-container {
    padding: 0 10px;
  }
  .about-container p {
    font-size: 14px;
  }

  /* Social buttons wrap */
  .social button {
    margin: 6px 4px;
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Modal */
  .modal-box {
    margin: 80px auto;
    width: 90%;
  }
}
