
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #3a2a10 0, #050505 55%, #000 100%);
  color: #f5f5f5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid rgba(212,175,55,0.5);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid rgba(212,175,55,0.8);
  box-shadow: 0 0 18px rgba(212,175,55,0.6);
  background: #020202;
}
.brand-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .04em;
}
.brand-sub {
  font-size: 12px;
  color: #ddd;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
nav a {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all .2s ease;
}
nav a:hover {
  border-color: rgba(212,175,55,0.7);
  background: rgba(15,15,15,0.95);
}
nav a.active {
  background: #d4af37;
  color: #111;
  box-shadow: 0 0 18px rgba(212,175,55,0.7);
}
.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.lang-switch button {
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.7);
  padding: 4px 8px;
  background: transparent;
  color: #f5f5f5;
  font-size: 11px;
  cursor: pointer;
}
.lang-switch button.active {
  background: #d4af37;
  color: #111;
}

.lang-flag-btn {
  padding: 2px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #d4af37 25%, #111 90%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-flag-img,
.entry-flag-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.entry-lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 16px 40px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.hero-text h1 {
  font-size: 30px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f8e6b0;
}
.hero-kicker {
  font-size: 13px;
  color: #f0e0aa;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 6px;
}
.hero-sub, .hero-meta {
  font-size: 14px;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 10px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 2px;
}
.btn {
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.8);
  padding: 8px 14px;
  font-size: 13px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: rgba(10,10,10,0.9);
  color: #f9f5e8;
  cursor: pointer;
}
.btn.primary {
  background: #d4af37;
  color: #111;
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
}
.btn.primary:hover { background: #f0cd63; }
.btn.secondary:hover { background: rgba(20,20,20,0.95); }
.hero-photo-wrap {
  justify-self: center;
  position: relative;
}
.hero-photo {
  width: 250px;
  height: 250px;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.8);
  box-shadow: 0 18px 38px rgba(0,0,0,0.9);
}
.hero-photo-tag {
  position: absolute;
  bottom: -14px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(5,5,5,0.95);
  border: 1px solid rgba(212,175,55,0.8);
}
.section {
  margin: 30px 0;
  padding: 20px 18px 22px;
  border-radius: 18px;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}
.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #f8e6b0;
}
.section-lead {
  font-size: 14px;
  margin-bottom: 10px;
  color: #f3e7c3;
}
.section p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.section ul {
  margin: 6px 0 0 18px;
  font-size: 13px;
}
.section ul li {
  margin-bottom: 4px;
}
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 20px;
}
.card {
  padding: 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.4);
  background: radial-gradient(circle at top left, #3c2b10 0, #050505 55%);
}
.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #f6e0a8;
}
.card p { font-size: 13px; line-height: 1.7; }
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.badge {
  font-size: 11px;
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(212,175,55,0.6);
  background: rgba(8,8,8,0.95);
}
.photo-frame {
  max-width: 260px;
  margin: 0 auto;
  position: relative;
}
.photo-main {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.7);
  box-shadow: 0 16px 36px rgba(0,0,0,0.9);
  object-fit: cover;
}

.form-wrap {
  max-width: 520px;
  margin: 0 auto;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
input, textarea {
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.6);
  background: rgba(5,5,5,0.95);
  color: #f5f5f5;
  padding: 9px 10px;
  font-size: 13px;
}
textarea { min-height: 120px; resize: vertical; }
button.submit {
  align-self: flex-start;
  margin-top: 4px;
}
footer {
  border-top: 1px solid rgba(212,175,55,0.4);
  background: #050505;
  font-size: 11px;
  color: #bbb;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}
.floating-whatsapp a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.85);
}
.floating-call {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 40;
}
.floating-call a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #d4af37;
  color: #111;
  font-size: 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.85);
}
@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-photo-wrap { order: -1; margin-bottom: 10px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav { justify-content: flex-start; }
  .two-col { grid-template-columns: minmax(0,1fr); }
}

/* Machinery / Products page */
.links-block {
  margin-top: 18px;
}
.links-block h3 {
  font-size: 15px;
  margin: 14px 0 6px;
}
.link-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.link-list li {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.link-list a {
  color: #f5e3a3;
  font-weight: 500;
}
.section-note {
  margin-top: 10px;
  font-size: 13px;
  color: #e8e0c8;
}
.contact-card {
  margin-top: 18px;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(212,175,55,0.7);
  font-size: 13px;
  line-height: 1.5;
}
.contact-card p {
  margin-bottom: 6px;
}
.machine-slider {
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.7);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.9);
}
.machine-slider img {
  width: 100%;
  display: none;
  object-fit: cover;
}


/* Mining gallery */
.mining-gallery {
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.mining-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}


/* Real Estate & Immigration pages */
.section-logo-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.realestate-logo,
.immigration-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}
.profile-grid {
  gap: 24px;
  align-items: flex-start;
}


.bullet-list {
  margin: 10px 0 0 18px;
  padding-left: 0;
}
.bullet-list li {
  margin-bottom: 4px;
}


/* FIXED LABEL OVERLAP */

.photo-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  border: 2px solid #d4af37;
  color: white;
  padding: 6px 14px;
  border-radius: 22px;
  font-size: 0.9rem;
  white-space: nowrap;
  z-index: 5;
}

.card {
  padding-bottom: 80px !important;
}
