*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,body{
  height:100%;
  scroll-behavior: smooth;
}
body{
  font-family: "Space Grotesk", "Inter", sans-serif;
  background: #ffffff;
  /* color: rgba(255,255,255,0.7); */
  line-height:1.45;
  scroll-behavior:smooth;
  padding-bottom: 100px;
  min-height: 100vh;
}
a{
  color:inherit;
  text-decoration:none
}
img{
  max-width:100%;
  display:block
}
.container{
  max-width: 1300px;
  margin: 0 auto;
  width: calc(100% - 4rem);
}
.space{
  height: 5px;
}
.blur-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s; 
}
.blur-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0); 
}

.scroll-reveal {
  /* Hidden State */
  opacity: 0;
  transform: translateY(40px);
  
  /* Base Transition Time */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  
  /* Staggering delay is applied via CSS nth-child */
  transition-delay: var(--delay, 0s); 
}

/* --- STAGGERING LOGIC (CSS Based) --- */
/* This applies a progressive delay to each card in the grid */
.scroll-reveal:nth-child(1) { --delay: 0.0s; }
.scroll-reveal:nth-child(2) { --delay: 0.1s; }
.scroll-reveal:nth-child(3) { --delay: 0.2s; }
.scroll-reveal:nth-child(4) { --delay: 0.3s; }
.scroll-reveal:nth-child(5) { --delay: 0.4s; }
.scroll-reveal:nth-child(6) { --delay: 0.5s; }
.scroll-reveal:nth-child(7) { --delay: 0.6s; }
/* Add more as needed for larger grids */


/* --- Visible State (Activated by JavaScript) --- */
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.sticky {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
.logo img{
  width: 70px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: "Space Grotesk", "Inter", sans-serif;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.contact-btn {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.menu-toggle {
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 1001; 
  display: none; 
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px; 
  width: 100%;
  background: #000;
  left: 0;
  transform-origin: center;
  transition: all 0.3s ease;
}
.menu-toggle span:first-child { 
  top: 0; 
}
.menu-toggle span:last-child { 
  bottom: 0; 
}
.menu-toggle.active span:first-child { 
  transform: translateY(6px) rotate(45deg); 
}
.menu-toggle.active span:last-child { 
  transform: translateY(-6px) rotate(-45deg); 
}


.mobile-menu-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #ffff;
  z-index: 999;
  transform: translateY(-200%); 
  transition: transform 0.4s ease-out;
  display: flex;
  flex-direction: column;
  padding:25px 20px;
  overflow-y: hidden;
}

.mobile-menu-overlay.active {
  transform: translateY(var(--navbar-height, 66px)); 
}

.mobile-menu-overlay a {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  margin-bottom: 10px;
  display: block; 
}

@media (max-width: 900px) {
.navbar {
  padding: 14px 20px;
}
.nav-links, .contact-btn { display: none; }
.menu-toggle { display: block; }
}

@media (min-width: 901px) {
  .mobile-menu-overlay {
    display: none; 
  }
}
@media (max-width: 576px) {
  .logo {
    font-size: 20px;
  }
  .logo img{
    width: 50px;
    height: 30px;
  }
} 
.slide-effect {
  position: relative; 
  overflow: hidden; 
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.slide-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dddddd; 
  z-index: -1;
  transform: translate(-100%, -100%); 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020202;
  z-index: -2; 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-effect:hover {
  color:  #000
}

.slide-effect:hover::before {
  transform: translate(0, 0); 
}

.slide-effect:hover::after {
  transform: translate(100%, 100%); 
}



.slider {
  position:absolute;
  inset:0;
  display:block;
  z-index:1;
  overflow:hidden;
}

.slide {
  position:absolute;
  inset:0;
  background-position:center;
  background-repeat: no-repeat;
  background-size:cover;
  opacity:0;
  transform:scale(1.02);
  transition: opacity 1.2s ease, transform 1.6s ease;
  will-change: opacity, transform;
}


.slide.active {
  opacity:1;
  transform:scale(1);
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,4,5,0.45) 15%, rgba(3,4,5,0.6) 60%, rgba(3,4,5,0.7) 100%);
  z-index:2;
  pointer-events:none;
}

.hero {
  position: relative;
  height: 88vh;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1500px;
  margin: 75px auto 0;
  background: #000;
}


.hero-content {
  max-width: 1400px;
  height: 700px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 10;
}

/* LEFT SIDE */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
}

