.premium-hero-section {
  background: #0a0a0a;
  background: linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.88)),
              url('https://images.unsplash.com/photo-1519415944724-6b3e6e8f0f3d?auto=format&fit=crop&q=80') center/cover no-repeat;
  color: #f5f5f5;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.container.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .container.hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
}

/* Left Column */
.hero-left {
  max-width: 620px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 1.4rem;
  letter-spacing: -1.5px;
}

.gold-highlight {
  color: #d4af37;
}

.hero-description {
  font-size: 1.35rem;
  line-height: 1.65;
  color: #d0d0d0;
  margin: 0 0 2.5rem;
  max-width: 520px;
}

@media (max-width: 991px) {
  .hero-title   { font-size: 4.2rem; }
  .hero-description { font-size: 1.2rem; max-width: none; }
}

/* Button */
.premium-btn {
  display: inline-block;
  background: #d4af37;
  color: #0f0f0f;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #d4af37;
  transition: all 0.4s ease;
}

.premium-btn:hover {
  background: transparent;
  color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
}

@media (max-width: 991px) {
  .premium-btn {
    min-width: 280px;
  }
}

/* Right Column – Icons */
.hero-right {
  max-width: 520px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .hero-right { margin: 0 auto; }
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.contact-item {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
}

.icon-wrapper {
  flex-shrink: 0;
}

.icon {
  display: block;
  width: 68px;
  height: 68px;
  background: rgba(212, 175, 55, 0.09);
  border-radius: 50%;
  font-size: 2.1rem;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

/* Use Font Awesome or similar – fallback placeholders below */
.icon-map-pin::before { content: "📍"; font-size: 2.4rem; }
.icon-phone::before    { content: "☎";  font-size: 2.4rem; }

.item-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  color: white;
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.item-content p {
  font-size: 1.1rem;
  color: #bbbbbb;
  margin: 0;
  line-height: 1.5;
}

.map-link {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.8rem;
  display: inline-block;
}

.map-link:hover {
  text-decoration: underline;
}