/* =========================
   DESIGN SYSTEM (UPGRADED)
========================= */

:root{
  --gold:#d4af37;
  --gold-soft:#f5e6a1;
  --dark:#0b0b0d;
  --dark-2:#121216;
  --glass:rgba(255,255,255,0.05);
  --border:rgba(255,255,255,0.08);
  --text:#e8e8e8;
  --muted:#a1a1a1;

  --radius:14px;
  --radius-lg:24px;

  --shadow:0 10px 40px rgba(0,0,0,0.6);
  --shadow-gold:0 0 40px rgba(212,175,55,0.35);

  --gradient:linear-gradient(135deg,#d4af37,#f5e6a1,#b8902e);
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--dark);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

/* =========================
   NAVBAR (PREMIUM)
========================= */

/* =========================
   PREMIUM NAVBAR
========================= */

.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);

  transition: 0.3s ease;
}

/* ON SCROLL EFFECT */
.navbar.scrolled{
  background: rgba(10,10,15,0.85);
  padding: 12px 8%;
}

/* LOGO */
.logo img {
  height: 45px;   /* perfect navbar size */
  width: auto;
  object-fit: contain;
}

/* optional: align properly */
.logo {
  display: flex;
  align-items: center;
}

/* NAV LINKS */
.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

/* HOVER UNDERLINE EFFECT */
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gradient);
  transition: 0.3s;
}

.nav-links a:hover{
  color: #fff;
}

.nav-links a:hover::after{
  width: 100%;
}

/* CTA BUTTON */
.cta-btn{
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--gradient);
  color: #000 !important;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle{
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span{
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.4s;
}

/* ANIMATION TO X */
.menu-toggle.active span:nth-child(1){
  transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
  opacity: 0;
}

.menu-toggle.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px,-6px);
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width: 768px){

  .menu-toggle{
    display: flex;
  }

  .nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;

    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);

    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px;
    gap: 22px;

    transition: 0.4s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.active{
    right: 0;
  }

  .nav-links a{
    font-size: 16px;
    width: 100%;
  }

  /* REMOVE UNDERLINE MOBILE */
  .nav-links a::after{
    display: none;
  }

  /* CTA FULL WIDTH */
  .cta-btn{
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* =========================
   HERO (FINAL PREMIUM FIXED)
========================= */

.hero {
  position: relative;
  z-index: 1;

  min-height: 620px;
  max-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 90px 8%;
  overflow: hidden;
}

/* ================= BACKGROUND IMAGE ================= */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url('https://www.goodwillgasservice.com/assets/gas-repair-hero-DB2wK6m0.jpg')
              no-repeat right center;

  background-size: cover; /* FIXED */

  z-index: -2;
}

/* ================= DARK OVERLAY ================= */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.15) 100%
  );

  z-index: -1;
}

/* ================= CONTENT ================= */
.hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

/* ================= HEADING ================= */
.hero h1 {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;

  background: linear-gradient(180deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SUBTEXT ================= */
.hero p {
  font-size: clamp(15px, 2vw, 20px);
  color: #d1d5db;
  max-width: 650px;
  margin: 0 auto 35px;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons button {
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.hero-buttons button:first-child {
  background: linear-gradient(135deg, #d4af37, #f5e6a1);
  color: #000;
}

.hero-buttons button:first-child:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 35px rgba(212,175,55,0.6);
}

/* SECONDARY BUTTON */
.hero-buttons button:last-child {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.hero-buttons button:last-child:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= GOLD GLOW ================= */
.hero .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  top: -150px;
  left: -150px;
  filter: blur(120px);
  z-index: 0;
}

/* ================= DESKTOP CONTROL ================= */
@media (min-width: 1200px) {

  .hero {
    min-height: 580px;
    max-height: 680px;
    padding: 100px 10%;
  }

  /* LIMIT IMAGE ZOOM */
  .hero::before {
    background-size: 1100px auto;
    background-position: right center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 120px 15px 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(26px, 6vw, 34px);
  }

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

  .hero-buttons button {
    width: 100%;
    max-width: 260px;
  }

  /* IMAGE ADJUST FOR MOBILE */
  .hero::before {
    background-position: center;
    background-size: cover;
    opacity: 0.4; /* better readability */
  }

  .hero .glow {
    width: 400px;
    height: 400px;
  }
}
/* CONTAINER */
.highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* center on desktop */
  gap: 12px;
  margin: 18px 0;
}

/* EACH ITEM */
.highlight span {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd700;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);

  white-space: nowrap; /* prevents breaking text */
  transition: all 0.3s ease;
}

/* ICON */
.highlight span i {
  margin-right: 6px;
  font-size: 14px;
}

/* HOVER */
.highlight span:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  color: #fff;
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .highlight {
    justify-content: center;
    gap: 8px;
  }

  .highlight span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* 📱 VERY SMALL DEVICES */
@media (max-width: 400px) {
  .highlight {
    flex-direction: column;   /* stack items */
    align-items: center;
  }

  .highlight span {
    width: 90%;
    justify-content: center;
  }
}


/* =========================
   TRUST BAR
========================= */

/* =========================
   TRUST BAR (ULTRA PREMIUM)
========================= */


.trust-bar {
  position: relative;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);

  width: 100%;
  max-width: 1200px;
  margin: -70px auto 50px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* FIXED 4 COL */
  gap: 20px;

  padding: 24px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 5;
}

/* Glow Border */
.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(212,175,55,0.35),
    transparent
  );

  opacity: 0.25;
  pointer-events: none;
}

