
/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}


:root {
  --primary-green: #2fbf71;
  --dark-green: #1f8f52;
  --accent-lime: #7ed957;
  --dark-bg: #0f0f0f;
  --menu-bg: #1b1b1b;
  --white: #ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background:#f5f5f5;
  color:#111;
}


/* ================= HERO SECTION ================= */






.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

/* SECTION */
.contact-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:80px 8%;
  position:relative;
  overflow:hidden;
}

/* subtle background pattern */
.contact-section::after{
  content:"";
  position:absolute;
  right:-100px;
  top:-50px;
  width:500px;
  height:500px;
  background:radial-gradient(circle, var(--accent-lime) 0%, transparent 70%);
  opacity:0.08;
}

/* CONTENT */
.contact-container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

.contact-top-btn{
  display:inline-block;
  padding:10px 20px;
  border:1px solid #ccc;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  margin-bottom:40px;
  color:#111;
  text-decoration:none;
  background:#fff;
  transition:0.3s;
}

.contact-top-btn:hover{
  background:var(--primary-green);
  color:var(--white);
  border-color:var(--primary-green);
}

/* HEADING */
.contact-heading{
  font-size:60px;
  font-weight:700;
  line-height:1.2;
  max-width:700px;
  margin-bottom:60px;
}

.contact-heading span{
  color:var(--primary-green);
}

/* INFO SECTION */
.contact-info{
  display:flex;
  gap:80px;
}

.contact-box h4{
  font-size:16px;
  font-weight:600;
  color:#777;
  margin-bottom:20px;
}

.contact-box p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:10px;
}

.contact-box a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  display:block;
  margin-bottom:8px;
  transition:0.3s;
}

.contact-box a:hover{
  color:var(--primary-green);
}

/* RESPONSIVE */
@media(max-width:992px){
  .contact-heading{
    font-size:42px;
  }
  .contact-info{
    gap:40px;
  }
}

@media(max-width:768px){
  .contact-section{
    padding:60px 6%;
  }

  .contact-heading{
    font-size:32px;
  }

  .contact-info{
    flex-direction:column;
    gap:30px;
  }

  .contact-top-btn{
    margin-bottom:30px;
  }
}



/* CONTACT FORM SECTION */
.contact-form-section{
  background:#f5f5f5;
  padding:80px 8%;
}

.contact-form-container{
  display:flex;
  gap:60px;
  align-items:center;
  max-width:1300px;
  margin:auto;
}

.contact-image{
  flex:1;
}

.contact-image img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
}

/* FORM */
.contact-form{
  flex:1;
}

.form-row{
  display:flex;
  gap:30px;
  margin-bottom:25px;
}

.form-group{
  flex:1;
  display:flex;
  flex-direction:column;
}

.form-group label{
  font-weight:600;
  margin-bottom:10px;
  color:#222;
}

.form-group input,
.form-group textarea{
  padding:18px 20px;
  border:none;
  border-radius:40px;
  background:#e9e9e9;
  font-size:16px;
  outline:none;
  transition:0.3s;
}

.form-group textarea{
  border-radius:20px;
  resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
  background:#ddd;
}

.full-width{
  width:100%;
  margin-bottom:30px;
}

/* BUTTON */
.send-btn{
  display:inline-flex;
  align-items:center;
  gap:15px;
  padding:18px 30px;
  border-radius:50px;
  border:1px solid #ccc;
  background:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.send-btn .arrow{
  background:var(--primary-green);
  color:var(--white);
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
}

.send-btn:hover{
  border-color:var(--primary-green);
}

/* RESPONSIVE */
@media(max-width:992px){
  .contact-form-container{
    gap:40px;
  }
}

@media(max-width:768px){

  .contact-form-container{
    flex-direction:column;
  }

  .form-row{
    flex-direction:column;
    gap:20px;
  }

  .contact-form-section{
    padding:60px 6%;
  }
}

