*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* -------------------------------------------------------------------------------------------------------------------------------------  */ 

.contact-hero {
  width: 100%;
  background: #fefae0; /* light theme */
  padding: 100px 7% 80px;
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  z-index: 2;
}

.contact-info {
  flex: 1 1 460px;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
}

.contact-info h5 {
  color: #c58a2f;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.contact-info h1 {
  color: #283618;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 17px;
  color: #283618;
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  font-size: 16px;
  color: #283618;
  margin-bottom: 10px;
}

.contact-details a {
  color: #bc6c25;
  font-weight: 600;
  text-decoration: none;
}

/* Form Styling */
.contact-form {
  flex: 1 1 420px;
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #606c3833;
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

.contact-form h3 {
  color: #283618;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #bc6c2555;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 110px;
  resize: none;
}

.send-btn {
  padding: 12px;
  background: #606c38;
  color: #fefae0;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: #dda15e;
  color: #283618;
}

/* Fade Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Background Image */
.contact-image img {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 420px;
  opacity: 0.15;
  animation: slowFloat 6s ease-in-out infinite;
}

@keyframes slowFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media(max-width: 900px) {
  .contact-image img { display: none; }
}

@media(max-width: 600px) {
  .contact-info h1 { font-size: 30px; }
}

/* ------------------------------------------------------NAVBAR------------------------------------------------------------------------ */
nav{
  width:100%;
  height: 8vh;
  background:#283618; /* Primary Dark */
  color:#fefae0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  border-bottom:3px solid #606c38; /* Subtle accent */
}

nav .logo{
  font-size:1.4rem;
  font-weight:600;
  letter-spacing:1px;
  color:#fefae0;
}

nav ul{
  display:flex;
  gap:30px;
}

nav ul li{
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  color:#fefae0;
  font-size:1rem;
  transition:0.3s ease;
  padding-bottom:3px;
}

nav ul li a:hover{
  color:#dda15e; /* Highlight */
  border-bottom:2px solid #bc6c25; /* Brown accent */
}

/* Hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:6px;
}

.hamburger div{
  width:25px;
  height:3px;
  background:#fefae0;
  transition:0.4s;
}

/* Responsive */
@media(max-width:850px){
  nav ul{
    position:fixed;
    top:60px;
    left:-100%;
    width:100%;
    height:100vh;
    background:#283618;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:40px;
    transition:0.4s ease;
    border-top:3px solid #606c38;
  }

  nav ul.active{
    left:0;
  }

  .hamburger{
    display:flex;
  }
}



/* ============================
   JD FOOTER
   ============================ */
.jd-footer {
  background: #283618;
  color: #fefae0;
  padding: 70px 10% 30px;
  font-family: "Poppins", sans-serif;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}

/* Footer Columns */
.footer-col h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: #dda15e;
}
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #dda15e;
}

.footer-col .twitter{
  margin:0 15px;
}


.footer-col p {
  font-size: 15px;
  line-height: 1.6;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #fefae0;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover Animation on Links */
.footer-col ul li a:hover {
  color: #dda15e;
  padding-left: 6px;
}

/* Social Icons */
.social-icons a {
  color: #fefae0;
  margin-right: 12px;
  font-size: 22px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #dda15e;
  transform: scale(1.15);
}

/* CTA Button */
.footer-col{
    text-align: center;
}

.footer-col ul{
    text-decoration: none;
}

.whatsapp-btn{
    text-decoration: none;
}

.footer-cta {
  margin: 0 auto;
  background: #dda15e;
  color: #283618;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.35s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-cta:hover {
  background: #bc6c25;
  color: #fefae0;
  cursor: pointer;
  transform: translateY(-3px);
}

/* Bottom Strip */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  animation: fadeInUp 1.3s forwards;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

.a-tag {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.a-tag:hover,
.a-tag:focus,
.a-tag:active,
.a-tag:visited {
  text-decoration: none;
  color: inherit;
}