
:root {
  --brand-orange: rgb(255, 165, 0);
  --light-orange: #fff5e6;
  --white: #ffffff;
}


.contact-hero {
  padding: 100px 20px;
  height: 55vh;
  background: linear-gradient(rgba(255, 165, 0, 0.6), rgba(255, 165, 0, 0.6)),
              url('../images/trade2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}


.contact-section {
  padding: 70px 20px;
  background: #f9f9f9;
}

.contact-card {
  background: var(--white);
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-card h2 {
  color: var(--brand-orange);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.contact-form button.btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-form button.btn:hover {
  background: #fff;
  color: var(--brand-orange);
  outline: 2px solid var(--brand-orange);
}


.contact-info {
  padding: 60px 20px;
  background: var(--white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--light-orange); 
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-box i {
  font-size: 36px;
  color: var(--brand-orange);
  margin-bottom: 15px;
}
.info-box p {
  color: #000000;
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--brand-orange);
}

:root {
  --brand-orange: rgb(255, 165, 0);
}

.header { 
  background-color: var(--brand-orange); 
  color: white; 
  position: sticky;
  top: 0;
  z-index: 1000;
    padding: 15px 30px; 
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-socials {
  display: flex;
  gap: 20px;
}

.header-socials a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-nav-socials {
  display: none;
}


@media (max-width: 900px) {
  .header-socials {
    display: none; 
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--brand-orange);
    display: none; 
    flex-direction: column;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 25px;
    margin-top: 10px;
  }

  .mobile-nav-socials a {
    color: white;
    font-size: 22px;
  }
}


.main-footer {
  background-color: #121212;
  color: #e0e0e0;
  padding: 80px 0 0 0; 
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid var(--brand-orange);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--brand-orange);
}

.footer-col p {
  line-height: 1.8;
  font-size: 14px;
  color: #aaa;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orange-title {
  color: var(--brand-orange) !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--brand-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #0a0a0a;
  padding: 25px 0;
  border-top: 1px solid #222;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.dev-credit span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .about, .social-icons {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .about { grid-column: span 1; }
  .bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .contact-hero { height: auto; padding: 80px 20px; }
  .nav { background-color: var(--brand-orange); }
}