/* =========================
   TRUST ITEM
========================= */

.trust-bar > div {
  min-width: 0; /* PREVENT GRID BREAK */
}

.trust-bar div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px 12px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);

  background: rgba(255,255,255,0.02);

  transition: all 0.35s ease;
}

/* ICON */
.trust-bar i {
  font-size: 26px;
  margin-bottom: 12px;

  background: linear-gradient(135deg, #d4af37, #f5e6a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: 0.3s;
}

/* TITLE */
.trust-bar h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

/* TEXT */
.trust-bar p {
  font-size: 12px;
  color: #a1a1a1;
  line-height: 1.4;
}

/* =========================
   HOVER EFFECT
========================= */

.trust-bar div:hover {
  transform: translateY(-8px) scale(1.03);

  background: rgba(255,255,255,0.06);

  box-shadow: 0 12px 40px rgba(212,175,55,0.2);
}

.trust-bar div:hover i {
  transform: scale(1.15);
}

/* =========================
   TABLET (2x2 GRID)
========================= */

@media (max-width: 992px) {

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin: -50px auto 40px;
  }

}

/* =========================
   MOBILE (2x2 PERFECT)
========================= */

@media (max-width: 600px) {

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    width: 92%;
    padding: 16px;

    margin: -40px auto 25px;
  }

  .trust-bar div {
    padding: 14px 10px;
  }

  .trust-bar i {
    font-size: 20px;
  }

  .trust-bar h3 {
    font-size: 14px;
  }

  .trust-bar p {
    font-size: 11px;
  }

}

/* =========================
   SECTIONS
========================= */

section{
  padding:100px 8%;
}

h2{
  text-align:center;
  font-size:clamp(24px,4vw,38px);
  margin-bottom:50px;
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* =========================
   ABOUT
========================= */

/* =========================
   ABOUT (PREMIUM)
========================= */

#about {
  position: relative;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
/* Title */
#about h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
#about .subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 15px;
}

/* ================= CONTAINER ================= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= IMAGE ================= */
.about-img {
  position: relative;
  width: 100%;
  height: 100%; /* fill column height */
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* IMAGE */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills properly */
  object-position: center;    /* keeps subject visible */

  border-radius: inherit;
  filter: brightness(0.8) contrast(1.1);
  box-shadow: var(--shadow);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= TEXT ================= */
.about-text {
  background: rgba(255,255,255,0.03);
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

/* Paragraph */
.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Highlight points */
.about-points {
  margin-top: 20px;
}

.about-points li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ddd;
}

.about-points li::before {
  content: "✔";
  color: var(--gold);
  margin-right: 8px;
}

/* ================= QUOTE ================= */
blockquote {
  margin-top: 25px;
  padding: 15px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.05);
  color: var(--gold-soft);
  font-style: italic;
  border-radius: 8px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #about h2 {
    font-size: 28px;
  }

  .about-text {
    padding: 25px;
  }
}

/* =========================
   SERVICES
========================= */

/* =========================
   SERVICES SECTION PREMIUM
========================= */


  
#services {
  position: relative;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

/* Section Title */
#services h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Optional subtitle */
#services .subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 15px;
}

/* ================= GRID ================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

/* Gradient border glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.4), transparent);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}


/* ================= IMAGE ================= */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Image zoom on hover */
.service-card:hover img {
  transform: scale(1.08);
}

/* Dark overlay on image */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

/* ================= CONTENT ================= */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 18px 20px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card h3 i {
  color: var(--gold);
  font-size: 18px;
}


/* Main paragraph */
.service-card p {
  padding: 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Sub paragraph (your new requirement) */
.service-card .sub-text {
  padding: 10px 20px 0;
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
}

/* Feature list */
.service-card ul {
  padding: 15px 25px 25px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.7;
}

.service-card ul li {
  margin-bottom: 6px;
}

/* ================= BADGE ================= */
.service-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);
}
/* CONTAINER (optional if you wrap it) */
.service-note-wrap {
  display: flex;
  justify-content: center;   /* center on desktop */
  margin: 18px 0 0;
}

