*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/* styling whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
/* ================= HEADER ================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 19vh;
  padding: 20px 60px;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

.main-header.scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo img {
  width: 100px;
}

/* ================= NAV LEFT ================= */

.nav-left {
  display: flex;
  gap: 30px;
}

.nav-left a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16.5px;
  transition: 0.3s ease;
}

.nav-left a:hover,
.nav-left a.active-home {
  color: #c72f2f;
}

/* ================= NAV RIGHT ================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-right a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16.5px;
  transition: 0.3s ease;
}

.nav-right a:hover {
  color: #c72f2f;
}

/* ================= DROPDOWN DESKTOP ================= */

.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  font-size: 16.5px;
  font-weight: 500;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
}
.dropdown .dropbtn i{
    margin-left: 8px;
}
.dropdown .dropbtn:hover {
  color: #c72f2f;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s ease;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #c72f2f;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= PHONE ================= */

.phone {
  font-weight: 600;
}

.phone .icon {
  margin-right: 6px;
}

/* Hamburger Base */
.menuToggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menuToggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}
/* HERO SLIDER */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* SLIDES */

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* HERO CONTENT */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
}

.hero-content h2 {
    font-size: 3rem;
    text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
}

/* PREMIUM SEARCH BAR */

.filters {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;

    width: 95%;
    max-width: 900px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* INPUTS */

.filters input,
.filters select {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
}

/* CUSTOM SELECT ARROW */

.filters select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 45px;
}

/* DIVIDERS */

.filters input:not(:last-child),
.filters select:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

/* SEARCH BUTTON */

#search-btn {
    padding: 15px 30px;
    background: #9c7c2f;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

#search-btn:hover {
    background: #7e6424;
}


/* ---------------- */
/* LARGE TABLETS */
/* ---------------- */

@media (max-width:1024px){

.hero-content h2{
    font-size:2.5rem;
}

.filters{
    bottom:100px;
}

}


/* ---------------- */
/* TABLETS */
/* ---------------- */

@media (max-width:768px){

.hero{
    height:80vh;
}

.hero-content{
    padding:20px;
}

.hero-content h2{
    font-size:2rem;
}

.filters{
    flex-direction:column;
    border-radius:20px;
    bottom:40px;
    max-width:500px;
}

.filters input,
.filters select{
    border-right:none !important;
    border-bottom:1px solid #eee;
    width:100%;
}

#search-btn{
    width:100%;
    border-radius:0 0 20px 20px;
    justify-content:center;
}

}


/* ---------------- */
/* PHONES */
/* ---------------- */

@media (max-width:480px){



.hero-content h2{
    font-size:1.8rem;
}

.hero-content{
    padding:15px;
}

.filters{
    width:90%;
}

.filters input,
.filters select{
    font-size:14px;
    padding:12px 15px;
}

#search-btn{
    padding:14px;
}

}
/* SECTION */
.listings {
  padding: 100px 80px;
  background: #f7f7f7;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 500;
  color: #1d2b36;
}

/* CATEGORY BUTTONS */
.listing-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cat-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cat-item:hover {
  background: #c8a74e;
  color: #fff;
  border-color: #c8a74e;
}

/* GRID */
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.property-card {
  display: block;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.4s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE CONTAINER */
.property-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

/* BADGES */
.badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
}

.featured {
  background: #1d3b50;
}

.sale {
  background: #c8a74e;
}

/* BOTTOM OVERLAY */
.image-bottom {
  position: absolute;
  bottom: 15px;
  width: 50px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}

/* AGENT AVATAR */
.agent-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* HEART */
.wishlist {
  width: 100px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
}

/* INFO */
.property-info {
  padding: 20px;
}

.property-info h3 {
  color: #c8a74e;
  margin-bottom: 6px;
  font-weight: 500;
}

