/* =====================================
   GLOBAL STYLES
===================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --gold: #d4af37;
  --gold-light: #f0d879;
  --white: #ffffff;
  --gray: #8f8f8f;
  --border: rgba(212, 175, 55, 0.25);
  --transition: all 0.35s ease;
}
/* ====================================
   TYPOGRAPHY SYSTEM
==================================== */

:root {
  --font-heading: "Fraunces", serif;
  --font-ui: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* BODY */



/* MAIN HEADINGS */

h1,
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* SECTION TITLES */

h2,
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* CARD TITLES */

.property-content h3,
.location-overlay h3,
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* NAVIGATION */

.nav-menu a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* BUTTONS */

.gold-btn,
.property-badge,
.property-meta,
.footer h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SECTION LABELS */

.section-heading span,
.contact-info span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* BODY COPY */

p,
.property-content p,
.location-overlay p,
.contact-info p,
.footer p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #bdbdbd;
}

/* FOOTER LINKS */

.footer li,
.footer a {
  font-family: var(--font-body);
  font-size: 15px;
}

/* PRICES */

.property-content h4 {
  font-family: var(--font-ui);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}
.slider-section {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;

  animation: marquee 30s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.location-card {
  position: relative;
  width: 350px;
  height: 450px;
  flex-shrink: 0;

  overflow: hidden;
  border-radius: 12px;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 32px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.45),
    transparent
  );
}

/* TITLE AREA */
.location-overlay h3 {
  margin: 0;

  font-size: 3rem;
  line-height: 1.1;

  /* same area on every card */
  height: 140px;

  display: flex;
  align-items: flex-end;

  color: #fff;
}

/* DESCRIPTION AREA */
.location-overlay p {
  margin-top: 20px;

  height: 110px;

  color: #d4af37;

  line-height: 1.7;
  font-size: 1.05rem;

  overflow: hidden;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
ul {
  list-style: none;
}

.container {
  width: min(1280px, 92%);
  margin: auto;
}

section {
  padding: 110px 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading span {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 56px;
  font-weight: 600;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  transition: all 0.3s ease;
}

.social-icon img {
  width: 22px;
  height: 22px;

  object-fit: contain;

  filter: brightness(0) invert(1);

  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);

  transform: translateY(-4px);
}

.social-icon:hover img {
  filter: brightness(0);
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.golden-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  padding: 1px 14px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.gold-btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .gold-btns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .gold-btn {
    display: none;
  }
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.outline-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* =====================================
   PRELOADER
===================================== */

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  color: var(--gold);
  font-size: 48px;
  letter-spacing: 10px;
  font-family: "Cormorant Garamond", serif;
}

/* =====================================
   HEADER
===================================== */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  width: 80% !important;
}
.logo span {
  display: block;
  font-size: 30px;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: "Cormorant Garamond", serif;
}

.logo small {
  color: white;
  letter-spacing: 5px;
}

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

.nav-menu a {
  color: white;
  font-size: 15px;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

#mobileMenuBtn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
}
@media (max-width: 768px) {
  .header {
    background-color: #000;
  }
  #mobileMenuBtn {
    display: block;
    color: white;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 0;

    width: 100%;

    background: black;

    display: none;

    z-index: 9999;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;

    padding: 20px;
    gap: 20px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    color: white;
    font-size: 18px;
  }
}

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

.hero-section {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c")
    center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45)
  );
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 5;
}

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  color: var(--gold);
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .hero-tag {
    margin-top: 3rem !important;
  }
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px !important;
  }
}

