  :root {
      --gold: #ffd700;
      --black: #000000;
      --dark: #111111;
      --light: #ffffff;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--black);
      color: var(--light);
      line-height: 1.6;
    }
    a {
      color: inherit;
      text-decoration: none;
    }

/* =========================
   NEW TOP HEADER
========================= */
/* Header */
.top-header{
  background:#ffffff;
  padding:1px 20px;
  border-bottom:1px solid #eee;
}

/* Header container */
.header-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Logo */
.logo img{
  height:100%;
  width:auto;
}

/* Call button */
.call-btn{
  background:#FFD700;
  color:#000;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:0.3s;
}

.call-btn:hover{
  background:#000!important;
  color:#FFD700;
}

/* Mobile */
@media(max-width:767px){

  .header-container{
    flex-direction:row !important;
  }

  .logo img{
    height:100%;
  }

  .call-btn{
    padding:8px 16px;
    font-size:14px;
  }

}

/* =========================
   INTRO SECTION
========================= */

.intro-section {

  background: #000;
  color: #fff;

  min-height: 60vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

padding-bottom: 40px;
padding-top: 10px;
padding-left: 30px;
padding-right: 30px;
}

.intro-container {

  max-width: 900px;
  margin: 0 auto;

}

/* Title */

.intro-title {

  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;

}

/* Subtitle */

.intro-subtitle {

  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.95;

}

/* Badge center */

.badge-row {

  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;

}

/* Buttons center */

.cta-buttons {

  justify-content: center;
  flex-wrap: wrap;

}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */

@media (max-width: 992px){

  .intro-title {

    font-size: 34px;

  }

  .intro-subtitle {

    font-size: 18px;

  }

}

/* Mobile */

@media (max-width: 576px){

  .intro-section {

    min-height: 50vh;
    padding: 20px 15px;

  }

  .intro-title {

    font-size: 36px;

  }

  .intro-subtitle {

    font-size: 18px;

  }

}


    header {
      background: radial-gradient(circle at top left, var(--gold), #333);
      padding: 80px 20px 60px;
      text-align: center;
    }
    header h1 {
      font-size: 30px;
      margin: 0 0 10px;
      color: var(--gold);
    }
    header h2 {
      font-size: 18px;
      margin: 0 0 20px;
      color: var(--light);
    }
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 13px;
    }
    .badge {
      border-radius: 999px;
      border: 1px solid #ffffff33;
      padding: 6px 12px;
      background: #00000066;
    }
    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-ghost {
      border-radius: 999px;
      border: 1px solid var(--gold);
      padding: 11px 18px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 16px 80px;
    }
    .section {
      margin-bottom: 50px;
    }
    .section-title {
      font-size: 24px;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 14px;
      text-align: center;
      color: #cccccc;
      margin-bottom: 30px;
    }
    .two-column {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .two-column .col {
      flex: 1 1 260px;
    }
    .image-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ffffff22;
      background: #000000;
    }
    .image-card img {
      width: 100%;
      display: block;
      height: auto;
    }
    .image-caption {
      padding: 12px 14px;
      font-size: 13px;
      color: #cccccc;
    }
    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }
    .pill {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid #ffffff33;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
    }
    .service-card {
      background: var(--dark);
      border-radius: 14px;
      padding: 16px 16px 18px;
      border: 1px solid #ffffff22;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px #000000aa;
      border-color: var(--gold);
      background: #1b1b1b;
    }
    .service-card h3 {
      margin: 0 0 8px;
      font-size: 16px;
      color: var(--gold);
    }
    .service-card p {
      margin: 0;
      font-size: 13px;
      color: #dddddd;
    }
    .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .why-list li {
      padding: 8px 0;
      border-bottom: 1px solid #ffffff22;
      font-size: 14px;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .why-list li span.icon {
      color: var(--gold);
      margin-top: 2px;
    }
    .cta-band {
      margin-top: 20px;
      padding: 20px 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffd700, #9b7b00);
      color: #000;
      text-align: center;
    }
    .cta-band h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }
    .cta-band p {
      margin: 0 0 16px;
      font-size: 14px;
    }
    .cta-band .cta-buttons {
      justify-content: center;
    }
    .map-wrapper {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ffffff22;
      background: #000;
    }
    iframe {
      width: 100%;
      border: 0;
      height: 260px;
      display: block;
    }
    .address {
      text-align: center;
      font-size: 18px;
      margin: 10px 0 0;
      color: #dddddd;
    }
    footer {
      background: #000;
      border-top: 1px solid #ffffff22;
      padding: 16px;
      text-align: center;
      font-size: 12px;
      color: #aaaaaa;
    }
    /* Mobile sticky bar */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #000000ee;
      border-top: 1px solid #ffffff33;
      display: flex;
      justify-content: space-around;
      padding: 8px 10px;
      z-index: 999;
    }
    .sticky-btn {
      flex: 1;
      margin: 0 4px;
      background: var(--gold);
      color: #000;
      border-radius: 999px;
      padding: 8px 6px;
      font-size: 13px;
      text-align: center;
      font-weight: 600;
    }
    @media (min-width: 768px) {
      header h1 {
        font-size: 36px;
      }
      header h2 {
        font-size: 20px;
      }
      iframe {
        height: 320px;
      }
      .sticky-bar {
        display: none;
      }
    }
    
