:root {
  --navy: #0f1728;
  --navy-2: #121d31;
  --gold: #d9ab34;
  --gold-dark: #b78816;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --text: #2f3440;
  --muted: #6f7785;
  --line: #e6e8ee;
  --shadow: 0 16px 45px rgba(8, 15, 30, 0.1);
  --radius: 22px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img,
video,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--navy);
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--navy);
}

p {
  color: var(--muted);
  font-size: 16px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c655 100%);
  color: #1b1b1b;
  box-shadow: 0 14px 30px rgba(217, 171, 52, 0.28);
}

.btn-primary:hover,
.about-outline-btn:hover,
.hero-btn-outline:hover {
  transform: translateY(-2px);
}

.about-outline-btn {
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
}

/* Topbar */
.topbar {
  background: #07152c;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

.topbar-item svg {
  width: 16px;
  height: 16px;
  fill: #d4af37;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 23, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
}

/* Hero */
.hero-gold-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: #1a1206;
}

.hero-gold-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gold-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 18, 6, 0.88), rgba(58, 36, 8, 0.52)),
    linear-gradient(to top, rgba(42, 25, 5, 0.45), rgba(255, 196, 79, 0.08));
  z-index: 1;
}

.hero-gold-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 205, 90, 0.14),
    transparent 30%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-gold-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-gold-left {
  max-width: 760px;
}

.hero-gold-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 215, 140, 0.08);
  border: 1px solid rgba(255, 215, 140, 0.22);
  color: #ffd66e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-gold-left h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.03;
  font-weight: 800;
  color: #fff8ec;
  margin-bottom: 22px;
}

.hero-gold-left h1 span {
  display: block;
  color: #f4c44f;
  text-shadow: 0 4px 18px rgba(212, 175, 55, 0.18);
}

.hero-gold-left p {
  max-width: 680px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-gold-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #d9ab34 0%, #ffd76b 100%);
  color: #1b1305;
  box-shadow: 0 14px 32px rgba(217, 171, 52, 0.34);
}

.hero-btn-outline {
  border: 1px solid rgba(255, 215, 140, 0.24);
  color: #fff6e7;
  background: rgba(255, 215, 140, 0.06);
}

.hero-gold-right {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.hero-gold-main-card {
  width: 100%;
  max-width: 470px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 220, 150, 0.16),
    rgba(80, 48, 10, 0.16)
  );
  border: 1px solid rgba(255, 215, 140, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-card-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 207, 90, 0.14);
  color: #ffd45f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-gold-main-card h3 {
  color: #fff7ea;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-floating-box {
  width: 100%;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 220, 150, 0.1);
  border: 1px solid rgba(255, 215, 140, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-floating-box strong {
  display: block;
  color: #fff7ea;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-floating-box span {
  color: rgba(255, 243, 220, 0.72);
  font-size: 14px;
}

/* Stats */
.stats {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.stat-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stat-card h3 {
  color: var(--gold-dark);
  font-size: 34px;
  margin-bottom: 8px;
}

/* About */
.about-grid,
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.about-visual {
  position: relative;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 20px;
  border-radius: 20px;
  width: 290px;
  max-width: calc(100% - 48px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-badge p {
  margin-top: 8px;
  color: #5f6572;
}

.about-list {
  display: flex;
  gap: 18px;
  margin: 25px 0 30px;
}

.about-list li {
  flex: 1;
  background: #fbfbfb;
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #e6ebf2;
  text-align: center;
}

.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Cards */
.services {
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f9 100%);
}

.services-grid,
.process-grid,
.features-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.service-card,
.feature-card,
.process-card,
.homepage-product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.svg-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.12);
}

.svg-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.dark-icon-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card ul,
.homepage-product-card ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.service-card li,
.homepage-product-card li {
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.service-card li::before,
.homepage-product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-card {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::after {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: rgba(217, 171, 52, 0.16);
}

/* Homepage products */
.homepage-products-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 171, 52, 0.06),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.homepage-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.homepage-product-card {
  transition: 0.3s ease;
}

.homepage-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 23, 40, 0.1);
}