.hero-content p {
  color: #ddd;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* =====================================
   SEARCH PANEL
===================================== */

.search-panel {
  margin-top: -70px;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.search-card {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.search-item label {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 13px;
}

.search-item select {
  width: 100%;
  height: 55px;
  background: #0f0f0f;
  color: white;
  border: 1px solid var(--border);
  padding: 0 15px;
}

.search-btn {
  height: 55px;
  align-self: end;
  background: var(--gold);
  color: black;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
/* =====================================
   STATS SECTION
===================================== */

.stats-section {
  background: #050505;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  font-size: 70px;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-box p {
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

/* =====================================
   ABOUT SECTION
===================================== */

.about-section {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-content .section-tag {
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.about-content p {
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* =====================================
   PROPERTIES SECTION
=/* ====================================
   PROPERTIES SECTION
==================================== */

.properties-section {
  background: var(--black-light);
}

/* ====================================
   SLIDER WRAPPER
==================================== */

.property-slider {
  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  /* scroll-behavior: smooth; */

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.property-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .property-slider {
    overflow: hidden;
  }

  .property-track {
    gap: 20px;
  }

  .property-card {
    width: calc(100vw - 50px);
    max-width: 100%;
  }
}

/* ====================================
   TRACK
==================================== */

.property-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

/* ====================================
   CARD
==================================== */

.property-card {
  width: 380px;
  flex-shrink: 0;

  background: #111;
  border: 1px solid var(--border);
  border-radius: 18px;

  overflow: hidden;

  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ====================================
   IMAGE
==================================== */

.property-image {
  position: relative;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.property-card:hover img {
  transform: scale(1.08);
}

/* ====================================
   BADGE
==================================== */

.property-badge {
  position: absolute;

  top: 20px;
  left: 20px;

  background: var(--gold);
  color: #000;

  padding: 8px 16px;

  border-radius: 40px;

  font-size: 12px;
  font-weight: 700;
}

/* ====================================
   CONTENT
==================================== */

.property-content {
  padding: 28px;
}

.property-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.property-content p {
  color: #bcbcbc;
  margin-bottom: 20px;
}

.property-content h4 {
  font-size: 30px;
  color: var(--gold);
}

/* ====================================
   BOTTOM CENTER ARROWS
==================================== */

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 16px;

  margin-top: 40px;
}

.slider-btn {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  border: 1px solid var(--border);

  border-radius: 12px;

  color: var(--gold);

  font-size: 24px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);

  color: #000;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* ====================================
   TABLET
==================================== */

@media (max-width: 992px) {
  .property-card {
    width: 340px;
  }

  .property-content h3 {
    font-size: 28px;
  }

  .property-content h4 {
    font-size: 26px;
  }
}
.property-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.property-card-link:hover {
  color: inherit;
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {
  .property-track {
    gap: 20px;
  }

  .property-card {
    width: 280px;
  }

  .property-image img {
    height: 220px;
  }

  .property-content {
    padding: 20px;
  }

  .property-content h3 {
    font-size: 24px;
  }

  .property-content h4 {
    font-size: 22px;
  }

  .slider-controls {
    margin-top: 30px;
    gap: 12px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
/* =====================================
   SERVICES SECTION
===================================== */

.services-section {
  background: #080808;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  padding: 40px 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.service-card p {
  color: #c9c9c9;
}

/* =====================================
   LOCATIONS SECTION
===================================== */

.locations-section {
  background: var(--black);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.location-card img {
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.location-overlay h3 {
  font-size: 42px;
  margin-bottom: 10px;
}

.location-overlay p {
  color: var(--gold);
}
/* =====================================
   TEAM SECTION
===================================== */

.team-section {
  background: #080808;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 28px;
  margin-top: 20px;
}

.team-card p {
  color: var(--gold);
  margin: 10px 0 25px;
}

/* =====================================
   TESTIMONIALS
===================================== */

.testimonials-section {
  background: var(--black);
}

.testimonial-slider {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-size: 24px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-slide h4 {
  color: var(--gold);
  font-size: 22px;
}

/* =====================================
   CTA SECTION
===================================== */

.cta-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750") center
      center/cover;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 70px;
  margin-bottom: 25px;
}

.cta-content p {
  color: #ddd;
  margin-bottom: 35px;
  font-size: 18px;
}

/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {
  background: #080808;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info span {
  color: var(--gold);
  letter-spacing: 3px;
}

.contact-info h2 {
  font-size: 60px;
  margin: 20px 0;
}

.contact-info p {
  color: #c9c9c9;
  margin-bottom: 25px;
}

.contact-info ul li {
  margin-bottom: 18px;
  color: #ddd;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  background: #111;
  border: 1px solid var(--border);
  color: white;
  outline: none;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

/* =====================================
   NEWSLETTER
===================================== */

.newsletter-section {
  background: #050505;
}

.newsletter-box {
  padding: 70px;
  border: 1px solid var(--border);
  border-radius: 25px;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 52px;
  margin-bottom: 30px;
}

.newsletter-box form {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.newsletter-box input {
  width: 400px;
  padding: 16px 20px;
  background: #111;
  color: white;
  border: 1px solid var(--border);
}

.newsletter-box button {
  padding: 16px 28px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  font-weight: 700;
}

/* =====================================
   FOOTER
===================================== */

/* ================= FOOTER ================= */

.footer {
  background: #000;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LOGO */

.logo-footer {
  margin-bottom: 24px;
}

.logo-footer img {
  width: 200px;
  height: auto;
  display: block;
}

/* CONTENT */

.footer h3,
.footer h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 22px;
}

.footer p,
.footer li {
  color: #cfcfcf;
  margin-bottom: 10px;
  line-height: 1.7;
}

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

.footer li {
  cursor: pointer;
  transition: var(--transition);
}

.footer li:hover {
  color: var(--gold);
}

/* FIRST COLUMN */

.footer-grid > div:first-child p {
  max-width: 320px;
}

/* SOCIAL ICONS */

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  transition: all 0.3s ease;
}

.social-icon img {
  width: 22px;
  height: 22px;

  object-fit: contain;

  filter: brightness(0) invert(1);

  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);

  transform: translateY(-4px);
}

.social-icon:hover img {
  filter: brightness(0);
}

/* FOOTER BOTTOM */

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;

  text-align: center;

  padding: 25px 0;
}

.footer-bottom p {
  margin: 0;
  color: #9c9c9c;
  font-size: 14px;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }

  .logo-footer img {
    width: 190px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logo-footer {
    margin-bottom: 20px;
  }

  .logo-footer img {
    width: 180px;
  }

  .footer h4 {
    margin-bottom: 15px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
}

/* =====================================
   FLOATING BUTTONS
===================================== */

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgb(179, 153, 9);
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 999;
  font-weight: 700;
}

#backToTop {
  position: fixed;
  right: 30px;
  bottom: 95px;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--gold);
  color: black;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
}

/* =====================================
   ANIMATIONS
===================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1100px) {
  .property-grid,
  .services-grid,
  .team-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .property-grid,
  .services-grid,
  .team-grid,
  .locations-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  #mobileMenuBtn {
    display: block;
  }

  .newsletter-box {
    padding: 40px 25px;
  }

  .newsletter-box form {
    flex-direction: column;
  }

  .newsletter-box input {
    width: 100%;
  }

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

  .cta-content h2 {
    font-size: 42px;
  }

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

  .about-content h2 {
    font-size: 42px;
  }
}
