* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  list-style: none;
  text-decoration: none;
}

.main {
  max-width: 1800px;
  display: block;
  margin: 0 auto;
  width: 100%;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/poppins-v21-latin/poppins-v21-latin-500.woff2);
}

/* --------------cover-title------------ */
@font-face {
  font-family: "Yatra One";
  src: url(../fonts/Yatra_One/YatraOne-Regular.ttf);
}

body {
  min-height: 100vh;
}

header {
  position: relative;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #ecf0dc; */
  /* background-color: #f4f1e6; */
  /* background-color: #f9f6e2; */
  /* background-color: #e6f2e6; */
  /* background-color: #f5f0dc; */
  background-color: #e0e8d0;
  padding: 0px 10%;
  transition: all 0.5s ease;
  overflow-x: clip;
}

.navbar {
  display: flex;
}

.navbar a {
  color: #678e34;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0px 30px;
  transition: all 0.05s ease;
}

.navbar a:hover {
  /* color: #918e34; */
  color: #414833;
}

.navbar a:hover a.active {
  /* color: #918e34; */
  color: none;
}

.logo img {
  width: 120px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn2,
.btn3 {
  height: 45px;
  font-size: 18px;
  /* border-radius: 15px; */
  padding: 1px 15px;
  color: white;
  /* background-color: #96a757; */
  background-color: #6b8e23;
  border: none;
  transition: all 0.3s ease;
  /* box-shadow: 0 0 10px 2px #cfe6b8; */
}

.btn2 {
  width: 180px;
}

.btn2 .fa-solid {
  color: #fdff00;
  font-size: 22px;
}

.buttons button:hover {
  /* background-color: #8e9134; */
  /* background-color: #cfe6b8 */
  /* box-shadow: 0 0 0px 7px #cfe6b8; */
  /* background-color: #1c1f14; */
  /* background-color: #414833; */
  /* background-color: #f6ff8c; */
  background-color: #2e2e2e;
}

#menu-icon {
  /* font-size: 35px; */
  color: #8e9134;
  /* color: #96a757; */
  cursor: pointer;
  z-index: 10001;
  display: none;
  /* padding-top: 8px; */
}

/* ------for smallscreen--------------  */
@media (max-width: 1280px) {
  header {
    padding: 0 2%;
    transition: 0.2s;
  }

  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1090px) {
  #menu-icon {
    display: block;
  }

  .fa-bars {
    font-size: 40px;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    right: -100%;
    width: 150px;
    height: 29vh;
    /* background: hsl(0 0% 120%/0.1);
    backdrop-filter: blur(0.09rem); */
    background-image: radial-gradient(circle farthest-corner at 10% 20%,
        rgba(234, 251, 86, 0.88) 0%,
        rgba(165, 225, 27, 1) 90%);
    /* background-color: rosybrown; */
    /* padding: min(5vh, 7rem) 2em; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0 0 0 10px;
    transition: all 0.5s ease;

  }

  .navbar a {
    display: block;
    margin: 15px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
    color: #1A1A1A;
    /* color: #2E2E2E */
  }

  .navbar a:hover {
    /* color: var(--text-color); */
    /* color: #2e2e2e; */
    transform: translateY(5px);
    /* color: #2e2e2e; */
  }

  
  .navbar.open {
    right: 0;
  }

  .btn2,
  .btn3 {
    height: 40px;
  }
}

@media (max-width: 1000px) {
  .logo img {
    width: 100px;
  }
}

