/* =========================================
   RAINBOW GAYRİMENKUL — LUXURY CSS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7830;
  --black: #050505;
  --charcoal: #0D0D0D;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #F5F5F0;
  --gray: #888880;
  --gray-light: #AAAAAA;
  --serif: 'Cinzel', serif;
  --sans: 'Raleway', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow: 0 0 40px rgba(201, 168, 76, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: default;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ---- SELECTION ---- */
::selection {
  background: var(--gold-dark);
  color: var(--black);
}

/* ---- PRELOADER ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: var(--dark3);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0;
  animation: fill 2s ease forwards;
}

@keyframes fill {
  to {
    width: 100%;
  }
}

/* ---- CURSOR ---- */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s;
}

.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transition: transform 0.3s ease, opacity 0.3s;
}

/* ---- NAVBAR ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: #000;
  padding: 2px;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  padding: 3px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}

.nav-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.2rem 0.4rem;
}

.lang-btn.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.lang-sep {
  color: var(--dark3);
  font-size: 0.7rem;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* ---- HERO ---- */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_background.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.1) 30%, rgba(5, 5, 5, 0.25) 60%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(to right, rgba(5, 5, 5, 0.4) 0%, transparent 40%, transparent 60%, rgba(5, 5, 5, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.0s forwards;
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gray-light);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---- SECTION COMMONS ---- */
section {
  padding: 8rem 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.section-sub {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 600px;
}

/* ---- STATS BAND ---- */
#stats {
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--charcoal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ---- PROPERTIES ---- */
#properties {
  background: var(--dark);
}

.props-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.prop-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.prop-card:first-child {
  grid-row: span 2;
}

.prop-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.75);
}

.prop-card:first-child .prop-img {
  height: 100%;
  min-height: 704px;
}

.prop-card:hover .prop-img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 60%);
  transition: var(--transition);
}

.prop-card:hover .prop-overlay {
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 10%, rgba(5, 5, 5, 0.4) 100%);
}

.prop-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.prop-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.prop-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prop-meta {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.prop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  transform: translateY(10px);
  opacity: 0;
}

.prop-card:hover .prop-btn {
  transform: translateY(0);
  opacity: 1;
}

.prop-btn:hover {
  background: var(--gold-light);
}

.prop-btn svg {
  width: 12px;
  height: 12px;
}

/* ---- WHY US ---- */
#why {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.8);
}

.why-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow);
}

.why-badge-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.why-badge-txt {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-feat {
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.5rem;
  transition: var(--transition);
}

.why-feat:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.why-feat-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-feat-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

.why-feat-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-feat-text {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- TEAM ---- */
#team {
  background: var(--charcoal);
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header .section-divider {
  margin: 1rem auto 1.5rem;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--dark2);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%) brightness(0.9);
  transition: var(--transition);
}

.team-card:hover .team-img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

.team-info {
  padding: 1.1rem 1rem 1rem;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.team-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

.team-title {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.team-contact {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.team-wa,
.team-ph {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  transition: var(--transition);
  border: 1px solid;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-wa {
  background: #25D366;
  color: var(--black);
  border-color: #25D366;
}

.team-wa:hover {
  background: #1aad4f;
}

.team-ph {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dark);
}

.team-ph:hover {
  background: var(--gold);
  color: var(--black);
}

.team-wa svg,
.team-ph svg {
  width: 12px;
  height: 12px;
}

/* ---- BLOG ---- */
#blog {
  background: var(--black);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}

.blog-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
  transition: var(--transition);
}

.blog-card:first-child .blog-img {
  height: 400px;
}

.blog-card:hover .blog-img {
  filter: brightness(0.4);
  transform: scale(1.03);
}

.blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.blog-cat {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.3;
}

.blog-card:first-child .blog-title {
  font-size: 1.8rem;
}

.blog-date {
  font-size: 0.6rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* ---- MAP ---- */
#location {
  background: var(--dark);
  padding: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.location-info {
  padding: 8rem 5rem;
  background: var(--charcoal);
}

.location-info .section-divider {
  margin: 1rem 0 2rem;
}

.location-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

.location-text-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.location-text-val {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
  filter: grayscale(40%) contrast(1.1);
}

/* ---- CONTACT ---- */
#contact {
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 0.5rem;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

.contact-info-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.contact-link:hover .contact-link-icon {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.contact-link-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 2;
}

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.78rem;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--gray);
}

.footer-copy span {
  color: var(--gold-dark);
}

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 998;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.wa-float-btn:hover {
  background: #1aad4f;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.wa-float-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6);
  }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  nav {
    padding: 1.5rem 2rem;
  }

  nav.scrolled {
    padding: 1rem 2rem;
  }

  .container {
    padding: 0 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .blog-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .prop-card:first-child {
    grid-row: unset;
  }

  .prop-card:first-child .prop-img {
    min-height: 300px;
  }

  .prop-img {
    height: 280px;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .blog-card:first-child {
    grid-column: unset;
  }

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

  .location-info {
    padding: 4rem 2rem;
  }

  section {
    padding: 5rem 0;
  }

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

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

  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .wa-float-btn {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .wa-float-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

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

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