/* wrapper prevents image from covering text */
.service-img-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden; /* IMPORTANT */
  position: relative;
}

/* image styling */
.service-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* hover zoom effect */
.service-img-wrapper:hover .service-img {
  transform: scale(1.08);
}

/* service block */
.service-block {
  padding: 15px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}


.premium-services-cta{
  background: linear-gradient(135deg,#0a0a0a,#1a1a1a);
  padding: 60px 30px;
  position: relative;
}

.premium-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.premium-left{
  flex: 1;
  min-width: 300px;
}

.premium-title{
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 15px;
}

.premium-subtitle{
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.premium-services-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-services-list span{
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 8px 14px;
  border-radius: 30px;
  color: #ffd700;
  font-size: 14px;
}

/* Right contact box */
.premium-right{
  flex: 1;
  min-width: 300px;
}

.premium-contact-box{
  background: linear-gradient(135deg,#ffd700,#9b7b00);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  color: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-contact-box h3{
  font-size: 24px;
  margin-bottom: 10px;
}

.premium-call-btn{
  display: inline-block;
  margin-top: 15px;
  background: #000;
  color: #ffd700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.premium-call-btn:hover{
  background: #222;
  transform: scale(1.05);
}

.premium-small{
  margin-top: 15px;
  font-size: 13px;
}

/* Responsive */
@media(max-width:768px){

  .premium-title{
    font-size: 24px;
  }

  .premium-container{
    flex-direction: column;
    text-align: center;
  }

}


.dNtlyB {
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    color: #fff !important;
    text-wrap: balance;
    line-height: 1.32;
}



/* GRID LAYOUT */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:25px;
  padding:20px;
}

/* TABLET */
@media(max-width:1024px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width:600px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* CARD DESIGN */
.service-card{
  background: #0f0f0f;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

/* CARD HOVER */
.service-card:hover{
  transform: translateY(-6px);
  border-color:#ffd700;
  box-shadow:0 10px 25px rgba(255,215,0,0.15);
}

/* TITLE */
.service-card h3{
  color:#ffd700;
  font-size:18px;
  margin-bottom:12px;
}

/* IMAGE WRAPPER */
.service-img-wrapper{
  width:100%;
  border-radius:10px;
  overflow:hidden !important;
  margin-bottom:12px;
}

/* IMAGE */
.service-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  transition:transform 0.4s ease;
}

/* IMAGE HOVER */
.service-card:hover .service-img{
  transform:scale(1.08);
}

/* TEXT */
.service-card p{
  color:#ccc;
  font-size:14px;
  line-height:1.5;
  margin-top:auto;
}
.service-card:hover{
  box-shadow:0 0 20px rgba(255,215,0,0.3);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Large screen */
  gap: 25px;
}

/* MEDIUM DEVICES (Tablet) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL DEVICES (Mobile) */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card {
  background: #111;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.call-btn {
  background: #d4af37;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.call-btn:hover {
  background: #f1c40f;
}

.service-img {
  width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #0a0a0a;
  border: 1px solid #d4af37;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(212,175,55,0.25);
}

/* Header alignment fix */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.service-header h3 {
  color: #ffd700;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Call button fix */
.call-btn {
  background: #d4af37;
  color: #000;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/* Image fix */
.service-img-wrapper {
  width: 100%;
  margin: 10px 0 15px 0;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* Text */
.service-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Medium screen */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screen */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}