.featured-gold {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf4 100%);
}

.featured-silver {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.homepage-product-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 171, 52, 0.12);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.silver-badge {
  background: rgba(122, 137, 160, 0.12);
  color: #5b6677;
}

.homepage-products-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* Home contact */
.home-contact-section {
  background: #fff;
}

.home-contact-head {
  margin-bottom: 28px;
}

.home-contact-list {
  display: grid;
  gap: 18px;
}

.home-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--off-white);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.home-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.home-contact-item a {
  color: inherit;
}

.contact-form {
  display: block;
  background: var(--navy);
  border-radius: 28px;
  padding: 34px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-form h3,
.contact-form p {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.enquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
}

.enquiry-form select option {
  background: #1a2438;
  color: #ffffff;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: rgba(240, 198, 85, 0.45);
  box-shadow: 0 0 0 4px rgba(217, 171, 52, 0.12);
}

.form-submit-btn {
  width: 100%;
  border: none;
}

/* Footer */
.footer {
  background: #0d1321;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  margin-bottom: 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 4px;
}

.footer-logo {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.68);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #d4af37, #f0c655);
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  fill: #111;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c655 100%);
  color: #111;
}

.footer-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-credit-link {
  color: var(--gold);
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-credit-link:hover {
  color: #f0c655;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
}

@media (max-width: 1100px) {
  .hero-gold-content,
  .about-grid,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .homepage-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-gold-section {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  @media (max-width: 768px) {
    .topbar {
      display: block;
    }

    .topbar-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 10px 0;
    }

    .topbar-left {
      display: none;
    }

    .topbar-right {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      align-items: flex-start;
    }

    .topbar-item {
      font-size: 13px;
      line-height: 1.5;
    }
  }

  .topbar-item a,
  .home-contact-item a,
  .footer-contact a {
    color: inherit;
    text-decoration: none;
  }

  .topbar-item a:hover,
  .home-contact-item a:hover,
  .footer-contact a:hover {
    color: var(--gold);
  }

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 72px;
    padding: 10px 0;
  }

  .logo-img {
    height: 46px;
    max-width: 180px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 22px;
    border-radius: 14px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(15, 23, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-gold-section {
    padding: 95px 0 45px;
    align-items: flex-start;
  }

  .hero-gold-content {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-gold-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    padding: 10px 14px;
    margin-bottom: 18px;
  }

  .hero-gold-left h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-gold-left p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .hero-gold-buttons,
  .about-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-btn,
  .btn,
  .about-outline-btn {
    width: 100%;
  }

  .hero-gold-right {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-gold-main-card,
  .hero-floating-box {
    max-width: 100%;
    width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-gold-main-card h3 {
    font-size: 22px;
    line-height: 1.22;
  }

  .stats {
    margin-top: 0;
    padding-top: 18px;
  }

  .stats-grid {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-list {
    flex-direction: column;
  }

  .about-visual {
    height: 360px;
  }

  .services-grid,
  .features-grid,
  .process-grid,
  .homepage-products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field,
  .field.full {
    grid-column: 1 / -1;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
  }

  .form-grid textarea {
    min-height: 130px;
  }

  .homepage-products-cta .btn,
  .footer-btn {
    width: 100%;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .footer-logo-img {
    height: 60px;
    max-width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }

  .logo-img {
    height: 42px;
    max-width: 165px;
  }

  .hero-gold-section {
    padding: 90px 0 40px;
  }

  .hero-gold-left h1 {
    font-size: 30px;
  }

  .hero-gold-left p {
    font-size: 14px;
  }

  .hero-gold-main-card,
  .hero-floating-box,
  .contact-form,
  .about-card,
  .service-card,
  .feature-card,
  .process-card,
  .homepage-product-card,
  .stat-card {
    padding: 18px 16px;
  }

  .hero-gold-main-card h3 {
    font-size: 20px;
  }
}