@media (max-width: 800px) {
  .logo img {
    width: 90px;
  }

  .navbar {
    height: 18vh;
  }

  .navbar a {
    margin: 5px 0;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 80px;
  }

  .navbar {
    height: 14vh;
    width: 120px;
  }

  .navbar li {
    margin-left: 10px;
  }

  .navbar a {
    margin: 3px 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 550px) {
  .navbar {
    /* height: 14vh; */
    width: 100px;
  }

  .navbar li {
    margin-left: 5px;
  }

  .navbar a {
    /* margin: 3px 0; */
    font-size: 0.8rem;
  }

  .buttons {
    gap: 10px;
  }

  .btn2,
  .btn3 {
    height: 35px;
    font-size: 15px;
    padding: 1px 15px;
  }

  .btn2 {
    width: 160px;
  }
}

@media (max-width: 430px) {
  .logo img {
    width: 70px;
  }

  .navbar {
    width: 80px;
    /* padding-right: 10px; */

    display: flex;
    align-items: center;
    justify-content: center;

  }

  .navbar li {
    /* margin-left: 0px; */
    /* margin-right: 10px; */
  }

  .btn2 .fa-solid {
    display: none;
  }

  .buttons {
    gap: 8px;
  }

  .btn1,
  .btn2,
  .btn3 {
    height: 30px;
    font-size: 13px;
    padding: 1px 9px;
  }

  .btn2 {
    width: 120px;
  }
}

.fa-bars {
  font-size: 30px;
}

@media (max-width: 320px) {
  .buttons {
    gap: 7px;
  }

  .btn2,
  .btn3 {
    font-size: 13px;
    padding: 1px 6px;
  }

  .btn2 {
    width: 120px;
  }

  .logo img {
    width: 70px;
  }
}

/* ============About_title-cover=========== */
.title-cover {
  width: 100%;
  height: 80vh;
  background-image: url(../images/cover3.jpg);
  background-position: center;
}

.title-cover h1 {
  text-align: center;
  padding-top: 12%;
  font-size: 120px;
  color: #f5f5f5;
  font-family: "Yatra One";
}

@media (max-width: 1300px) {
  .title-cover {
    height: 40vh;
  }

  .title-cover h1 {
    font-size: 100px;
  }
}

@media (max-width: 1000px) {
  .title-cover {
    height: 30vh;
  }
}

@media (max-width: 800px) {
  .title-cover {
    height: 20vh;
  }

  .title-cover h1 {
    padding-top: 10%;
    font-size: 60px;
  }
}

@media (max-width: 600px) {
  .title-cover {
    height: 18vh;
  }

  .title-cover h1 {
    padding-top: 11%;
    font-size: 55px;
  }
}

@media (max-width: 500px) {
  .title-cover h1 {
    font-size: 50px;
  }
}

@media (max-width: 450px) {
  .title-cover {
    height: 15vh;
  }

  .title-cover h1 {
    padding-top: 14%;
    font-size: 35px;
  }
}

@media (max-width: 320px) {
  .title-cover h1 {
    padding-top: 16%;
    font-size: 30px;
  }
}

/* ===================OUR STORY================ */
@font-face {
  font-family: "Yatra One";
  src: url(../fonts/Yatra_One/YatraOne-Regular.ttf);
}

.wrapper-main {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  color: #363932;
  z-index: 1;
  padding: 30px;
}

/* Background image + dark overlay */
.story-bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/trm1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 35, 20, 0.88) 0%, rgba(65, 72, 51, 0.85) 50%, rgba(43, 52, 34, 0.9) 100%);
  /* background: linear-gradient(135deg, rgba(26, 35, 20, 0.88) 0%, rgba(65, 72, 51, 0.85) 50%, rgba(43, 52, 34, 0.9) 100%); */
  pointer-events: none;
}

/* Two-column layout */
.story-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Glassmorphism card */
.story-card.glass-card {
  /* background: rgba(224, 232, 208, 0.12); */
  /* background: rgba(255, 255, 255, 0.18); */
  /* background: rgba(200, 215, 190, 0.22); */
  background: rgba(30, 30, 30, 0.25);
  /* background: rgba(210, 220, 225, 0.2); */
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(200, 215, 190, 0.15)
); */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(224, 232, 208, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-title {
  font-family: "Yatra One", serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #e0e8d0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.story-body {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: rgba(224, 232, 208, 0.95);
}

.story-body p {
  margin-bottom: 1.25rem;
}

.story-body p:last-child {
  margin-bottom: 0;
}

/* Wildlife imagery column */
.story-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(107, 142, 35, 0.4);
}

