/* ===== Merit Properties – Luxury Modern Website ===== */
:root {
  --green-dark: #061a14;
  --green-main: #0a2f24;
  --green-mid: #0f3d30;
  --green-light: #14523d;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-glow: rgba(201, 162, 39, 0.45);
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #1a1a1a;
  --glass: rgba(255, 255, 255, 0.055);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: linear-gradient(180deg, #041510 0%, #061a14 40%, #0a2f24 100%);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ===== Animations ===== */
@keyframes fadeUp {
  from { 
    opacity: 0; 
    transform: translateY(40px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}
@keyframes fadeUpLeft {
  from { 
    opacity: 0; 
    transform: translateX(-40px) translateY(20px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0) translateY(0);
  }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
  50% { box-shadow: 0 4px 40px rgba(201, 162, 39, 0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(10px); }
}
@keyframes soft-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.2); }
  50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.45); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUpLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-text {
  text-shadow: 0 0 25px var(--gold-glow), 0 0 50px rgba(201, 162, 39, 0.3);
}

/* ===== Typography ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  max-width: 640px;
  color: rgba(247, 243, 235, 0.72);
  font-size: 1.02rem;
  font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin-inline: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.82rem; }
.btn-inquire {
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 100%;
  margin-top: 0.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-inquire:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.55);
}
.btn-inquire:active {
  transform: translateY(-1px) scale(0.98);
}
.glow-btn { animation: pulse-glow 2.8s ease-in-out infinite; }

/* ===== Glow cards ===== */
.glow-card {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.06), 0 20px 45px rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}
.glow-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 35px var(--gold-glow), 0 28px 55px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}