.property-info h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.property-info p {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .listings {
    padding: 80px 20px;
  }
}
/*passionate*/
.sticky-bg {
  position: relative;
  overflow: hidden;
  padding: 80px 10%;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Image/f1595a40bcde7b8e2c92ee981ab759d3.jpg") center/cover no-repeat;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 2;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.content h2{
  font-size: 50px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  font-weight: 400;
}
.content p{
  font-size: 25px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  margin-bottom: 50px;
}
.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
a{
    text-decoration: none;
}
.box-content{
    box-shadow: 0px 1px 2px rgb(10, 10, 10);
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 30px 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}
.box-content:hover{
    transform: translateY(-10px);
}
.box-content h3{
    color: rgb(0, 0, 0);
    font-size: 19px;
    padding: 10px 0;
    font-weight: 430;
}
.box-content p{
    font-size: 16px;
    line-height: 20px;
    color: black;
    margin-bottom: 10px;
}
.box-content .pic{
    width: 80px;
    padding: 10px;
    border-radius: 10px;
}
.read{
    margin-top: 10px;
    text-decoration: underline;
}
/* ================= SECTION ================= */

.featured-property{
  padding:80px 60px;
  background-color: white;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header h2{
  font-size:34px;
  margin-bottom:10px;
}

.section-header p{
  color:#000000;
}

/* ================= GRID ================= */

.property-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* ================= CARD ================= */

.property-card{
  position:relative;
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:.3s;
}

.property-card:hover{
  transform:translateY(-8px);
}

/* Make whole card clickable */
.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

/* ================= IMAGE AREA ================= */

.property-image{
  position:relative;
  height:250px;
  overflow:hidden;
}

/* ================= SLIDER ================= */

.slider{
  position:relative;
  height:100%;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:slide 12s infinite;
}

.slide:nth-child(1){ animation-delay:0s; }
.slide:nth-child(2){ animation-delay:4s; }
.slide:nth-child(3){ animation-delay:8s; }

@keyframes slide{
  0%{opacity:0;}
  8%{opacity:1;}
  33%{opacity:1;}
  41%{opacity:0;}
  100%{opacity:0;}
}

/* ================= BADGE ================= */

.badge-property{
  position:absolute;
  top:15px;
  right:15px;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  color:#fff;
}

.status-active { background:#28a745; }
.status-sold { background:#e63946; }
.status-featured { background:#1d3557; }
.status-open { background:#c8a74e; }

/* ================= PRICE ================= */

.price{
  position:absolute;
  bottom:15px;
  right:10px; /* moved to right */
  background:#c8a74e;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  z-index:5;
}

/* ================= AGENT ================= */

.agent{
  position:absolute;
  bottom:65px;
  left:15px;
  display:flex;
  align-items:center;
  text-decoration:none;
  z-index:10;
}

.agent img{
  width:45px;
  height:45px;
  border-radius:50%;
  border:3px solid #fff;
  object-fit:cover;
  cursor:pointer;
  transition:.3s;
}

.agent-info{
  background:#fff;
  padding:8px 12px;
  border-radius:8px;
  margin-left:10px;
  opacity:0;
  transform:translateX(-10px);
  transition:.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  white-space:nowrap;
}

.agent-info h4{
  font-size:13px;
}

.agent-info p{
  font-size:11px;
  color:#777;
}

/* Hover popup */
.agent:hover .agent-info{
  opacity:1;
  transform:translateX(0);
}

/* ================= INFO ================= */

.property-info{
  padding:25px 20px 20px 20px;
}

.property-info h3{
  font-size:16px;
  margin-bottom:6px;
}

.property-info p{
  font-size:13px;
  color:#777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){
  .property-list{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .property-list{
    grid-template-columns:1fr;
  }

  .featured-property{
    padding:60px 20px;
  }
}
/* ===== SECTION WRAPPER ===== */

.agent-section{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 80px 10%;
  gap:60px;
  position:relative;
}

/* ===== LEFT IMAGE ===== */

.agent-image{
  width:800px;
  border-radius:20px;
  overflow:hidden;
}

.agent-image img{
  width:100%;
  display:block;
  border-radius:20px;
}

/* ===== RIGHT CONTENT CARD ===== */

.agent-card{
  background:#0f1c1f;
  color:#fff;
  padding:60px;
  border-radius:0 40px 40px 0;
  width:600px;
  position:relative;
}

/* Decorative gold shape */
.agent-card::before{
  content:"";
  position:absolute;
  top:-40px;
  left:40px;
  width:80px;
  height:80px;
  background:gold;
  border-radius:50%;
  opacity:0.6;
}

/* ===== TEXT STYLES ===== */

.agent-card h2{
  font-size:28px;
  margin-bottom:20px;
}

.agent-card p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:20px;
  color:#d6d6d6;
}

.signature{
  font-family:"Great Vibes", cursive;
  font-size:26px;
  color:#d4af37;
  margin-top:20px;
}
/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .agent-section{
    flex-direction:column;
  }

  .agent-card{
    width:100%;
    border-radius:20px;
  }

  .agent-image{
    width:100%;
  }
}
/* counter up */
.counter-up {
  background: #f9fafa;
  padding: 60px 20px;
  text-align: center;
}
.counter {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 130px;
  padding: 0;
  margin: 0;
}
.counter-heading{
    text-align: center;
    font-size: 32px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
}
.counter .fig {
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}
.counter .fig .pic {
  width: 80px;
  padding: 10px;
  border-radius: 10px;
}
.counter .fig .digits {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}
.counter .fig .texts {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
}
/* Slideshow container */
.slideshow-container {
    position: relative;
    background-color: #0f1c1f;
}
.mySlides {
    display: none;
    padding: 80px;
    text-align: center;
}
.mySlides p{
    margin-top: 20px;
    padding: 0 100px;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}
.mySlides .detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.detail .name{
    font-weight: 400;
    color: white;
}
.detail .job{
    font-style: italic;
    color: rgba(255, 255, 255, 0.584);
}
.slideshow-container .core-heading{
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
    color: rgb(255, 255, 255);
    font-size: 30px;
}

/* ARROWS */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
}
/* DOTS */

.dot-container {
    text-align: center;
    padding: 20px;
    background-color: #0f1c1f;
}
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgb(79, 78, 77);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
/* -------------------- */
/* TABLET RESPONSIVE */
/* -------------------- */
@media (max-width:1024px){

.mySlides{
    padding:60px;
}

.mySlides p{
    padding:0 60px;
    font-size:16px;
}

.slideshow-container .core-heading{
    font-size:26px;
}

}
/* -------------------- */
/* MOBILE RESPONSIVE */
/* -------------------- */

@media (max-width:768px){

.mySlides{
    padding:50px 30px;
}

.mySlides p{
    padding:0 20px;
    font-size:15px;
}

.slideshow-container .core-heading{
    font-size:24px;
}

.prev, .next{
    padding:12px;
    font-size:18px;
}

}
/* -------------------- */
/* SMALL PHONES */
/* -------------------- */
@media (max-width:480px){

.mySlides{
    padding:40px 20px;
}

.mySlides p{
    padding:0 10px;
    font-size:14px;
}

.slideshow-container .core-heading{
    font-size:20px;
}

.prev, .next{
    font-size:16px;
    padding:10px;
}

.dot{
    height:8px;
    width:8px;
}

}
/* DESTINATION SECTION */
.destination{
  padding:100px 8%;
  min-height:100vh;
  display:flex;
  align-items:center;
  background-color:white;
}
.destination-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}
/* LEFT CONTENT */
.destination-text{
  max-width:520px;
}
.destination-text h1{
  font-size:48px;
  line-height:1.3;
  font-family:'Playfair Display', serif;
  font-weight:500;
  margin-bottom:25px;
}
.highlight{
  font-family:'Great Vibes', cursive;
  color:#caa15a;
  font-size:32px;
  margin-left:10px;
}
.destination-text p{
  font-size:15px;
  line-height:1.8;
  opacity:0.85;
  margin-bottom:35px;
}
/* BUTTONS */
.destination-buttons{
  display:flex;
  align-items:center;
  gap:20px;
}
.btn-outline{
  padding:12px 26px;
  border:1px solid #caa15a;
  border-radius:30px;
  color:rgb(0,0,0);
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}
.btn-outline:hover{
  background:#caa15a;
  color:#072a2f;
}
.or{
  font-size:13px;
  opacity:0.7;
}
/* RIGHT IMAGES */
.destination-images{
  display:flex;
  gap:25px;
  align-items:center;
}
/* LARGE IMAGE */
.img-large img{
  width:320px;
  height:500px;
  object-fit:cover;
  border-radius:20px;
}
/* RIGHT COLUMN */
.img-right{
  display:flex;
  flex-direction:column;
  gap:25px;
}
.img-small img{
  width:260px;
  height:235px;
  object-fit:cover;
  border-radius:20px;
}
/* ---------- TABLET ---------- */
@media(max-width:1100px){

.destination-container{
  flex-direction:column;
  text-align:center;
}

.destination-images{
  justify-content:center;
}

.destination-text{
  max-width:100%;
}

}
/* ---------- MOBILE ---------- */
@media(max-width:768px){

.destination{
  padding:80px 6%;
}

.destination-text h1{
  font-size:36px;
}

.destination-images{
  flex-direction:column;
}

.img-large img{
  width:90%;
  height:auto;
}

.img-right{
  flex-direction:row;
  justify-content:center;
}

.img-small img{
  width:45%;
  height:auto;
}

}
/* ---------- SMALL PHONES ---------- */
@media(max-width:480px){

.destination-text h1{
  font-size:28px;
}

.destination-buttons{
  flex-direction:column;
  gap:15px;
}

.img-small img{
  width:100%;
}

.img-right{
  flex-direction:column;
}

}
.footer{
background:#f4f4f4;
padding:60px 8% 25px;
color:#333;
}
/* CONTAINER */
.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
  margin-bottom:40px;
}
/* LOGO */
.logo h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
}
.logo span{
  color:#b8964c;
  margin-right:6px;
}
/* TEXT */
.footer-col p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:8px;
  color:#555;
}
/* HEADINGS */
.footer-col h4{
  margin-bottom:15px;
  font-size:16px;
  font-weight:600;
}
/* LINKS */
.footer-col ul{
  list-style:none;
  padding:0;
}
.footer-col ul li{
  margin-bottom:8px;
}
.footer-col ul li a{
  text-decoration:none;
  color:#444;
  font-size:14px;
  transition:0.3s;
}
.footer-col ul li a:hover{
  color:#b8964c;
}
/* BOTTOM FOOTER */
.footer-bottom{
  border-top:1px solid #ddd;
  padding-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}
