/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FAF9F6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: #FFD700;
  color: #333333;
}

.btn-primary:hover {
  background-color: #E5C100;
}

.btn-secondary {
  background-color: #B8860B;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #996D04;
}



/* ===== Stats Section ===== */
.stats-section {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.stats-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: gold;
  font-weight: 700;
}

/* Grid Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Stat Item */
.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation class (added by JS) */
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.1);
}

.stat-item h3 {
  font-size: 3rem;
  color: gold;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.1rem;
  color: #ddd;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding: 60px 15px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stats-section h2 {
    font-size: 2rem;
  }
}



/* Header / Hero */
.site-header {
  background: url('images/hero-gold.jpg') center/cover no-repeat;
  color: white;
  position: relative;
  padding: 40px 0;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 160px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FFD700;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  
}

.hero {
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 12s infinite;
  transition: opacity 1s ease-in-out;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}

/* Image styling */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

/* Text overlay */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
  padding: 20px;
  max-width: 700px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e5c100;
}

/* Fade animation */
@keyframes fade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-slider {
    height: 300px;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
  }
}


/* What We Do / Services */
.what-we-do {
  background-color: #ffffff;
  padding: 60px 0;
}

.what-we-do h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #B8860B;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-item {
  background: #FAF9F6;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-item h3 {
  color: #333333;
  margin-bottom: 15px;
}

.service-item p {
  color: #555555;
}

/* About Us */
.about-us {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 20px;
}

.about-text p {
  color: #555555;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Testimonials */
.testimonials {
  background-color: #FAF9F6;
  padding: 60px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #B8860B;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-item h4 {
  margin-top: 20px;
  color: #333333;
}

/* Contact Us */
.contact-us {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  color: #333333;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  width: fit-content;
  align-self: flex-start;
}



/* CSS */
.buy‑gold‑cta {
  background: #f9f7f3; /* light warm background, change as needed */
  padding: 60px 20px;
}

.buy‑gold‑cta .container {
  max-width: 1200px;
  margin: 0 auto;
}

.buy‑gold‑cta .cta‑content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.buy‑gold‑cta .text‑area {
  flex: 1 1 500px;
  padding: 20px;
}

.buy‑gold‑cta .text‑area h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.buy‑gold‑cta .text‑area p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: #555;
}

.buy‑gold‑cta .btn {
  display: inline‑block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin‑right: 15px;
}

.buy‑gold‑cta .btn‑primary {
  background: #b8860b; /* golden color */
  color: white;
}

.buy‑gold‑cta .btn‑secondary {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
}

.buy‑gold‑cta .image‑area {
  flex: 1 1 400px;
  padding: 20px;
  text-align: center;
}

.buy‑gold‑cta .image‑area img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.buy‑gold‑cta .features {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.buy‑gold‑cta .feature {
  flex: 1 1 250px;
  padding: 20px;
  text-align: center;
}

.buy‑gold‑cta .feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.buy‑gold‑cta .feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.buy‑gold‑cta .feature p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max‑width: 768px) {
  .buy‑gold‑cta .cta‑content {
    flex-direction: column‑reverse;
  }
  .buy‑gold‑cta .text‑area, .buy‑gold‑cta .image‑area {
    flex: 1 1 100%;
    padding: 10px;
  }
  .buy‑gold‑cta .text‑area h1 {
    font-size: 2rem;
  }
  .buy‑gold‑cta .features {
    flex-direction: column;
  }
  .buy‑gold‑cta .feature {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}



/* Buy Gold Steps Section */
.buy-gold-steps {
  background: #fff8e1; /* Light gold-ish background */
  padding: 60px 20px;
}

.buy-gold-steps .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.buy-gold-steps .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 300px;
  background: #ffffff;
  border: 1px solid #f0e6cc;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  color: #b8860b;
  font-weight: bold;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    margin-bottom: 20px;
  }
}


/* Where We Operate From Section */
/* Section Background */
.premium-section {
  background: linear-gradient(to bottom right, #f4f4f4, #ffffff);
  padding: 70px 20px;
  text-align: center;
}

/* Container */
.premium-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Titles */
.premium-section .section-title {
  font-size: 2rem;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-weight: 700;
}

.premium-section .section-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
}

/* Card Layout */
.location-cards {
  display: flex;
  justify-content: center;
}

/* Premium Gold Card */
.gold-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 450px;
  position: relative;
  border: 2px solid #d4af37; /* Gold border */
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover Glow */
.gold-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
}

/* Shine Animation */
.gold-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 250%;
  height: 250%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 215, 0, 0.2) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: 0.8s;
}

.gold-card:hover::after {
  top: 100%;
  left: 100%;
}

/* Icon Styling */
.icon-wrapper {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

/* Flag Icon */
.flag-icon {
  width: 70px;
  border-radius: 6px;
  margin-bottom: 18px;
}

/* Card Text */
.gold-card h3 {
  font-size: 1.35rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 700;
}

.gold-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gold-card {
    max-width: 100%;
  }
}


/* PAYMENT METHODS SECTION */
.payment-methods {
  background: #fffef9;
  padding: 60px 20px;
  text-align: center;
}

.payment-methods .container {
  max-width: 1200px;
  margin: 0 auto;
}

.payment-methods .section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.payment-methods .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.payment-item img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.payment-item span {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  .payment-item {
    width: 80px;
  }

  .payment-item img {
    width: 40px;
  }
}


/* Footer */
.site-footer {
  background-color: #333333;
  color: #FAF9F6;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #FFD700;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #FAF9F6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #FFD700;
}

.socials a {
  margin-right: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 0.9rem;
}

/* ===== Responsive Breakpoints ===== */

@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

}

