*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-size: 16px !important;
}

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --cream: #F5F0E8;
  --white: #FAFAF8;
  --text-muted: #888;
  --border: rgba(201, 169, 110, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;

}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* ── LOGO ── */
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold) !important;
  line-height: 1;
}

.navbar-brand span {
  color: var(--cream);
}

/* ── NAV LINKS ── */
.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65) !important;
  padding: 6px 20px !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── CTA BUTTON ── */
.btn-nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 9px 24px;
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}






/* HERO */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(135deg, #0A1628 0%, #0D2440 30%, #0A3060 60%, #0A1628 100%);
  z-index: 0;
}

/* Ionian Sea simulation */
.hero-sea {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 70%, rgba(14, 80, 140, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(20, 100, 160, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 70% 80%, rgba(8, 60, 120, 0.5) 0%, transparent 70%);
  z-index: 1;
  animation: seaShimmer 8s ease-in-out infinite alternate;
}

@keyframes seaShimmer {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 2;
  opacity: 0.4;
}


.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  padding: 0 20px;
  /* Reduced side padding for better mobile fit */

  /* Animation settings */
  opacity: 0;
  transform: translateY(70px);
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.6);
  max-width: 400px;
  line-height: 2;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--cream);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: none;
}

.btn-ghost::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s;
}

.btn-ghost:hover {
  color: var(--gold);
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  animation: heroFade 1.5s ease forwards 0.5s;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* STATS BAR */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;

  gap: 0;
}

.stat-item {
  text-align: center;

  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SECTION BASE */
section {
  position: relative;
  overflow: hidden;
}

.section-tag {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  color: white;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ABOUT */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--dark-2);
}

.about-text p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 20px;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 32px;
}

.about-card-main {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, #0D2440 0%, #0A3060 50%, #081828 100%);
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.building-silhouette {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 280px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 8px;
}

.building-window {
  background: rgba(201, 169, 110, 0.1);
  animation: windowBlink 4s ease-in-out infinite;
}

.building-window:nth-child(3n) {
  animation-delay: 0.5s;
}

.building-window:nth-child(3n+1) {
  animation-delay: 1s;
}

@keyframes windowBlink {

  0%,
  100% {
    background: rgba(201, 169, 110, 0.08);
  }

  50% {
    background: rgba(201, 169, 110, 0.2);
  }
}

.about-card-overlay {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 180px;
  background: var(--gold);
  color: var(--dark);
  padding: 28px;
}

.about-card-overlay .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.about-card-overlay .num-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* FEATURES */
.features {
  padding: 120px 60px;
  background: var(--dark);
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.features-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(245, 240, 232, 0.55);
  align-self: end;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--dark-2);
  padding: 48px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  background: var(--dark-3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 20px;
  transition: border-color 0.3s;
}

.feature-card:hover .feature-icon {
  border-color: var(--gold);
}

.feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--cream);
}

.feature-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.5);
}

/* RESIDENCES */
.residences {
  padding: 120px 60px;
  background: var(--dark-2);
}

.residences-header {
  text-align: center;
  margin-bottom: 80px;
}

.res-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  background: rgba(201, 169, 110, 0.1);
}

.res-card {
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  cursor: none;
}

.res-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.res-card:hover .res-card-bg {
  transform: scale(1.05);
}

.res-card:nth-child(1) .res-card-bg {
  background: url('image/images12 (1).jpeg');
}

.res-card:nth-child(2) .res-card-bg {
  background: url('image/images12 (2).jpeg');
  background-position: center;
}

.res-card:nth-child(3) .res-card-bg {
  background: url('image/images12 (4).jpeg');
}

.res-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
}

.res-card-content {
  position: relative;
  z-index: 2;
}

.res-type {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.res-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}

.res-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.res-spec {
  font-size: 10px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 1px;
}

.res-spec strong {
  color: var(--cream);
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.res-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}

.res-link:hover {
  gap: 18px;
}

/* PROCESS */
.process {
  padding: 120px 60px;
  background: var(--dark);
}

.process-header {
  margin-bottom: 80px;
  max-width: 600px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--border);
}

.process-step {
  padding: 0 40px 0 0;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 32px;
  background: var(--dark);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.step-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.5);
}

