:root {
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-dark: #9a7530;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-4: #242424;
  --white: #f5f0e8;
  --text-muted: #8a8070;
  --accent-blue: #1a6fa8;
  --accent-copper: #b5651d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ---- NAVBAR ---- */
.navbar {
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 40px rgba(201, 168, 76, 0.08);
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold) !important;
  letter-spacing: 1px;
}
.navbar-brand span {
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-link {
  color: var(--white) !important;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--gold) !important;
}
.nav-link:hover::after {
  width: 100%;
}
.navbar-toggler {
  border-color: var(--gold);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.35);
  color: var(--dark);
  transform: translateY(-1px);
}

/* ---- RESPONSIVENESS ---- */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  .navbar-brand span {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.2;
    max-width: 180px;
    display: block;
  }
  .navbar-brand span {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    margin-top: 5px;
    max-width: 100%;
  }
  .core-service-content{
    padding: 1rem !important;
  }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 10rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 50%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 70%,
      rgba(26, 111, 168, 0.06) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge i {
  font-size: 0.6rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-subtitle {
  font-family: "Tajawal", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(245, 240, 232, 0.5);
  margin: 1.5rem 0 2.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
  line-height: 1.6;
}
.hero-arabic {
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn-outline-gold {
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  background: transparent;
  padding: 0.6rem 1.8rem;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  animation: fadeInRight 1s 0.2s ease both;
}
.hero-card {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* New classes for redesigned hero cards */
.hero-card.img-card {
  padding: 0;
  min-height: 300px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-card.img-card::before {
  display: none;
}

.hero-card-electric {
  background: url("../images/electrician-work.jpg") center/cover no-repeat;
  margin-top: 2rem;
}

.hero-card-plumbing {
  background: url("../images/plumbing.jpg") center/cover no-repeat;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.icon-electric {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}
.icon-plumb {
  background: rgba(26, 111, 168, 0.1);
  border: 1px solid rgba(26, 111, 168, 0.3);
  color: #4dabf7;
}
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  top: -12px;
  right: 20px;
}

/* ---- SECTION COMMONS ---- */
section {
  padding: 6rem 0;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
}
.gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.5rem;
}

/* 5 Column Grid for Gallery */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* ---- CORE SERVICES ---- */
#services {
  background: var(--dark-2);
}

/* ---- CORE SERVICES ---- */
#services {
  background: var(--dark);
}
.core-service-block {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  transition: all 0.4s ease;
}
.core-service-block:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.core-service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  max-height: 400px;
}
.core-service-content {
  padding: 3rem;
}
.core-service-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.core-service-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.core-service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.core-service-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.core-service-list li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(201, 168, 76, 0.04),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.service-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
  padding: 0;
}
.service-features li {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.6);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ---- WHY US ---- */
#why {
  background: var(--dark);
}
.why-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation-fill-mode: both;
}
.why-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  min-width: 60px;
}
.why-content h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.why-visual-box {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-visual-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 60%
  );
}
.big-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 1rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  margin: 0.5rem;
  font-size: 0.8rem;
}
.cert-badge i {
  color: var(--gold);
}

/* ---- PROCESS ---- */
#process {
  background: var(--dark-2);
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.1));
}
.process-step:last-child::after {
  display: none;
}
.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .step-circle {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}
.process-step h5 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
#testimonials {
  background: var(--dark);
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
}
.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: "Tajawal", sans-serif;
}
.reviewer-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.accordion-item {
  background-color: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
}
.accordion-button {
  background-color: var(--dark-3);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  padding: 1.5rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(201, 168, 76, 0.05);
  color: var(--gold);
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordion-body {
  color: var(--white);
  line-height: 1.7;
  padding: 1.5rem;
}

/* ---- GALLERY ---- */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ---- CONTACT ---- */
#contact {
  background: var(--dark-2);
}
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
}
.form-control::placeholder {
  color: rgba(138, 128, 112, 0.6);
}
.form-control:focus,
.form-select:focus {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
  color: var(--white);
}
.form-select option {
  background: var(--dark-3);
  color: var(--white);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contact-info-item p {
  font-size: 0.95rem;
  margin: 0;
  font-family: "Tajawal", sans-serif;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 0 2rem;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.footer-brand span {
  font-family: "Tajawal", sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 3px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links h6 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  text-decoration: none;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  position: relative;
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

/* ---- DIVIDER ---- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin: 0;
}