.footer-bottom p{
  font-size:13px;
  color:#555;
}
/* FOOTER LINKS */
.footer-links a{
  margin:0 10px;
  font-size:13px;
  color:#333;
  text-decoration:none;
}
.footer-links a:hover{
  color:#b8964c;
}
/* SOCIAL ICONS */
.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border:1px solid #ccc;
  border-radius:50%;
  margin-left:10px;
  color:#333;
  font-size:14px;
  transition:0.3s;
}
.social-icons a:hover{
  background:#b8964c;
  color:white;
  border-color:#b8964c;
}
/* RESPONSIVE */
@media(max-width:900px){

.footer-container{
  grid-template-columns:1fr;
  gap:40px;
}

.footer-bottom{
  flex-direction:column;
  text-align:center;
}

}
/* ================= MOBILE ================= */
@media (max-width: 1050px){
  .nav-left a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s ease;
  }
  .nav-right a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s ease;
  }
  .main-header{
    height: 16vh;
   }
}
@media (max-width: 1020px){
  .main-header{
    height: 16vh;
   }
}
@media (max-width: 950px){
  .main-header{
    height: 16vh;
   }
   .logo img {
    width: 20%;
  }
}
@media (max-width: 992px) {

  .menuToggle {
    display: flex;
    z-index: 1001;
  }

  /* Hide desktop nav */
  .nav-left,
  .nav-right {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #000000;
    flex-direction: column;
    padding-top: 80px;
    gap: 0;
    transition: 0.4s ease;
  }

  /* Show nav */
  .nav-left.active {
    left: 0;
  }

  /* Stack items */
  .nav-left a,
  .nav-right a,
  .dropbtn {
    width: 100%;
    padding: 18px 25px;
    text-align: left;
    font-size: 16px;
    color: #fff;
    background: none;
    border: none;
  }

  .dropdown {
    position: relative;
    padding: 13px;
    left: 2.2%;
  }

  /* Mobile dropdown */
  .dropdown-content {
    position: static;
    background: #000000;
    box-shadow: none;
    border-radius: 0;
    padding: 0;

    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 15px 40px;
    color: #fff;
  }

  .dropdown-content a:hover {
    background: #000000;
    color: #c72f2f;
  }

  /* Hamburger animation */
  .menuToggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menuToggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menuToggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
@media (max-width: 500px){
   .main-header{
    height: 14vh;
    gap: 30px;
   }
   .logo img {
    width: 63%;
    padding-right: 25% !important;
  }

}