@media (max-width: 576px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
  }
  .slider-wrapper {
    height: 200px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fffefb;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 20px 0;
}

.logo {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links .active {
  color: #FFD700;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('images/gold-background.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
}

/* Products */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px auto;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.price {
  display: block;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: #DAA520;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #000;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e6c200;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}

.social-icons a {
  color: #FFD700;
  margin: 0 10px;
  font-size: 20px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fffefb;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 20px 0;
}

.logo {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links .active {
  color: #FFD700;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('images/gold-background.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #DAA520;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
  background-color: #fdf5e6;
  padding: 60px 0;
}

.grid-2 {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.value-box h3 {
  color: #DAA520;
  margin-bottom: 10px;
}

.value-box p {
  line-height: 1.6;
}

/* Why Choose Us */
.why-us-section {
  padding: 60px 0;
  text-align: center;
}

.why-us-section h2 {
  margin-bottom: 40px;
  color: #DAA520;
}

.grid-3 {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.why-box i {
  font-size: 36px;
  color: #DAA520;
  margin-bottom: 10px;
}

.why-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}

.social-icons a {
  color: #FFD700;
  margin: 0 10px;
  font-size: 20px;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fffefb;
  color: #333;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: #000;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  font-weight: bold;
}

.nav-links .active,
.nav-links li a:hover {
  color: #FFD700;
}

/* Hero */
.hero-contact {
  background: url('images/contact-bg.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-contact h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-contact p {
  font-size: 18px;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
}

.contact-info h2,
.contact-form h2 {
  color: #DAA520;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-info i {
  color: #DAA520;
  margin-right: 10px;
}

.social-icons a {
  color: #DAA520;
  margin-right: 15px;
  font-size: 20px;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.btn-submit {
  background: #DAA520;
  color: #000;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #b98b00;
}

/* Map Section */
.map-section iframe {
  display: block;
  width: 100%;
  border: none;
  margin-top: -30px;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .hero-contact h1 {
    font-size: 36px;
  }
}



/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fffefb;
  color: #333;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: #000;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links .active,
.nav-links li a:hover {
  color: #FFD700;
}

/* Hero */
.hero-services {
  background: url('images/services-banner.jpg') center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero-services h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-services p {
  font-size: 18px;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 0;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  color: #DAA520;
  font-size: 22px;
  margin: 15px;
}

.service-card p {
  font-size: 16px;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-services h1 {
    font-size: 36px;
  }

  .hero-services p {
    font-size: 16px;
  }
}






.menu-toggle {
  display: none;
  font-size: 2rem;
  color: rgb(200, 200, 54);
  cursor: pointer;
  background-color: #000;
  padding-left: 50px;
  background-image: none;
  text-decoration: none;
  border-bottom: none;
  border-top: none;
  border-left: none;
}

/* ===== Responsive: Mobile & Tablet ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;             /* hidden by default on small screens */
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    border-bottom: none;
    border-top: none;
  }

  /* When the nav is toggled open */
  .nav-links.active {
    display: flex;
  }
}


@media (max-width: 576px) {
  .navbar {
    flex-direction: row;         /* ✅ keep items side-by-side */
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;               /* hidden by default on small screens */
    flex-direction: column;
    width: 100%;
    background: #000;            /* optional: background for mobile menu */
    position: absolute;
    top: 70px;                   /* adjust to below header */
    left: 0;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



#formStatus {
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}







.additional‑services‑diamonds {
  background-color: #ffffff;
  padding: 60px 20px;
}

.additional‑services‑diamonds .container {
  max‑width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.additional‑services‑diamonds .text‑block {
  flex: 1 1 50%;
}

.additional‑services‑diamonds .small‑heading {
  font‑size: 1rem;
  letter‑spacing: 2px;
  color: #B8860B; /* gold tone */
  text‑transform: uppercase;
  margin‑bottom: 10px;
}

.additional‑services‑diamonds .main‑heading {
  font‑size: 2.8rem;
  color: #333333;
  margin‑bottom: 20px;
}

.additional‑services‑diamonds .intro‑paragraph {
  font‑size: 1.125rem;
  color: #555555;
  line‑height: 1.6;
  margin‑bottom: 30px;
}

.additional‑services‑diamonds .image‑block {
  flex: 1 1 50%;
  text‑align: center;
  
}

.additional‑services‑diamonds .image‑block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .additional‑services‑diamonds .main‑heading {
    font-size: 2.4rem;
  }
  .additional‑services‑diamonds .intro‑paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .additional‑services‑diamonds .container {
    flex-direction: column;
  }
  .additional‑services‑diamonds .image‑block {
    margin-top: 30px;
  }
  .additional‑services‑diamonds .main‑heading {
    font-size: 2rem;
  }
  .additional‑services‑diamonds .intro‑paragraph {
    font-size: 0.95rem;
  }
}



.top‑contact‑bar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.6); /* semi‑transparent dark background */
  color: #fff;
  font-size: 0.9rem;
  z-index: 9999;
}

.top‑contact‑bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
}

.top‑contact‑bar .contact‑info span {
  margin: 0 15px;
  display: inline-block;
  align-items: center;
}

.top‑contact‑bar .contact‑info span i {
  margin-top: 6px;
  color: #f4c44c;
}

/* Ensure body content is pushed down so it’s not hidden behind this bar */
body {
  padding-top: 35px; /* adjust height of contact bar if you change padding */
}

/* Responsive: smaller screen adjustments */
@media (max-width: 600px) {
  .top-contact‑bar .contact‑info {
    flex-direction: column;
    gap: 5px;
  }
  body {
    padding-top: 50px; /* maybe a bit more for stacked items */
  }
}


