:root {
  --brand-gold: #d4af37;
}

* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  color: #1f2933;
  background: #ffffff;
}

/* HERO */
.hero {
  background: url("hero.jpg") center / cover no-repeat;
  height: 85vh;
  position: relative;
  filter: brightness(1.15) contrast(1.05);
}

.overlay {
  background: rgba(0, 0, 0, 0.18); /* lighter overlay */
  min-height: 90vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
/* HERO TEXT & CTA COLOR */
.hero .overlay p,
.hero .overlay a {
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}



.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: bold;
  margin: 6px;
  display: inline-block;
}

.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  background: #16a34a;
  color: white;
}

.big {
  margin-top: 15px;
}

/* TRUST BAR */
.trust {
  display: flex;
  justify-content: space-around;
  background: #1f2933;
  color: white;
  padding: 15px 5px;
  font-size: 14px;
  text-align: center;
}

/* CONTENT */
.content {
  padding: 35px 20px;
  max-width: 900px;
  margin: auto;
}

.content h2 {
  text-align: center;
  margin-bottom: 15px;
}
/* SECTION HEADINGS */
h2 {
  color: var(--brand-gold);
}

.content p {
  text-align: center;
  line-height: 1.6;
}

/* SERVICES */
.gray {
  background: #f4f4f4;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* CONTACT */
.contact {
  text-align: center;
}

/* FOOTER */
footer {
  background: #1f2933;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
.site-header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
.logo {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 6px;
}

.logo img {
  height: 100px;
  width: auto;
}
.hero .overlay p {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.cta:hover {
  background: var(--brand-gold);
  color: #000;
}
.trust div {
  color: var(--brand-gold);
}
/* MOBILE STICKY CALL BAR */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
  background: #1f2933;
  border-top: 2px solid var(--brand-gold);
}

/* Buttons inside bar */
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: bold;
  text-decoration: none;
  color: var(--brand-gold);
  font-size: 16px;
}

/* Layout */
.mobile-call-bar {
  display: flex;
}

/* Hover (desktop fallback) */
.mobile-call-bar a:hover {
  background: var(--brand-gold);
  color: #000;
}

/* SHOW ONLY ON MOBILE */
@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.5px;
}

/* Call button */
.call-btn {
  background: var(--brand-gold);
  color: #000;
  animation: pulse 2s infinite;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

/* Prevent content hiding behind bar */
body {
  padding-bottom: 60px;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.call-btn {
  animation: pulse 2s infinite;
}
/* BEFORE & AFTER SECTION */
.before-after h2 {
  color: var(--brand-gold);
  text-align: center;
  margin-bottom: 25px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.ba-column {
  text-align: center;
}

.ba-title {
  color: var(--brand-gold);
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--brand-gold);
  display: inline-block;
  padding-bottom: 5px;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ba-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 767px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .ba-images img {
    height: 180px;
  }
}
.seo h2 {
  color: var(--brand-gold);/* replace with your logo color */
}