/* SERVICE NOTE */
.service-note {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);

  white-space: nowrap; /* prevent break */
  transition: all 0.3s ease;
}

/* HOVER */
.service-note:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  color: #fff;
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .service-note {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* 📱 VERY SMALL DEVICES */
@media (max-width: 400px) {
  .service-note {
    white-space: normal;   /* allow wrapping */
    text-align: center;
    width: 90%;
  }
}
/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card img {
    height: 180px;
  }

  #services h2 {
    font-size: 28px;
  }
}


/* =========================
   FEATURES
========================= */

/* =========================
   WHY CHOOSE US (PREMIUM)
========================= */

#why {
  position: relative;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
/* Title */
#why h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
#why .subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 15px;
}

/* ================= GRID ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.feature-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Soft gradient border glow */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.3), transparent);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ================= ICON ================= */
.feature-card i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

/* Icon glow on hover */
.feature-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* ================= TEXT ================= */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-card i {
    font-size: 24px;
  }

  #why h2 {
    font-size: 28px;
  }
}
/* =========================
   REVIEWS
========================= */

/* =========================
   REVIEWS (PREMIUM)
========================= */

#reviews {
  position: relative;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

/* Title */
#reviews h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
#reviews .subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 15px;
}

/* ================= GRID ================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.review-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Gradient border glow */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.3), transparent);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Hover */
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ================= QUOTE ICON ================= */
.review-card .quote {
  font-size: 40px;
  color: rgba(212,175,55,0.2);
  position: absolute;
  top: 10px;
  right: 15px;
}

/* ================= TEXT ================= */
.review-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ================= USER ================= */
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Avatar */
.review-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Name */
.review-user h4 {
  font-size: 14px;
  font-weight: 600;
}

/* ================= STARS ================= */
.stars {
  color: var(--gold);
  font-size: 14px;
  margin-top: 5px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 25px 20px;
  }

  #reviews h2 {
    font-size: 28px;
  }
}

/* =========================
   CONTACT
========================= */

/* =========================
   CONTACT SECTION PREMIUM
========================= */

.contact {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* LAYOUT */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-sub {
  color: var(--muted);
  margin-bottom: 25px;
  max-width: 500px;
}

/* DETAILS */
.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #ddd;
}

.contact-item i {
  width: 42px;
  height: 42px;
  min-width: 42px; /* 🔥 important */
  border-radius: 50%;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--border);
  flex-shrink: 0; /* 🔥 stops shrinking */
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

/* CALL BUTTON */
.call-btn {
  background: linear-gradient(135deg,#2563eb,#1e40af);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,99,235,0.4);
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37,99,235,0.6);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* BUTTON GROUP */
.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================= RIGHT CARD ================= */

.contact-card {
  background: var(--glass);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-card ul {
  text-align: left;
  margin-bottom: 25px;
  color: #ddd;
}

.contact-card ul li {
  margin-bottom: 8px;
}

/* FULL BUTTON */
.full-btn {
  width: 100%;
  justify-content: center;
  background: var(--gradient);
  color: #000;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-actions {
    flex-direction: column;
  }

}

/* =========================
   FOOTER
========================= */

/* =========================
   FOOTER PREMIUM UI
========================= */

.footer {
  background: radial-gradient(circle at top, #121216, #0b0b0d);
  padding: 80px 8% 30px;
  border-top: 1px solid var(--border);
  position: relative;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 15px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gradient);
  color: #000;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

/* CONTACT */
.footer-contact p {
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact i {
  color: var(--gold);
}

/* CTA BUTTON */
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--gradient);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

/* =========================
   MOBILE CLEAN PREMIUM FOOTER
========================= */

@media(max-width: 600px){

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* BRAND */
  .footer-brand h3 {
    font-size: 22px;
  }

  .footer-brand p {
    font-size: 14px;
    max-width: 320px;
    margin: 0 auto 18px;
    line-height: 1.6;
  }

  /* SOCIAL */
  .footer-social {
    justify-content: center;
    gap: 14px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  /* LINKS (NO BOX / NO BACKGROUND) */
  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.9;
  }

  .footer-links a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* CONTACT */
  .footer-contact p {
    justify-content: center;
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* BUTTON FULL WIDTH */
  .footer-btn {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    padding: 14px;
    font-size: 15px;
  }

  /* SPACING BETWEEN SECTIONS */
  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: 10px;
  }

  /* CLEAN DIVIDER LINE */
  .footer-container > div:not(:last-child)::after {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    background: var(--border);
    margin: 18px auto 0;
    opacity: 0.5;
  }

  /* BOTTOM */
  .footer-bottom {
    margin-top: 25px;
  }

  .footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
  }

}

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 0; /* IMPORTANT CHANGE */
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  background: linear-gradient(135deg, #d4af37, #f5e6a1, #b8902e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}