.hero-left h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-top: 50px;
  font-size: 82px;
  font-weight: 700;
  line-height: 1.2;
  color: white;

}

.hero-left-bottom {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-subtitle {
  font-size: 18px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-bottom: 25px;
  max-width: 500px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.explore-btn {
  margin-bottom: 30px;
  background: #000000;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  transition: transform 0.3s, background 0.3s;
}

.explore-btn:hover {
  background: #dddddd;
  color: #000000;
  transform: translateY(-2px);
}


/* RIGHT SIDE */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  text-align: right;
}

.tagline {
  margin-top: 100px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: white;
}

/* REVIEWS CARD */
.reviews-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 320px;
  align-self: flex-end;
  margin-bottom: 40px;
}

.review-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.avatars {
  display: flex;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  margin-left: -12px;
  background-size: cover;
  background-position: center;
}

.avatar:first-child {
  margin-left: 0;
}

.line{
  width:1px;
  height:55px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
}

.reviews-header {
  color: white;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}

.reviews-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.reviews-description {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

.remix-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-top: 10px;
}
@media(min-width: 1024px){
  .hero { 
    margin-top: 75px;
    margin-left: 5px;
    margin-right: 5px;
    /* padding: 30px; */
  }
  .hero-left h1 {
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .hero { 
    margin-top: 75px;
    margin-left: 5px;
    margin-right: 5px;
    height: auto;
  }
  .hero-content {
    flex-direction: column-reverse;
    height: 700px; 
    padding: 40px 30px;
    align-items: flex-start;
  }

  .hero-left h1 {
    font-size: 60px;
  }

  .hero-left, 
  .hero-right {
    width: 100%;
    padding-top: 0;
    justify-content: flex-start;
    text-align: left;
  }


  .hero-right {
    order: 1; 
    margin-bottom: 40px;
  }


  .tagline {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
  }
  .explore-btn {
    display: none;
  }

  .reviews-card {
    align-self: flex-start;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .hero-left {
    order: 2; 
  }

  .hero-left-bottom {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 28px 15px;
  }

  .hero-left h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .reviews-header {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .hero-left h1 {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .tagline {
    font-size: 16px;
  }
  .reviews-header {
    font-size: 14px;
  }
  .reviews-subtext {
    font-size: 14px;
  }
}

.about-section {
  margin: 10px 0;
  padding: 5rem 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.about-section .container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-left {
  flex: 1;
}

.about-tag {
  color: #8a8a8a;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  color: #111;
}

.about-text {
  color: #555;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease;
}


.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.service-number {
  font-size: 2rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 500;
  color: #111;
  min-width: 50px;
}

.service-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: #111;
  font-weight: 500;
}

.service-text {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .about-section .container {
    flex-direction: column;
    padding: 0;
    margin: 0 1.2rem;
    width: calc(100% - 2.4rem);
  }
  .about-title {
    font-size: 2.5rem;
  }

}
@media (max-width: 600px) {
  .about-title {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .about-title {
    font-size: 1.75rem;
  }
  .about-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  .service-item{
    gap: 0.7rem;
  }
  .service-number{
    font-size: 1.5rem;
    min-width: 40px;
  }
  .service-title{
    font-size: 1.25rem;
  }
  .service-text{
    font-size: 0.85rem;
    width: 100%;
  }
}
@media (max-width: 320px) {
  .about-title {
    font-size: 1.5rem;
  }
  .about-text {
    font-size: 0.9rem;
  }
  .btn-primary {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
  }
  .service-number{
    font-size: 1.25rem;
    min-width: 35px;
  }
  .service-title{
    font-size: 1.1rem;
  }
  .service-text{
    font-size: 0.8rem;
  }
}


.features{
  margin: 10px 0;
  padding: 5rem 0;
}
.features-header{
  text-align: center;
  margin-bottom: 3rem;
}
.features-subtitle {
  background: #000;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: .8rem;
}
.features-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 0.3rem;
  color: #111;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}
.features-card {
  background: #dddddd;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-image{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-image img{
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.features-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #111;
}
.features-card-text {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

@media(max-width: 998px){
  .features{
    padding: 1rem 0;
  }
  .features-title{
    font-size: 2.2rem;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  .features-card{
    padding: 1.3rem 1.2rem;
  }
}
@media(max-width: 576px){
  .features-subtitle{
    font-size: 0.9rem;
    padding: 3px 10px;
  }
  .features-title{
    font-size: 22px;
  }
  .features-card-title {
    font-size: 1.25rem;
  }
}
@media(max-width: 320px){
  .features-subtitle{
    font-size: 0.8rem;
    padding: 2px 8px;
  }
  .features-title{
    font-size: 18px;
  }
  .features-card-title {
    font-size: 1.1rem;
  }
  .features-card-text {
    font-size: 0.9rem;
  }
}


.properties-section {
  margin: 20px 0;
  padding: 6rem 0;
  background: #ffffff;
}

.properties-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  max-width: 1400px;
  margin: 0 auto;
}
.properties-sticky {
  padding: 0px;
  box-sizing: border-box;
}
.properties-left {
  position: sticky;
  top: 120px;
  flex: 1;
}
.properties-subtitle {
  color: #8a8a8a;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 5px;
}
.properties-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #111;
}
.properties-text {
  line-height: 1.8;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.properties-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.properties-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.properties-image {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 450px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 8px;
}
.properties-details {
  margin-top: 20px;
  padding: 0 10px;
}
.properties-price {
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}
.properties-price span{
  font-size: 1.1rem;
  color: #777;
}
.properties-location {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.properties-name {
  font-size: 1.55rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 5px;
}
.properties-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  
  padding-top: 12px;
  color: #444;
  font-size: 1.11rem;
}
.status{
  margin-top: 5px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px;
  border-top: 1px solid #dddddd;
}
.for-rent{
  background: #e0f7fa;
  color: #00796b;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 500;
}
.for-sale{
  background: #9f0909;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .properties-section .container {
    gap: 5rem;
    width: 90%;
  }

  .properties-title {
    font-size: 2.6rem;
  }

  .properties-right {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .properties-image {
    height: 400px;
  }

  .properties-price {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  .properties-section {
    padding: 4.5rem 0;
  }

  .properties-section .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .properties-left {
    position: relative;
    top: 0;
  }

  .properties-title {
    font-size: 2.4rem;
  }

  .properties-text {
    font-size: 0.98rem;
  }

  .properties-right {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .properties-image {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .properties-section {
    padding: 3.5rem 0;
  }

  .properties-title {
    font-size: 2rem;
  }

  .properties-subtitle {
    font-size: 1rem;
  }

  .properties-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .properties-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .properties-image {
    height: 350px;
  }

  .properties-name {
    font-size: 1.35rem;
  }

  .properties-detail {
    font-size: 1rem;
  }

  .properties-price {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .properties-section {
    padding: 3rem 0;
  }

  .properties-title {
    font-size: 1.53rem;
  }
  .properties-subtitle {
    font-size: 0.95rem;
  }
  .properties-text {
    font-size: 0.84rem;
  }

  .properties-image {
    height: 300px;
    border-radius: 6px;
  }

  .properties-name {
    font-size: 1.25rem;
  }

  .properties-price {
    font-size: 1.45rem;
  }

  .properties-detail {
    font-size: 0.95rem;
    gap: 15px;
  }

  .status {
    padding: 10px;
  }

  .for-rent,
  .for-sale {
    padding: 4px 10px;
    font-size: 0.85rem;
  }
}
@media (max-width: 320px) {
  .properties-title {
    font-size: 1.3rem;
  }
  .properties-subtitle {
    font-size: 0.9rem;
  }
  .properties-text {
    font-size: 0.8rem;
  }
  .properties-name {
    font-size: 1.1rem;
  }
  .properties-price {
    font-size: 1.1rem;
  }
  .properties-price span{
    font-size: .8rem;
  }
  .properties-detail {
    font-size: 0.9rem;
  }
  .for-rent,
  .for-sale {
    font-size: 0.8rem;
  }
}

.process-section {
  position: relative;
  background-image: url(assets/luxury-pool-villa-spectacular-contemporary-design-digital-art-real-estate-home-house-property-generative-ai-illustration.jpg); /* Replace with your image */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  min-height: 90vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.process-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.process-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  justify-content: flex-start;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 3rem;
  max-width: 630px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-tag {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.process-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-number {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  min-width: 45px;
}

.step-content {
  border-left: 2px solid #e5e5e5;
  padding-left: 1rem;
}

.step-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.25rem;
  color: #111;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 1400px) {
  .process-container {
    padding: 4.5rem 2rem;
    background-attachment: fixed;
  }

  .process-title {
    font-size: 2.4rem;
  }

  .process-card {
    padding: 2rem 2.5rem;
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .process-section {
    background-attachment: fixed;
  }

  .process-container {
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
  }

  .process-card {
    max-width: 90%;
    padding: 2rem 2rem;
  }

  .process-title {
    font-size: 2.2rem;
  }

  .step {
    gap: 0.8rem;
  }

  .step-number {
    font-size: 1.4rem;
    min-width: 40px;
  }

  .step-title {
    font-size: 1.15rem;
  }

  .step-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {

  .process-container {
    padding: 3.5rem 1.5rem;
  }

  .process-card {
    max-width: 100%;
    padding: 1.8rem 1.6rem;
    border-radius: 18px;
  }

  .process-title {
    font-size: 1.95rem;
  }

  .process-tag {
    font-size: 0.85rem;
  }

  .step {
    margin-bottom: 1.6rem;
  }

  .step-number {
    font-size: 1.25rem;
    min-width: 34px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  .process-section {
    min-height: 80vh;
  }

  .process-container {
    padding: 3rem 1.2rem;
  }

  .process-card {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .process-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .step {
    gap: 0.6rem;
  }

  .step-number {
    font-size: 1.15rem;
    min-width: 30px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-text {
    font-size: 0.88rem;
  }
}
@media (max-width: 320px) {

  .process-title {
    font-size: 1.5rem;
  }

  .step-number {
    font-size: 1rem;
    min-width: 26px;
  }

  .step-title {
    font-size: 0.9rem;
  }

  .step-text {
    font-size: 0.8rem;
  }
}


.locations-section {
  margin: 30px 0;
  padding: 6rem 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}
.locations-section .container {
  max-width: 1400px;
}
.locations-header{
  text-align: center;
  margin-bottom: 3rem;
}
.locations-subtitle {
  display: inline-block;
  background: #000;
  padding: 5px 12px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
}
.locations-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 0.3rem;
  color: #111;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.location-grid .wide {
  grid-column: span 2;
}
.location-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image {
  width: 100%;
  border-radius: 12px;
  height: 300px;
  background-position: center;
  background-size: cover;
}
.location-info {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-top: 1rem;
  text-align: left;
}
.location-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
}
.location-properties {
  color: #777;
  font-size: 1rem;
  margin-top: 0.3rem;
}

@media (max-width: 1200px) {
  .locations-title {
    font-size: 2.3rem;
  }

  .location-grid {
    gap: 1.8rem;
  }

  .location-image {
    height: 280px;
  }
}

/* ---------- Tablets (≤ 992px) ---------- */
@media (max-width: 992px) {

  .locations-section {
    padding: 5rem 0;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Wide cards remain wide (span full row) */
  .location-grid .wide {
    grid-column: span 2;
  }

  .location-image {
    height: 260px;
  }

  .location-name {
    font-size: 1.35rem;
  }

  .location-properties {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {

  .locations-title {
    font-size: 2rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .location-grid .wide {
    grid-column: span 2; 
  }

  .location-image {
    height: 240px;
  }

  .location-name {
    font-size: 1.25rem;
  }

  .location-properties {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .locations-section {
    padding: 4rem 0;
  }

  .locations-subtitle {
    font-size: 0.9rem;
    padding: 4px 10px;
  }

  .locations-title {
    font-size: 1.75rem;
  }

  .location-grid {

    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .location-grid .wide {
    grid-column: span 1; 
  }
    

  .location-image {
    height: 200px;
    border-radius: 10px;
  }

  .location-info {
    margin-top: 0.7rem;
  }

  .location-name {
    font-size: 1.15rem;
  }

  .location-properties {
    font-size: 0.85rem;
  }
}
@media (max-width: 320px) {

  .locations-title {
    font-size: 1.5rem;
  }

  .location-name {
    font-size: 1rem;
  }

  .location-properties {
    font-size: 0.8rem;
  }
}


.agents-section{
  margin: 10px 0;
  padding: 3rem 0;
  background: #ffffff;
}
.agents-header{
  text-align: center;
}
.agents-tag {
  display: inline-block;
  background: #000;
  padding: 5px 12px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
}
.agents-title {
  margin-bottom: 25px;
  font-size: 2.9rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  color: #111;
}
.agent-card {
  display: inline-block;
  width: 300px;
  margin: 20px 15px;
  text-align: left;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-8px);
}

.agent-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  object-fit: cover;
  background-color: #ccc; 
}

.agent-info {
  padding: 15px;
}

.agent-name {
  margin: 0 0 5px 0;
  color: #333;
}

.agent-role {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.9em;
  font-weight: 500;
}

.agents-marquee {
  overflow: hidden;
  padding: 10px 0; 
}

.marquee-content {
  display: flex;
  width: fit-content; 
  animation: scroll-left 30s linear infinite; 
}

.set-a, .set-b {
  display: flex; 
  white-space: nowrap; 
}

.agents-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}

@media(max-width: 768px){
  .agents-subtitle{
    font-size: 0.9rem;
    padding: 4px 10px;
  }
  .agents-title{
    font-size: 2rem;
  }
  .agent-card{
    width: 250px;
    margin: 15px 10px;
  }
  .agent-image{
    height: 250px;
  }
}
@media(max-width: 480px){
  .agents-title{
    font-size: 1.6rem;
  }
  .agent-card{
    width: 200px;
    margin: 10px 8px;
  }
  .agent-image{
    height: 200px;
  }
}


.testimonial-section {
  margin: 20px 0;
  padding: 3rem 0;
  background: #ffffff;
}
.testimonial-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 8rem;
}
.testimonial-sticky {
  width: 35%; /* Adjust width for the text */
  /* padding: 40px 0 0 40px; */
  box-sizing: border-box;
}
.testimonial-header {
  position: sticky;
  top: 120px;
  /* flex: 1; */
}
.testimonial-subtitle {
  display: inline-block;
  background: #000;
  padding: 5px 12px;
  border-radius: 5px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 18px;
}
.testimonial-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}
.testimonial-header p{
  margin-top:15px;
  color:#555;
  line-height:1.7;
  font-size:1rem;
  max-width: 500px;
}
.testimonials{
  width: 65%;
  padding: 40px 0 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background-color: #fff;
  border: 1px solid #8a8a8a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.stars{
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.testimonial-text {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}
.testimonial-client{
  display: flex;
  align-items: center;
  gap: 15px;
  /* margin-top: 20px; */
}
.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.client-info {
  display: flex;
  flex-direction: column;
}
.client-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
}
.client-role {
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 1200px) {
  .testimonial-section .container {
    gap: 4rem;
  }

  .testimonial-title {
    font-size: 2.6rem;
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testimonial-sticky {
    width: 40%;
  }

  .testimonials {
    width: 60%;
  }
}

/* --- Tablets (max 992px) --- */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 4rem 0;
    width: 100%;
  } 
  .testimonial-section .container {
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
  }

  .testimonial-sticky {
    width: 100%;
  }

  .testimonial-header {
    position: static;
  }

  .testimonial-title {
    font-size: 2.4rem;
  }

  .testimonials {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Large (max 768px) --- */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 2rem;
  }

  .testimonial-section {
    padding: 4rem 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 25px;
  }

  .client-avatar {
    width: 45px;
    height: 45px;
  }
}

/* --- Mobile Small (max 480px) --- */
@media (max-width: 480px) {
  .testimonial-title {
    font-size: 1.8rem;
  }

  .testimonial-subtitle {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .client-name {
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  .testimonial-title {
    font-size: 1.5rem;
  }

  .testimonial-subtitle {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .client-name {
    font-size: 0.9rem;
  }
}


.faq-section {
  margin: 20px 0;
  padding: 6rem 0;
  background: #ffffff;
}
.faq-section .container {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  gap: 8rem;
  /* height: 80vh; */
}
.faq-sticky {
  box-sizing: border-box;
}
.faq-header {
  position: sticky;
  top: 120px;
  /* flex: 1; */
}
.faq-subtitle {
  display: inline-block;
  background: #000;
  padding: 5px 12px;
  border-radius: 5px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 15px;
}
.faq-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}
.faq-list{
  flex:1;
  overflow-y: auto;
  padding-right: 10px;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2rem;
}
.faq-question {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  padding-bottom: 15px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  margin-top: 10px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  display: none;
}
/* ================================
   RESPONSIVENESS FOR FAQ SECTION
   ================================ */

/* --- Large Tablets (max 1200px) --- */
@media (max-width: 1200px) {
  .faq-section .container {
    gap: 4rem;
  }

  .faq-title {
    font-size: 3rem;
  }

  .faq-question {
    font-size: 1.3rem;
  }
}

/* --- Tablets (max 992px) --- */
@media (max-width: 992px) {
  .faq-section {
    padding: 2rem 0;
  }
  .faq-section .container {
    flex-direction: column;
    gap: 3rem;
    width: 90%;
  }

  .faq-header {
    position: static; /* Remove sticky on tablets */
  }

  .faq-title {
    font-size: 2.6rem;
  }

  .faq-list {
    width: 100%;
    padding-right: 0;
    overflow-y: visible;
  }
}

/* --- Mobile Large (max 768px) --- */
@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }

  .faq-title {
    font-size: 2.6rem;
  }

  .faq-question {
    font-size: 1.2rem;
    padding-right: 20px;
  }

  .faq-question::after {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* --- Mobile Small (max 480px) --- */
@media (max-width: 480px) {
  .faq-title {
    font-size: 2.3rem;
  }

  .faq-subtitle {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-question::after {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
@media (max-width: 320px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-question::after {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.8rem;
  }
}


.contact-section.container {
  position: relative;
  height: 85vh;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1400px;
  margin: 35px auto 0;
  color: #fff;
  background-image: url('assets/alejandra-cifre-gonzalez-ylyn5r4vxcA-unsplash.jpg');
  background-position: center;
  background-size: cover; 
}
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 15%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  pointer-events: none;
}
.contact-content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  height: 700px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}
.contact-text h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-text p {
  font-size: 18px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.contact-text a{
  display: inline-block;
  width: fit-content;
  color: #000000;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.slide-effect-white {
  position: relative; 
  overflow: hidden; 
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.slide-effect-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020202; 
  z-index: -1;
  transform: translate(-100%, -100%); 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-effect-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  z-index: -2; 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-effect-white:hover {
  color:  #fff;
}

.slide-effect-white:hover::before {
  transform: translate(0, 0); 
}

.slide-effect-white:hover::after {
  transform: translate(100%, 100%); 
}
.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
  align-self: center;
}
.contact-form h2{
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
.contact-form button {
  background: #020202;
  color: white;
  width: 100%;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #dddddd;
  color: #000000;
}
/* Medium screens (tablets) */
@media (max-width: 1024px) {

  .contact-section.container { 
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 30px;
    width: auto;
  }

  .contact-text {
    text-align: left;
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .contact-text h2 {
    font-size: 42px;
  }

  .contact-text p {
    font-size: 16px;
    max-width: 90%;
    
  }

  .contact-form {
    max-width: 90%;
    padding: 25px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .contact-section.container {
    height: auto;
    padding: 40px 15px;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .contact-text {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .contact-text h2 {
    font-size: 32px;
  }

  .contact-text p {
    font-size: 14px;
    margin: 0 auto 20px auto;
  }

  .contact-text a{
    display: none;
  } 

  .contact-form {
    width: 100%;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 14px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .contact-text h2 {
    font-size: 28px;
  }

  .contact-text p {
    font-size: 13px;
  }
}

footer {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1500px;
  padding: 50px 40px;
  margin: 50px auto 0 ;
  background: #000; 
  color: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.422);
}
.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.footer-logo span {
  margin-left: 8px;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-cta-button);
}
.footer-brand p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-top: 10px;
}

/* Explore Properties Button */
.footer-btn-explore {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s;
  width: fit-content;
}

.btn-explore:hover {
  background-color: var(--color-cta-hover);
}

.btn-explore span {
  margin-left: 8px;
  font-size: 1.1em;
}

.footer-subscribe {
  flex: 1;
  max-width: 400px;
  text-align: right;
}

.footer-subscribe p {
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
}

.subscribe-form {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  flex-grow: 1;
  max-width: 250px;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #dddddd;
  color: #000;
}

.subscribe-form button {
  padding: 10px 20px;
  background-color: #dddddd;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.footer-section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text-subtle);
}

/* Social Media Icons */
.footer-social-links {
  flex: 1;
  max-width: 300px;
}

.social-icons a {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--color-cta-button);
}

/* Navigation Links */
.footer-links {
  display: flex;
  gap: 80px; 
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column ul li {
  margin-bottom: 10px;
}

.link-column ul li a {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
}

.link-column ul li a:hover {
  color: var(--color-text-subtle);
}

.link-arrow {
  margin-left: 5px;
  font-size: 0.8em;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.link-column ul li a:hover .link-arrow {
  opacity: 1;
  transform: rotate(45deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0; /* Padding for the content */
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.519);
}

.footer-attribution a {
  color: var(--color-text-subtle);
  text-decoration: none;
  margin-left: 5px;
}

.footer-attribution img {
  height: 18px; 
  vertical-align: middle;
  margin-left: 10px;
}
/* Medium screens (tablets) */
@media (max-width: 1024px) {
  footer{
    margin-left: 5px;
    margin-right: 5px;
  }
  .footer .container{
    max-width: 1400px;
  }
  .footer-top {
    align-items: flex-end;
    padding-bottom: 30px;
    gap: 30px;
  }

  .footer-brand,
  .footer-subscribe {
    max-width: 100%;
    flex: 1;
    margin-bottom: 20px;
  }


  .footer-middle {
    padding: 30px 0;
  }

  .footer-links {
    gap: 30px;
    /* align-items: center; */
    
  }

  .footer-social-links {
    margin-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* Small screens (mobiles) */
@media (max-width: 600px) {
  footer {
    padding: 30px 20px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }


  .footer-brand p {
    font-size: 1rem;
  }

  .footer-btn-explore {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
  .footer-subscribe {
    text-align: left;
    max-width: 100%;
  }

  .subscribe-form input[type="email"] {
    max-width: 100%;
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .subscribe-form button {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .footer-middle {
    flex-direction: column;
    padding: 20px 0;
    max-width: 100%;
  }

  .social-icons {
    margin-bottom: 25px;
  }

  .footer-section-title {
    font-size: 0.9rem;
  }

  .footer-links {
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
  }

  .link-column ul li a {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.1rem;
    margin-right: 12px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 15px 0;
  }

  .footer-attribution img {
    height: 16px;
  }
}
/* Smallest screens (max-width: 320px) */
@media (max-width: 320px) {
  footer {
    padding: 25px 15px;
    max-width: 100%;
    border-radius: 10px;
  }

  /* Footer Top Section */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    gap: 15px;
  }

  .footer-brand,
  .footer-subscribe {
    max-width: 100%;
    flex: unset;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-logo span {
    font-size: 1.4rem;
    margin-left: 5px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .footer-btn-explore {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-top: 8px;
  }

  .subscribe-form {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .subscribe-form input[type="email"] {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .subscribe-form button {
    width: 100%;
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  /* Footer Middle Section */
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 20px;
  }

  .footer-links {
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
  }

  .footer-section-title {
    font-size: 0.9rem;
  }

  .link-column ul li a {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.1rem;
    margin-right: 10px;
  }

  /* Footer Bottom Section */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.7rem;
    padding: 10px 0;
  }

  .footer-attribution img {
    height: 14px;
    margin-left: 5px;
  }
}