/* LOCATION */
.location {
  padding: 120px 60px;
  background: var(--dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.location-map-placeholder {
  height: 500px;
  background: linear-gradient(135deg, #0A1E38 0%, #0D3060 50%, #0A1828 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
}

.map-pin::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.6);
}

.map-pin::after {
  content: 'Vlorë, Albania';
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  white-space: nowrap;
  text-transform: uppercase;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.location-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.loc-highlight {
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
}

.loc-highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 4px;
}

.loc-highlight-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* BLOG */
.blog {
  padding: 120px 60px;
  background: var(--dark);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.blog-card {
  background: var(--dark-2);
  overflow: hidden;
  transition: background 0.3s;
}

.blog-card:hover {
  background: var(--dark-3);
}

.blog-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-card:nth-child(1) .blog-img {
  height: 320px;
}

.blog-img-inner {
  inset: 0;
  position: absolute;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-inner {
  transform: scale(1.06);
}

.blog-card:nth-child(1) .blog-img-inner {
  background: linear-gradient(135deg, #0A2040, #1A4060);
}

.blog-card:nth-child(2) .blog-img-inner {
  background: linear-gradient(135deg, #1A2A10, #0A3020);
}

.blog-card:nth-child(3) .blog-img-inner {
  background: linear-gradient(135deg, #2A1A10, #401A08);
}

.blog-content {
  padding: 32px;
}

.blog-cat {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-date {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* CONTACT / CTA */
.cta {
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 60px auto;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.contact-row a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-row a:hover {
  color: var(--gold);
}

/* FOOTER */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* FADE IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-toggler {
  background-color: wheat;
}

.button {
  padding: 1em 1.1em;
  border: none;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #C9A96E;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 1px solid #C9A96E;
}

.button:hover {
  color: #000000;
  transform: scale(1.1);
  outline: 2px solid #030303;
  box-shadow: 4px 5px 17px -4px #C9A96E;
}

.button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #f1dcb4;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.button:hover::before {
  width: 250%;
}

/* Container for the form group */
.fcf-form-group {
  margin-bottom: 20px;
  text-align: left;
  /* Keeps labels aligned to the left */
}

/* Style for the Label */
.fcf-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  /* White text to stand out against the background */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Style for the Input Box */
.fcf-form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  /* Semi-transparent */
  color: #fff;
  backdrop-filter: blur(5px);
  /* Blurs the background image slightly behind the input */
  transition: all 0.3s ease;
  box-sizing: border-box;
  /* Ensures padding doesn't break the width */
}

/* Input Hover and Focus Effects */
.fcf-form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: #007bff;
  /* Add a primary color glow */
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Placeholder color */
.fcf-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.about-bg {
  height: 60vh !important;
  text-align: center;
  background: url('/image/backkkk.jpg') rgba(0, 0, 0, .7);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 1;
  z-index: -1;
  background-image: url('/image/backkkk.jpg');

  row-gap: 30px;
  column-gap: 30px;

}

a {
  color: white;
  text-decoration: none;
}

@media (max-width: 900px) {


  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
  }

  .about,
  .location {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  .features {
    padding: 80px 24px;
  }

  .features-header,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .residences {
    padding: 80px 24px;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 80px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .blog {
    padding: 80px 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    gap: 20px;
  }

  .cta {
    padding: 80px 24px;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }

  .cursor-follower {
    display: none !important;
  }

  .footer-links {
    flex-direction: column;
  }

  .contact-row {
    flex-direction: column;
  }

  .img-43 {
    display: none !important;
  }
}

@media (max-width: 768px) {

  /* 1. Adjust the Main Content Area */
  .hero-content {
    padding: 0 30px;
    /* Give text a bit more breathing room on the edges */
    text-align: center;
    /* Force center alignment for the "selfie" focus */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 2. Scale down the massive Title */
  .hero-title {
    font-size: clamp(40px, 12vw, 54px);
    /* Smaller on mobile so it doesn't overflow */
    line-height: 1.1;
    margin-bottom: 20px;
  }

  /* 3. Center the Tag and Subtitle */
  .hero-tag {
    justify-content: center;
    /* Centers the gold line and text */
    letter-spacing: 3px;
    font-size: 8px;
  }

  .hero-tag::before {
    width: 25px;
    /* Shorter line on mobile */
  }

  .hero-subtitle {
    margin: 0 auto 32px;
    /* Centers the paragraph block */
    font-size: 10px;
    line-height: 1.8;
  }

  /* 4. Stack Buttons Vertically */
  .hero-actions {
    flex-direction: column;
    /* Stack buttons so they don't squash */
    gap: 24px;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    /* Full width button is easier to tap on mobile */
    text-align: center;
    padding: 14px 0;
  }

  /* 5. Hide or reposition the Scroll indicator */
  .hero-scroll {
    right: 50%;
    transform: translateX(50%);
    /* Move to bottom center instead of bottom right */
    bottom: 30px;
  }

  .scroll-line {
    height: 40px;
    /* Shorter line to save space */
  }

  .img-43 {
    display: none !important;
  }

  .hero {
    height: 93vh;
    padding-top: 33px;
    padding-bottom: 60px;
  }
}