.story-img-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  /* background-position: bottom; */
}

.story-img-wrap:hover img {
  transform: scale(1.05);
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-content .story-card.animate-on-scroll {
  transition-delay: 0.1s;
}

.story-content .story-images.animate-on-scroll {
  transition-delay: 0.25s;
}

@media (max-width: 1200px) {
  .story-content {
    gap: 2.5rem;
  }

  .story-card.glass-card {
    padding: 2rem 2.25rem;
  }
}

@media (max-width: 900px) {
  .wrapper-main {
    padding: 50px 4%;
    min-height: auto;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .story-img-wrap {
    flex: 1 1 180px;
    max-width: 240px;
  }

  .story-img-wrap img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .wrapper-main {
    padding: 40px 3%;
  }

  .story-card.glass-card {
    padding: 1.5rem 1.5rem;
    border-radius: 18px;
  }

  .story-title {
    margin-bottom: 1.25rem;
  }

  .story-body p {
    margin-bottom: 1rem;
  }

  .story-images {
    flex-direction: column;
    align-items: center;
  }

  .story-img-wrap {
    max-width: 100%;
  }

  .story-img-wrap img {
    height: 180px;
  }

  .story-bg {
    background-attachment: scroll;
  }
}

/* ==================FAQ=============== */
.accord {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: #fff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

::selection {
  /* background: #7d2ae8; */
  color: #fff;
}

.accordion {
  display: flex;
  max-width: 1010px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 25px;
  padding: 45px 90px 45px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion .image-box {
  height: 360px;
  width: 300px;
  flex-shrink: 0;
}

.accordion .image-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.accordion .accordion-text {
  width: 60%;
  margin-left: 30px;
}

.accordion .accordion-text .title {
  font-size: 35px;
  font-weight: 600;
  color: #7d2ae8;
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 10px;
}

.accordion .accordion-text .faq-text {
  margin-top: 25px;
  height: 263px;
  overflow-y: auto;
  padding-right: 10px;
}

.faq-text::-webkit-scrollbar {
  width: 6px;
}

.faq-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.faq-text::-webkit-scrollbar-thumb {
  background: #7d2ae8;
  border-radius: 3px;
}

.accordion .accordion-text li {
  list-style: none;
  cursor: pointer;
  margin-bottom: 15px;
}

.accordion-text li .question-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.accordion-text li .question-arrow .question {
  font-size: 18px;
  font-weight: 500;
  color: #595959;
  transition: all 0.3s ease;
  line-height: 1.4;
  flex: 1;
  margin-right: 15px;
}

.accordion-text li .question-arrow .arrow {
  font-size: 20px;
  color: #595959;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-text li.showAnswer .question-arrow .arrow {
  transform: rotate(-180deg);
}

.accordion-text li:hover .question-arrow .question,
.accordion-text li:hover .question-arrow .arrow {
  color: #7d2ae8;
}

.accordion-text li.showAnswer .question-arrow .question,
.accordion-text li.showAnswer .question-arrow .arrow {
  color: #7d2ae8;
}

.accordion-text li .line {
  display: block;
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
}

.accordion-text li p {
  width: 92%;
  font-size: 15px;
  font-weight: 400;
  color: #595959;
  display: none;
  line-height: 1.6;
  padding: 10px 0;
}

.accordion-text li.showAnswer p {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Styles */
@media (max-width: 994px) {
  .accord {
    padding: 30px 15px;
  }

  .accordion {
    max-width: 100%;
    padding: 35px 50px;
  }

  .accordion .image-box {
    height: 320px;
    width: 250px;
  }

  .accordion .accordion-text {
    width: 65%;
    margin-left: 25px;
  }

  .accordion .accordion-text .title {
    font-size: 32px;
  }
}

/* Small Tablet / Large Mobile */
@media (max-width: 820px) {
  .accordion {
    flex-direction: column;
    padding: 30px 40px;
  }

  .accordion .image-box {
    height: 280px;
    width: 100%;
    max-width: 350px;
    /* background: #7d2ae8; */
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
  }

  .accordion .accordion-text {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  .accordion .accordion-text .title {
    font-size: 30px;
    text-align: center;
  }

  .accordion .accordion-text .faq-text {
    height: auto;
    max-height: 400px;
  }
}

/* Mobile Styles */
@media (max-width: 538px) {
  .accord {
    padding: 20px 10px;
    min-height: 60vh;
  }

  .accordion {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .accordion .image-box {
    height: 220px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .accordion .accordion-text .title {
    font-size: 26px;
  }

  .accordion-text li .question-arrow .question {
    font-size: 16px;
    margin-right: 10px;
  }

  .accordion-text li .question-arrow .arrow {
    font-size: 18px;
  }

  .accordion-text li p {
    width: 100%;
    font-size: 14px;
  }

  .accordion .accordion-text .faq-text {
    margin-top: 20px;
    max-height: 350px;
    padding-right: 5px;
  }
}

/* Extra Small Mobile (320px) */
@media (max-width: 400px) {
  .accord {
    padding: 15px 8px;
  }

  .accordion {
    padding: 15px 12px;
    border-radius: 15px;
  }

  .accordion .image-box {
    height: 180px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
  }

  .accordion .accordion-text .title {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .accordion-text li {
    margin-bottom: 12px;
  }

  .accordion-text li .question-arrow {
    padding: 8px 0;
  }

  .accordion-text li .question-arrow .question {
    font-size: 15px;
    margin-right: 8px;
    line-height: 1.3;
  }

  .accordion-text li .question-arrow .arrow {
    font-size: 16px;
  }

  .accordion-text li p {
    font-size: 13px;
    padding: 8px 0;
    line-height: 1.5;
  }

  .accordion .accordion-text .faq-text {
    margin-top: 15px;
    max-height: 300px;
    padding-right: 3px;
  }

  .accordion-text li .line {
    margin: 8px 0;
  }
}

/* Ultra Small (320px and below) */
@media (max-width: 320px) {
  .accord {
    padding: 10px 5px;
  }

  .accordion {
    padding: 12px 10px;
  }

  .accordion .image-box {
    height: 160px;
    padding: 12px;
  }

  .accordion .accordion-text .title {
    font-size: 22px;
  }

  .accordion-text li .question-arrow .question {
    font-size: 14px;
  }

  .accordion-text li .question-arrow .arrow {
    font-size: 15px;
  }

  .accordion-text li p {
    font-size: 12px;
  }

  .accordion .accordion-text .faq-text {
    max-height: 280px;
  }
}

/* ====================CONTACT_FORM================== */

.contact-form {
  font-family: "Roboto", sans-serif;
  background-color: #000;
  /* min-height: 100vh; */
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.contact-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
  max-width: 500px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-left-title h2 {
  font-weight: 600;
  color: #fcf077;
  font-size: 40px;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-left-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background: linear-gradient(270deg, #fcf077, #773700, #361d02);
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  width: 100%;
  max-width: 450px;
  height: 55px;
  border: none;
  outline: none;
  padding: 0 25px;
  font-weight: 500;
  background: #36332b;
  color: #fff;
  font-family: "Roboto", sans-serif;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-left textarea {
  height: 150px;
  padding: 20px 25px;
  border-radius: 25px;
  resize: vertical;
  min-height: 120px;
  max-height: 200px;
  line-height: 1.5;
}

.contact-inputs:focus {
  border: 2px solid #ff994f;
  background: #222;
  box-shadow: 0 0 20px rgba(255, 153, 79, 0.3);
  transform: translateY(-2px);
}

.contact-inputs::placeholder {
  color: #fcf077;
  opacity: 0.8;
}

.contact-left button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 35px;
  font-size: 18px;
  color: #411f02;
  font-weight: 600;
  gap: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(270deg, #fcf077, #773700);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(252, 240, 119, 0.4);
  font-family: "Roboto", sans-serif;

  min-width: 150px;
}

.contact-left button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(252, 240, 119, 0.6);
  background: linear-gradient(270deg, #fff, #fcf077, #773700);
}

.contact-left button:active {
  transform: translateY(-1px);
}

.contact-left button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.contact-left button:hover i {
  transform: translateX(3px);
}

.contact-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-right img {
  width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-right img:hover {
  transform: scale(1.02);
}

/* Form validation styles */
.contact-inputs:invalid {
  border-color: linear-gradient(270deg, #fcf077, #773700);
}

.contact-inputs:valid {
  border-color: #2ed573;
}

/* Loading state for button */
.contact-left button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-left button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #773700;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Desktop and Large Tablets */
@media (max-width: 1024px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-right img {
    width: 400px;
  }

  .contact-left-title h2 {
    font-size: 36px;
  }
}

/* Tablets */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
    padding: 30px 15px;
  }

  .contact-inputs {
    width: 100%;
    max-width: 500px;
  }

  .contact-right {
    /* display: none; */
  }

  .contact-left {
    align-items: center;
    text-align: center;
    max-width: 600px;
  }

  .contact-left-title {
    text-align: center;
  }

  .contact-left-title hr {
    margin: 0 auto 20px auto;
  }
}

/* Large Mobile Devices */
@media (max-width: 600px) {
  .contact-form {
    min-height: 100vh;
  }

  .contact-container {
    min-height: 100vh;
    padding: 20px 15px;
    justify-content: center;
  }

  .contact-left {
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  .contact-left-title h2 {
    font-size: 32px;
  }

  .contact-left-title hr {
    width: 100px;
  }

  .contact-inputs {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }

  .contact-left textarea {
    height: 130px;
    padding: 15px 20px;
  }

  .contact-left button {
    padding: 15px 30px;
    font-size: 15px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .contact-container {
    padding: 15px 12px;
  }

  .contact-left {
    gap: 18px;
  }

  .contact-left-title h2 {
    font-size: 28px;
  }

  .contact-left-title hr {
    width: 80px;
    height: 4px;
  }

  .contact-inputs {
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .contact-left textarea {
    height: 120px;
    padding: 12px 18px;
    border-radius: 20px;
  }

  .contact-left button {
    padding: 14px 28px;
    font-size: 14px;
    gap: 8px;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 400px) {
  .contact-container {
    padding: 12px 10px;
  }

  .contact-left {
    gap: 16px;
  }

  .contact-left-title h2 {
    font-size: 26px;
  }

  .contact-left-title hr {
    width: 70px;
    height: 3px;
  }

  .contact-inputs {
    height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .contact-left textarea {
    height: 110px;
    padding: 10px 16px;
  }

  .contact-left button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Ultra Small Devices (320px) */
@media (max-width: 320px) {
  .contact-container {
    padding: 10px 8px;
  }

  .contact-left {
    gap: 14px;
  }

  .contact-left-title h2 {
    font-size: 24px;
  }

  .contact-left-title hr {
    width: 60px;
    height: 3px;
  }

  .contact-inputs {
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .contact-left textarea {
    height: 100px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .contact-left button {
    padding: 10px 20px;
    font-size: 13px;
    gap: 6px;
  }

  .contact-inputs:focus {
    transform: translateY(-1px);
  }
}

/* ==================FOOTER==================== */
.footer {
  background-image: url(../images/footer3.jpg);
  font-family: "Libertinus Sans", sans-serif;
}

.container2 {
  padding: 0 125px;
  color: white;
}

.row-ar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.row-ar h3 {
  color: #d4b483;
}

.face {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.face img {
  width: 150px;
}

.face p {
  margin: 0;
  font-size: 16px;
}

ul li {
  margin-left: 20px;
}

.footer ul li {
  color: white;
}

.footer2 ul {
  list-style: none;
}

.footer2 ul li:hover {
  color: #8e9134;
  cursor: pointer;
}

.footer3 ul a {
  list-style: none;
  color: white;
}

.footer3 ul i {
  color: #7dae92;
  font-size: 17px;
}

.fa-square-facebook:focus {
  outline: none;
}

.footer3 ul a:hover,
.footer3 ul i:hover {
  color: #8e9134;
  cursor: pointer;
}

.footer4 ul {
  list-style: none;
  position: relative;
}

.ads {
  text-align: justify;
}

.footer4 .ads::before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  font-size: 1.1em;
  color: #7dae92;
  position: absolute;
  left: 3px;
}

.footer4 .number::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  font-size: 1em;
  color: #7dae92;
  position: absolute;
  left: 0px;
  top: 100px;
}

.footer4 .mail::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 1em;
  color: #7dae92;
  position: absolute;
  left: 0px;
  top: 125px;
}

.footer5 img {
  height: 150px;
}

.footer1,
.footer2,
.footer3,
.footer4,
.footer5 {
  padding-top: 50px;
}

.copyright {
  padding: 10px 0;
  text-align: center;
}

@media (max-width: 1462px) {
  .footer4 .number::before {
    top: 124px;
  }

  .footer4 .mail::before {
    top: 148px;
  }
}

@media (max-width: 1294px) {
  .footer4 .number::before {
    top: 148px;
  }

  .footer4 .mail::before {
    top: 172px;
  }
}

@media (max-width: 1103px) {
  .footer4 .number::before {
    top: 172px;
  }

  .footer4 .mail::before {
    top: 196px;
  }
}

@media (max-width: 1073px) {
  .footer4 .number::before {
    top: 196px;
  }

  .footer4 .mail::before {
    top: 220px;
  }
}

@media (max-width: 1060px) {
  .row-ar {
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
  }

  .footer2 {
    grid-row: 2;
  }

  .footer4 {
    grid-row: 1;
    grid-column: 2;
    margin-top: 50px;
  }

  .footer4 .number::before {
    top: 76px;
  }

  .footer4 .mail::before {
    top: 100px;
  }
}

@media (max-width: 1037px) {
  .footer4 .number::before {
    top: 100px;
  }

  .footer4 .mail::before {
    top: 124px;
  }
}

@media (max-width: 850px) {
  .footer4 .number::before {
    top: 124px;
  }

  .footer4 .mail::before {
    top: 148px;
  }
}

@media (max-width: 768px) {
  .footer4 .number::before {
    top: 148px;
  }

  .footer4 .mail::before {
    top: 172px;
  }
}

@media (max-width: 671px) {
  .footer4 .number::before {
    top: 172px;
  }

  .footer4 .mail::before {
    top: 196px;
  }
}

@media (max-width: 616px) {
  .footer4 .number::before {
    top: 196px;
  }

  .footer4 .mail::before {
    top: 220px;
  }
}

@media (max-width: 600px) {
  .container2 {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }

  .row-ar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer4 .number::before {
    top: 80px;
  }

  .footer4 .mail::before {
    top: 100px;
  }

  .footer1,
  .footer2,
  .footer3,
  .footer4,
  .footer5 {
    padding-top: 0px;
  }

  .face {
    align-items: center;
  }
}

@media (max-width: 485px) {
  .footer4 .number::before {
    top: 100px;
  }

  .footer4 .mail::before {
    top: 124px;
  }
}

@media (max-width: 369px) {
  .footer4 .number::before {
    top: 124px;
  }

  .footer4 .mail::before {
    top: 148px;
  }
}