
:root {
  --navy: #050914;
  --navy-2: #0b1224;
  --navy-3: #10192f;
  --gold: #d4af37;
  --gold-dark: #b98a20;
  --white: #ffffff;
  --light: #f5f6f8;
  --muted: #aeb6c8;
  --dark-text: #080d18;
  --soft-text: #5f6675;
  --border: rgba(212, 175, 55, 0.28);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.light-mode {
  --navy: #f5f6f8;
  --navy-2: #ffffff;
  --navy-3: #eef1f7;
  --white: #080d18;
  --muted: #5f6675;
  --light: #ffffff;
  --dark-text: #080d18;
  --soft-text: #5f6675;
  --border: rgba(185, 138, 32, 0.35);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: auto; }

.top-bar {
  background: linear-gradient(90deg, var(--gold), #f3dc86, var(--gold-dark));
  color: #050914;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  padding: 8px 12px;
  letter-spacing: 0.3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 9, 20, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
body.light-mode header { background: rgba(255,255,255,0.94); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 34px;
}

.logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
  cursor: pointer;
}
.logo img:hover { transform: scale(1.04); }

.nav-links {
  flex: 1;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 900;
}
.nav-links a { transition: 0.25s ease; }
.nav-links a:hover, .nav-links .active { color: var(--gold); }

.hamburger {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 24px;
  cursor: pointer;
}
.theme-toggle {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}
body.light-mode .theme-toggle, body.light-mode .hamburger { color:#ffffff; }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #050914;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(212, 175, 55, 0.32); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--gold); box-shadow: none; }

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,55,0.16), transparent 28%),
    linear-gradient(90deg, rgba(5,9,20,0.98) 0%, rgba(5,9,20,0.86) 50%, rgba(5,9,20,0.55) 100%),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80');
  background-size: 110%;
  background-position: center;
  animation: heroMove 18s ease-in-out infinite alternate;
}
@keyframes heroMove {
  from { background-position: center center; background-size: 110%; }
  to { background-position: center top; background-size: 118%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  color: #f3d77b;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h1, .page-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.hero h1 span, .page-hero h1 span { color: var(--gold); }

.hero p, .page-hero p {
  color: #d8dce6;
  font-size: 19px;
  max-width: 680px;
  margin-bottom: 34px;
}
body.light-mode .hero p, body.light-mode .page-hero p { color: #d8dce6; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-panel {
  background: rgba(11, 18, 36, 0.84);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.panel-title { color: var(--gold); font-weight: 900; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.panel-list { display: grid; gap: 16px; }
.panel-item {
  padding: 18px;
  background: rgba(255,255,255,0.055);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}
.panel-item:hover { transform: translateX(5px); border-color: var(--gold); }
.panel-item strong { display: block; margin-bottom: 4px; }
.panel-item small { color: var(--muted); }

.page-hero {
  padding: 95px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,55,0.16), transparent 28%),
    linear-gradient(90deg, rgba(5,9,20,0.98), rgba(5,9,20,0.78)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

section { padding: 92px 0; }
.section-light { background: var(--light); color: var(--dark-text); }
.section-title { text-align: center; margin-bottom: 54px; }
.section-title h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; text-transform: uppercase; letter-spacing: -0.8px; }
.section-title p { color: var(--soft-text); max-width: 760px; margin: auto; font-size: 16px; }
.dark-title p { color: var(--muted); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}
.trust-card {
  background: linear-gradient(180deg, #0d162c, #080e1d);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  transition: 0.25s ease;
}
.trust-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.trust-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 17px; }
.trust-card p { color: var(--muted); font-size: 14px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.dark-card {
  background: linear-gradient(180deg, #0b1224, #080e1d);
  border: 1px solid var(--border);
  padding: 42px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.dark-card h2 { font-size: 38px; margin-bottom: 18px; line-height: 1.15; }
.dark-card span { color: var(--gold); }
.dark-card p { color: #c7cddd; margin-bottom: 18px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.stat {
  background: #10192f;
  padding: 28px;
  border-radius: 18px;
  border-left: 4px solid var(--gold);
  min-height: 140px;
  transition: .25s ease;
}
.stat:hover { transform: translateY(-5px); }
.stat strong { display: block; font-size: 34px; color: var(--gold); margin-bottom: 8px; }
.stat span { color: var(--muted); }

.card {
  background:#172235;
  color: var(--dark-text);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border: 1px solid #e9edf4;
  transition: 0.25s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 20px 55px rgba(0,0,0,0.12); }
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #050914;
  font-weight: 900;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; font-size: 20px; }
.card p { color: var(--soft-text); font-size: 15px; }

.product-card {
  background:#172235;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  border: 1px solid #e9edf4;
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 55px rgba(0,0,0,0.12); }
.product-card img { width: 100%; height: 220px; object-fit: cover; transition: .35s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-card div { padding: 24px; }
.product-card h3 { margin-bottom: 8px; color: var(--dark-text); }
.product-card p { color: var(--soft-text); font-size: 14px; }

.reach {
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.14), transparent 28%),
    linear-gradient(rgba(5,9,20,0.92), rgba(5,9,20,0.94)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}
.glass-card {
  padding: 36px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: .25s ease;
}
.glass-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.glass-card h3 { color: var(--gold); margin-bottom: 10px; }
.glass-card p { color: #c7cddd; }

.world-map {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 25% 45%, rgba(212,175,55,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 45% 36%, rgba(212,175,55,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 52%, rgba(212,175,55,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 38%, rgba(212,175,55,.9) 0 4px, transparent 5px),
    linear-gradient(rgba(5,9,20,.78), rgba(5,9,20,.88)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.world-map::before, .world-map::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  top: 45%;
  left: 18%;
  transform: rotate(-12deg);
  animation: pulseLine 2s ease-in-out infinite alternate;
}
.world-map::after {
  top: 58%;
  left: 32%;
  transform: rotate(16deg);
}
@keyframes pulseLine {
  from { opacity: .35; }
  to { opacity: .95; }
}

.testimonial {
  background: #fff;
  color: var(--dark-text);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}
.testimonial p { color: var(--soft-text); margin-bottom: 18px; }
.testimonial strong { color: var(--dark-text); }

.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #050914;
  padding: 46px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(212,175,55,0.22);
}
.cta-band h2 { font-size: 32px; line-height: 1.15; }
.cta-band p { max-width: 640px; font-weight: 700; opacity: 0.85; }
.cta-band .btn { background: #050914; color: #ffffff; box-shadow: none; }

.contact { background: var(--light); color: var(--dark-text); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
form {
  background:#172235;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border: 1px solid #e9edf4;
}
input, textarea, select {
  width: 100%;
  padding: 15px;
  margin-bottom: 16px;
  border: 1px solid #d9dde7;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { height: 135px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info {
  background: #050914;
  color: #ffffff;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.contact-info h2 { font-size: 34px; margin-bottom: 18px; }
.contact-info p { color: #aeb6c8; margin-bottom: 16px; }
.contact-info strong { color: var(--gold); }
.contact-info a { color: var(--gold); font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  transition: .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); }

footer {
  background: #050914;
  border-top: 1px solid var(--border);
  padding: 54px 0 28px;
  color: #aeb6c8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}
footer h3, footer h4 { color: #ffffff; margin-bottom: 14px; }
.footer-logo { height: 90px; margin-bottom: 16px; }
footer a { display: block; margin-bottom: 8px; transition: 0.25s ease; }
footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; text-align: center; font-size: 14px; }

@media (max-width: 950px) {
  .hamburger { display: block; }
  .nav { gap: 16px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5,9,20,.98);
    padding: 18px 5%;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .trust-row, .two-col, .grid-2, .grid-3, .grid-4, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-row { margin-top: 30px; }
  .hero-panel { margin-bottom: 40px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .top-bar { font-size: 11px; }
  .logo img { height: 72px; }
  section { padding: 70px 0; }
  .hero h1, .page-hero h1 { letter-spacing: -1px; }
  .dark-card, .contact-info, form, .cta-band { padding: 26px; }
}


/* Premium homepage earth distribution section */
.global-earth-section {
  padding: 42px 0 10px;
  background: #050914;
}

.global-earth-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,0.24);
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
  background:
    linear-gradient(90deg, rgba(5,9,20,0.98) 0%, rgba(5,9,20,0.78) 43%, rgba(5,9,20,0.18) 100%),
    url('dark-earth-network.png');
  background-size: cover;
  background-position: center right;
}

.global-earth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(30,105,220,0.22), transparent 30%),
    linear-gradient(180deg, transparent, rgba(5,9,20,0.28));
  pointer-events: none;
}

.global-earth-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 72px;
}

.global-earth-kicker {
  color: #d4af37;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2.2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.global-earth-content h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  margin-bottom: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1.4px;
}

.global-earth-content h2 span {
  color: #4f8cff;
}

.global-earth-content p {
  color: #d8dce6;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.global-earth-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.global-earth-points span {
  border: 1px solid rgba(79,140,255,0.45);
  background: rgba(79,140,255,0.12);
  color: #dbe8ff;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 950px) {
  .nav-links {
    font-size: 15px;
    gap: 16px;
    justify-content: flex-start;
  }

  .global-earth-card {
    min-height: auto;
    background-position: center;
  }

  .global-earth-content {
    padding: 42px 28px;
  }
}

@media (max-width: 620px) {
  .nav-links {
    font-size: 14px;
  }

  .global-earth-section {
    padding-top: 24px;
  }
}


/* FINAL PREMIUM DARK THEME REFINEMENTS */

body{
  background:
    radial-gradient(circle at top right, rgba(38,87,170,0.08), transparent 22%),
    #050914;
}

section{
  padding:72px 0;
}

.logo img{
  height:100px !important;
}

.services-grid .service-card h3,
.products-grid .product-card h3,
.product-card h3{
  font-size:30px;
}

.service-card,
.product-card,
.testimonial-card,
.contact-card{
  background:#172235 !important;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 18px 45px rgba(0,0,0,0.34);
}

.service-card p,
.product-card p,
.testimonial-card p,
.section-subtitle,
.contact-card p{
  color:#c3cbda !important;
}

.service-card .number,
.number-badge,
.service-number{
  display:none !important;
}

h2.section-title,
.section-title{
  letter-spacing:-1px;
}

.testimonials h2,
.testimonials .section-title{
  font-size:48px !important;
}

.whatsapp-float{
  background:linear-gradient(135deg,#2f8f7a,#49a58d) !important;
  box-shadow:0 10px 28px rgba(0,0,0,0.26) !important;
}

input,
textarea,
select{
  background:#111b2d !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  color:#ffffff !important;
}

input::placeholder,
textarea::placeholder{
  color:#aeb8ca !important;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(48,114,220,0.12), transparent 24%);
  pointer-events:none;
}

.section-light{
  background:#0f1726 !important;
}

.products,
.services-grid,
.testimonials-grid{
  gap:28px;
}

@media(max-width:900px){
  section{
    padding:58px 0;
  }

  .logo img{
    height:88px !important;
  }
}


/* V9 FIX: restore readability and flow on homepage services/testimonials */
.section-light {
  background: linear-gradient(180deg, #0f1726 0%, #101a2c 100%) !important;
  color: #ffffff !important;
}

.section-title,
.section-title h2,
.section-light h2,
.section-light h3 {
  color: #ffffff !important;
}

.section-title p,
.section-light p {
  color: #cbd3e1 !important;
}

/* Core service cards */
.card {
  background: #172235 !important;
  color: #ffffff !important;
  border: 1px solid rgba(212,175,55,0.16) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28) !important;
}

.card h3 {
  color: #ffffff !important;
  font-size: 23px !important;
}

.card p {
  color: #cbd3e1 !important;
  font-size: 16px !important;
}

/* Testimonials */
.testimonial {
  background: #172235 !important;
  color: #ffffff !important;
  border: 1px solid rgba(212,175,55,0.16) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28) !important;
}

.testimonial p {
  color: #d8deea !important;
}

.testimonial strong {
  color: #d4af37 !important;
}

/* Slightly reduce spacing so section flows better */
section {
  padding: 68px 0 !important;
}

.section-title {
  margin-bottom: 42px !important;
}

.grid-3 {
  gap: 24px !important;
}

/* Remove number blocks cleanly if any remain */
.icon {
  display: none !important;
}

/* Keep product cards readable if they appear on dark sections */
.product-card {
  background: #172235 !important;
  border: 1px solid rgba(212,175,55,0.16) !important;
}

.product-card h3 {
  color: #ffffff !important;
}

.product-card p {
  color: #cbd3e1 !important;
}

@media (max-width: 620px) {
  section {
    padding: 54px 0 !important;
  }
}


footer a{
  transition:0.25s ease;
  text-decoration:none;
}

footer a:hover{
  opacity:0.82;
}



/* V11 clean footer contact links */
.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
}

.footer-contact-link:hover {
  color: #d4af37 !important;
  opacity: 1 !important;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.65);
  color: #d4af37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.linkedin-icon {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.whatsapp-icon {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

footer .footer-grid > div:last-child p {
  display: none;
}

.contact-info a {
  color: #d4af37 !important;
  font-weight: 800;
}


/* V13 FINAL QA FIXES */

/* Make the main Get a Quote button readable everywhere */
.btn,
.nav-links .btn,
a.btn,
button.btn {
  color: #050914 !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}

.nav-links .btn.active,
.nav-links a.btn.active {
  color: #050914 !important;
  opacity: 1 !important;
}

/* Make disabled-looking active quote button still readable on contact page */
.nav-links .btn:hover,
.nav-links a.btn:hover {
  color: #050914 !important;
}

/* Clean footer contact rows */
.footer-contact-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.footer-contact-link:hover {
  color: #d4af37 !important;
  opacity: 1 !important;
}

.footer-contact-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(212,175,55,0.65) !important;
  color: #d4af37 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.linkedin-icon {
  background: #0a66c2 !important;
  border-color: #0a66c2 !important;
  color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.whatsapp-icon {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
}

/* Contact page/info links */
.contact-info a {
  color: #d4af37 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.contact-info a:hover {
  text-decoration: underline !important;
}

/* Ensure dark cards always have readable text */
.card h3,
.product-card h3,
.testimonial strong,
.glass-card h3,
.trust-card h3 {
  color: #ffffff;
}

.card p,
.product-card p,
.testimonial p,
.glass-card p,
.trust-card p {
  color: #cbd3e1;
}

/* Keep WhatsApp floating button softer but readable */
.whatsapp-float {
  background: linear-gradient(135deg, #2f8f7a, #49a58d) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}


/* V14 FINAL VISIBILITY FIXES */

/* Gold buttons: keep dark readable text */
.btn:not(.btn-outline) {
  background: linear-gradient(135deg, #d4af37, #b98a20) !important;
  color: #050914 !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}

/* Outline buttons in dark hero sections must stay visible */
.btn-outline,
a.btn-outline,
.hero .btn-outline {
  background: rgba(5, 9, 20, 0.35) !important;
  color: #ffffff !important;
  border: 1px solid #d4af37 !important;
  box-shadow: none !important;
}

/* CTA band buttons were blending in: make them high-contrast */
.cta-band .btn,
.cta-band a.btn,
section .cta-band .btn {
  background: #050914 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22) !important;
  text-decoration: none !important;
  user-select: none;
}

.cta-band .btn:hover,
.cta-band a.btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Make CTA band itself slightly less harsh and more premium */
.cta-band {
  background: linear-gradient(135deg, #d4af37, #b98a20) !important;
  color: #050914 !important;
}

.cta-band h2,
.cta-band p {
  color: #050914 !important;
}

/* Prevent accidental blue text-selection look on CTA buttons */
.cta-band .btn::selection,
.btn::selection,
.nav-links a::selection {
  background: transparent;
  color: inherit;
}

/* Contact/footer link consistency */
.footer-contact-link,
.footer-contact-link span:last-child {
  color: #ffffff !important;
}

.footer-contact-link:hover span:last-child {
  color: #d4af37 !important;
}

/* Make form/enquiry submit buttons readable */
form .btn,
form button.btn {
  background: linear-gradient(135deg, #d4af37, #b98a20) !important;
  color: #050914 !important;
}

/* Ensure card text remains readable across dark theme */
.card h3,
.product-card h3,
.testimonial strong,
.glass-card h3,
.trust-card h3 {
  color: #ffffff !important;
}

.card p,
.product-card p,
.testimonial p,
.glass-card p,
.trust-card p {
  color: #cbd3e1 !important;
}