/* ===== Badges (different colors) ===== */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.badge-emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.35); }
.badge-gold { background: rgba(201, 162, 39, 0.25); color: var(--gold-light); border: 1px solid rgba(201, 162, 39, 0.45); }
.badge-sapphire { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.35); }
.badge-ruby { background: rgba(239, 68, 68, 0.18); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

/* ===== Floating buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  animation: float 3.5s ease-in-out infinite;
}
.float-btn:nth-child(2) { animation-delay: 0.25s; }
.float-btn:nth-child(3) { animation-delay: 0.5s; }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.phone { background: linear-gradient(135deg, #c9a227, #e8c547); color: #0a2f24; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.telegram { background: #0088cc; }
.float-btn:hover { transform: scale(1.12); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0.85rem 0;
  background: rgba(4, 21, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex;
  align-items: center;
}
.logo-full {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(201, 162, 39, 0.35));
  transition: var(--transition);
}
.logo:hover .logo-full {
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(232, 197, 71, 0.55));
}
.nav { display: flex; gap: 2.1rem; }
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.82);
  position: relative;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(4, 21, 16, 0.94) 0%,
    rgba(6, 26, 20, 0.85) 30%,
    rgba(10, 47, 36, 0.65) 55%,
    rgba(10, 47, 36, 0.35) 80%,
    rgba(10, 47, 36, 0.2) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  max-width: 620px;
  padding: 5rem 0 4rem;
  text-align: left;
  margin-left: max(4%, calc((100% - 1200px) / 2));
  margin-right: auto;
  box-sizing: border-box;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  color: #f7f3eb;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-title .line { display: block; }
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
}
.gold-gradient {
  background: linear-gradient(135deg, #e8c547 0%, #c9a227 40%, #f0d878 70%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.35));
}
.hero-subtitle {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(247, 243, 235, 0.82);
  margin-bottom: 2.4rem;
  max-width: 480px;
  margin-inline: 0;
  font-weight: 400;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(201, 162, 39, 0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-bounce 1.5s infinite;
}

/* ===== Merkato ===== */
.merkato {
  padding: 6rem 0;
  background: linear-gradient(165deg, #061a14 0%, #0a2f24 35%, #0f3d30 70%, #0a2f24 100%);
}
.merkato-images {
  margin-bottom: 3rem;
}
.merkato-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.merkato-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.merkato-main-image:hover img {
  transform: scale(1.03);
}
.merkato-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.thumb-card {
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpThumb 0.8s ease forwards;
}
.thumb-card:nth-child(1) { animation-delay: 0.2s; }
.thumb-card:nth-child(2) { animation-delay: 0.4s; }
.thumb-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.thumb-card:hover img {
  transform: scale(1.05);
}
@keyframes fadeUpThumb {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.feature-card {
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}
.feature-card p { font-size: 0.85rem; color: rgba(247, 243, 235, 0.68); }

.links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.link-card:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  transform: translateY(-3px);
}
.link-icon { font-size: 1.5rem; }
.link-card strong { display: block; font-size: 0.92rem; font-weight: 600; }
.link-card small { font-size: 0.78rem; color: rgba(247, 243, 235, 0.52); }

/* ===== Listings ===== */
.listings {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a2f24 0%, #061a14 50%, #041510 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  background: linear-gradient(165deg, #fffef9 0%, #f9f5eb 50%, #f3ebd8 100%);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(201, 162, 39, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-grid .price-card .btn-inquire {
  margin-top: auto;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, #fffef9 0%, #faf6eb 50%, #f5edd8 100%);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 12px 40px rgba(201, 162, 39, 0.25), 0 0 50px rgba(201, 162, 39, 0.15);
  animation: soft-glow 3s ease-in-out infinite;
}
.price-size {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a2f24;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.price-original {
  font-size: 0.82rem;
  color: rgba(10, 47, 36, 0.45);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}
.price-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.discount-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(201, 162, 39, 0.18);
  color: #a8841a;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.price-now { font-size: 1.3rem; font-weight: 700; color: #0a2f24; }
.price-features { list-style: none; margin-bottom: 1.5rem; text-align: left; }
.price-features li {
  font-size: 0.85rem;
  color: rgba(10, 47, 36, 0.72);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Piassa cards – same layout & style as Merkato */
.piassa-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.piassa-units .price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.piassa-units .price-size {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a2f24;
  margin-bottom: 0.35rem;
}
.piassa-units .unit-area {
  font-size: 0.9rem;
  color: #a8841a;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.piassa-units .price-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.piassa-units .btn-inquire {
  margin-top: auto;
}
.pricing-info {
  margin-top: 2.5rem;
  text-align: center;
}
.pricing-note {
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.65);
  max-width: 700px;
  margin: 0 auto 1.75rem;
}
.pricing-note strong {
  color: var(--gold-light);
}
.selling-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.selling-points .point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: var(--cream);
  transition: var(--transition);
}
.selling-points .point:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.point-icon {
  font-size: 1.1rem;
}

/* ===== Piassa Section ===== */
.piassa-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, #041510 0%, #0a2f24 40%, #0f3d30 75%, #061a14 100%);
}
.piassa-hero {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.piassa-hero .image-card { border-radius: var(--radius); overflow: hidden; }
.piassa-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.piassa-hero .image-card:hover img { transform: scale(1.03); }
.unit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.unit-area {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.unit-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.unit-card ul li {
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.72);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.unit-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.amenities-row { margin-bottom: 3rem; }
.amenities-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.amenity {
  padding: 0.55rem 1.1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.85);
  transition: var(--transition);
}
.amenity:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: var(--gold);
}

/* ===== The Merit Standard From Above ===== */
.standard-above {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.standard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.standard-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.standard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 21, 16, 0.75) 0%,
    rgba(6, 26, 20, 0.65) 40%,
    rgba(4, 21, 16, 0.8) 100%
  );
}
.standard-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 4rem 0;
}
.standard-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #f7f3eb;
  margin-bottom: 1.25rem;
}
.standard-title .gold {
  color: var(--gold-light);
}
.standard-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}
.standard-desc {
  font-size: 1.1rem;
  color: rgba(247, 243, 235, 0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Projects / Kasanchis ===== */
.projects {
  padding: 5rem 0;
  background: linear-gradient(180deg, #061a14 0%, #0a2f24 60%, #041510 100%);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-inline: auto;
}
.project-card {
  background: var(--glass);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project-image { height: 200px; overflow: hidden; }
.project-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.project-placeholder.kasanchis {
  background: linear-gradient(135deg, #1f1f1f, #0d0d0d);
  color: rgba(247, 243, 235, 0.55);
}
.project-info { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.project-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; }
.project-info p {
  font-size: 0.92rem;
  color: rgba(247, 243, 235, 0.68);
  margin-bottom: 1.25rem;
  flex: 1;
}
.project-meta { margin-bottom: 1.25rem; }

/* ===== About ===== */
.about {
  padding: 6rem 0;
  background: linear-gradient(165deg, #041510 0%, #0a2f24 45%, #0f3d30 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: rgba(247, 243, 235, 0.72);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.value {
  padding: 0.9rem 1.1rem;
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition);
}
.value:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
}
.about-visual { display: flex; justify-content: center; }
.about-logo {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: soft-glow 4s ease-in-out infinite;
}
.about-logo img {
  max-width: 280px;
  width: 100%;
  filter: brightness(0) invert(1) drop-shadow(0 0 25px var(--gold-glow));
}

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a2f24 0%, #061a14 40%, #041510 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-item { margin-bottom: 1.75rem; }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-item a,
.contact-item p {
  font-size: 1.02rem;
  color: rgba(247, 243, 235, 0.85);
  font-weight: 500;
}
.contact-item a:hover { color: var(--gold); }
.contact-cta {
  background: linear-gradient(160deg, rgba(20, 82, 61, 0.5), rgba(10, 47, 36, 0.9));
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.contact-cta p {
  color: rgba(247, 243, 235, 0.7);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Map with huge gradient overlay */
.map-wrapper {
  position: relative;
  margin-top: 3.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(25%) contrast(1.08) brightness(0.92);
}
.map-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(4, 21, 16, 0.95) 0%,
    rgba(6, 26, 20, 0.8) 22%,
    rgba(10, 47, 36, 0.5) 45%,
    rgba(10, 47, 36, 0.22) 70%,
    transparent 100%
  );
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #041510 0%, #020d0a 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}
.footer-brand p { font-size: 0.88rem; color: rgba(247, 243, 235, 0.52); }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.68);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p { font-size: 0.78rem; color: rgba(247, 243, 235, 0.38); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .piassa-units { grid-template-columns: 1fr; }
  .merkato-main-image img { height: 360px; }
  .thumb-card img { height: 180px; }
}
@media (max-width: 768px) {
  .logo-full { height: 38px; }
  .header { padding: 0.7rem 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(4, 21, 16, 0.98);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }

  /* Hero – cleaner mobile */
  .hero { min-height: 100svh; }
  .hero-content {
    width: 90%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 5.5rem 0 3rem;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.35rem, 9vw, 3.3rem);
    line-height: 1.05;
    margin-bottom: 0.4rem;
  }
  .hero-tagline {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 340px;
    margin-inline: auto;
    margin-bottom: 1.75rem;
    line-height: 1.55;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Feature cards – tighter */
  .features-row, .links-row, .pricing-grid,
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-row { gap: 0.7rem; margin-bottom: 1.75rem; }
  .feature-card {
    padding: 1rem 1.1rem;
    border-radius: 14px;
  }
  .feature-icon {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
  }
  .feature-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
  }
  .feature-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* Other sections */
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .merkato-main-image img { height: 240px; }
  .merkato-thumbs { grid-template-columns: 1fr; gap: 0.75rem; }
  .thumb-card img { height: 180px; }
  .price-card { padding: 1.35rem 1.2rem; }
  .selling-points { flex-direction: column; align-items: center; gap: 0.75rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .floating-buttons { bottom: 1.1rem; right: 1rem; gap: 0.65rem; }
  .float-btn { width: 48px; height: 48px; }
  .map-wrapper { height: 320px; margin-top: 2rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 4.8rem 0 2.5rem; width: 88%; }
  .hero-title { font-size: clamp(2.05rem, 10vw, 2.7rem); }
  .hero-tagline { font-size: clamp(1.25rem, 6vw, 1.65rem); }
  .hero-subtitle { font-size: 0.88rem; max-width: 300px; }
  .hero-cta .btn { max-width: 100%; padding: 0.9rem 1.25rem; }
  .feature-card { padding: 0.85rem 0.95rem; }
  .feature-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .feature-card h3 { font-size: 0.88rem; }
  .feature-card p { font-size: 0.75rem; }
  .price-card { padding: 1.25rem 1.1rem; }
  .section-title { font-size: 1.55rem; }
  .section { padding: 3rem 0; }
}
