@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  /* Navy depth ramp */
  --navy-abyss: #0C1524;
  --navy-deep: #142038;
  --navy-base: #1B2A4A;
  --navy-mid: #2C4066;
  --navy-light: #3D5A8A;

  /* Gold metallic ramp */
  --gold-shadow: #8B6914;
  --gold-dark: #A67C1A;
  --gold-base: #C5983B;
  --gold-bright: #D4AF5C;
  --gold-reflect: #E8CF8A;
  --gold-glow: #F5E6C0;

  /* Warm neutrals */
  --sand: #FAF6F0;
  --linen: #F0EBE3;
  --stone: #E5DFD5;
  --text-dark: #2D2D2D;
  --text-mid: #555555;
  --text-light: #888888;
  --white: #FFFFFF;

  /* Functional */
  --wa-green: #25D366;
  --google-blue: #4285F4;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 16px rgba(12,21,36,0.06), 0 0 0 0.5px rgba(0,0,0,0.03);
  --shadow-hover: 0 8px 30px rgba(12,21,36,0.12), 0 0 0 0.5px rgba(0,0,0,0.05);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy-base);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 21, 36, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 152, 59, 0.1);
  transition: background var(--transition);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

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

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-base));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(197, 152, 59, 0.3);
}

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

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  transition: var(--transition);
}

.nav-scrolled {
  background: rgba(12, 21, 36, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 21, 36, 0.98);
  padding: 24px 40px;
  gap: 16px;
  border-bottom: 1px solid rgba(197,152,59,0.15);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--navy-abyss) 0%, var(--navy-deep) 30%, var(--navy-base) 60%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(197,152,59,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-shadow), var(--gold-base), var(--gold-bright), var(--gold-base), var(--gold-shadow), transparent 95%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(212,175,92,0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--gold-glow);
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--gold-base);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-top: 16px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.hero-photo {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 2;
}

.hero-photo img {
  height: 520px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-base));
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 152, 59, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(197,152,59,0.35);
  color: var(--gold-bright);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(197,152,59,0.08);
  border-color: rgba(197,152,59,0.6);
}

.btn-outline-dark {
  border-color: rgba(27,42,74,0.25);
  color: var(--navy-base);
}

.btn-outline-dark:hover {
  background: rgba(27,42,74,0.05);
  border-color: rgba(27,42,74,0.5);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: var(--wa-green);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px 40px;
  background: var(--linen);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
}

.trust-item i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-sand {
  background: var(--sand);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(160deg, var(--navy-abyss), var(--navy-base));
}

.section-title {
  font-size: 2rem;
  color: var(--navy-base);
  margin-bottom: 8px;
}

.section-title-light {
  font-size: 2rem;
  color: var(--gold-glow);
  margin-bottom: 8px;
}

.gold-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-base), var(--gold-bright));
  border-radius: 2px;
  margin: 10px 0 16px;
}

.section-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
}

.section-sub-light {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

/* ============================================
   PROPERTY CARDS
   ============================================ */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prop-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.prop-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.prop-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-preventa {
  background: rgba(197,152,59,0.9);
  color: var(--white);
}

.tag-entrega {
  background: rgba(61,90,138,0.9);
  color: var(--white);
}

.tag-obra {
  background: rgba(166,124,26,0.85);
  color: var(--white);
}

.prop-card-body {
  padding: 20px 24px;
}

.prop-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-base);
  margin-bottom: 4px;
}

.prop-card-loc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 4px;
}

.prop-card-price {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 12px;
}

.prop-card-specs {
  font-size: 0.8rem;
  color: var(--navy-light);
  margin-top: 6px;
  font-weight: 400;
}

/* ============================================
   IG FEED
   ============================================ */
.ig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ig-handle {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-glow);
  font-weight: 400;
}

.ig-follow {
  font-size: 0.7rem;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border: 1px solid rgba(212,175,92,0.3);
  border-radius: 4px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.ig-follow:hover {
  background: rgba(212,175,92,0.1);
  border-color: rgba(212,175,92,0.6);
}

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

.ig-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,21,36,0.3);
  opacity: 0;
  transition: opacity var(--transition);
}

.ig-item:hover::after {
  opacity: 1;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  font-size: 1.8rem;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

/* ============================================
   ABOUT
   ============================================ */
.about-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-photo {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold-bright);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  display: block;
}

.about-name {
  font-size: 1.5rem;
  color: var(--navy-base);
  margin-bottom: 4px;
}

.about-role {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

.about-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-tag {
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 6px;
  background: var(--linen);
  color: var(--text-mid);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-rating {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy-base);
}

.reviews-stars {
  color: #F4B400;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

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

.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--sand);
  border: 0.5px solid var(--stone);
}

.review-card .stars {
  color: #F4B400;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
}

.review-card .author {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(155deg, var(--navy-abyss), var(--navy-base));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197,152,59,0.06) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-base), var(--gold-bright), var(--gold-base), transparent);
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--gold-glow);
  position: relative;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-top: 10px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 60px;
  background: var(--navy-abyss);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(197,152,59,0.08);
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.8;
}

.footer-links {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

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

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--stone);
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  min-width: 160px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold-base);
}

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

.catalog-count {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 300;
}

/* ============================================
   PROPERTY DETAIL PAGE
   ============================================ */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}

.detail-gallery .main-img {
  grid-row: 1 / -1;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 40px;
}

.detail-title {
  font-size: 2rem;
  color: var(--navy-base);
  margin-bottom: 4px;
}

.detail-location {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}

.detail-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.detail-specs {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.detail-spec {
  text-align: center;
}

.detail-spec-value {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--navy-base);
  font-weight: 500;
}

.detail-spec-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-description {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.9;
}

.detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.amenity-item i {
  color: var(--gold-base);
  font-size: 1rem;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
}

.detail-contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--sand);
  border: 0.5px solid var(--stone);
}

.detail-contact-card h4 {
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stone);
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-base);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-base), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-base), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 0 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-photo { right: 30px; }
  .hero-photo img { height: 420px; }
  .props-grid, .catalog-grid, .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-info { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero h1 { font-size: 1.8rem; }
  .hero-photo { display: none; }
  .hero-btns { flex-direction: column; }

  .trust-bar {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .section { padding: 50px 0; }
  h2, .section-title, .section-title-light { font-size: 1.5rem; }

  .props-grid, .catalog-grid, .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  .about-row { flex-direction: column; text-align: center; }
  .about-photo { width: 200px; }
  .about-tags { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .detail-gallery .main-img { grid-row: auto; }

  .footer { flex-direction: column; gap: 20px; text-align: center; padding: 30px 24px; }
  .footer-links { text-align: center; }

  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-filters { flex-direction: column; }
}
