/*
font-family: 'Cabinet Grotesk Regular';
font-family: 'Cabinet Grotesk Thin';
font-family: 'Cabinet Grotesk Extralight';
font-family: 'Cabinet Grotesk Light';
font-family: 'Cabinet Grotesk Medium';
font-family: 'Cabinet Grotesk Bold';
font-family: 'Cabinet Grotesk Extrabold';
font-family: 'Cabinet Grotesk Black';
*/
@font-face {
  font-family: 'Cabinet Grotesk Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Regular'), url('../fonts/CabinetGrotesk-Regular.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Thin';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Thin'), url('../fonts/CabinetGrotesk-Thin.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Extralight';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Extralight'), url('../fonts/CabinetGrotesk-Extralight.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Light';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Light'), url('../fonts/CabinetGrotesk-Light.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Medium'), url('../fonts/CabinetGrotesk-Medium.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Bold'), url('../fonts/CabinetGrotesk-Bold.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Extrabold';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Extrabold'), url('../fonts/CabinetGrotesk-Extrabold.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Black';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Black'), url('../fonts/CabinetGrotesk-Black.woff') format('woff');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  --navy: #09274F;
  --navy-deep: #0f1a32;
  --navy-light: #2D4769;
  --orange: #e86c2c;
  --orange-light: #f08040;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --gray: #222;
  --light-gray: #e5e7eb;
  --text: #1f2937;
  --nav-h: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: normal;
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 2;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-spinner {
  width: 110px;
  height: 110px;
  border: 3px solid transparent;
  border-top-color: var(--navy);
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 3px solid transparent;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 5%;
  border-radius: 20px;
  padding: 10px 50px;
  background: #fff;
  transition: all ease-in-out 0.4s;
}

nav.scrolled {
  background: #fff;
  margin: 0;
  padding: 12px 5%;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-img img {
  max-height: 109px;
  object-fit: contain;
}

nav.scrolled .nav-logo-text {
  color: var(--navy);
}

nav.scrolled .nav-logo-img img {
  max-height: 60px;
}

.nav-center {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Medium';
  font-weight: normal;
  position: relative;
  transition: color 0.2s;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: #09274F;
  font-weight: 600;
}

nav.scrolled .nav-links a.active {
  color: var(--navy);
}

nav.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 6px;

  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Medium';
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

nav.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  display: flex;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 100%;
}

.mobile-menu ul {
  list-style: none;
  padding: 8px 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu ul li:last-child {
  border: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 24px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--orange);
  background: var(--off-white);
}

.mobile-menu-cta {
  padding: 8px 24px 24px;
}

.mobile-menu-cta .nav-cta {
  width: 100%;
  justify-content: center;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 45, 0.65) 0%, rgba(10, 20, 45, 0.42) 50%, rgba(10, 20, 45, 0.72) 100%);
}

.slide-1 {
  background-image: url(../images/slide1.jpg);
}

.slide-2 {
  background-image: url(../images/slide2.jpg);
}

.slide-3 {
  background-image: url(../images/slide3.jpg);
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-content {
  position: absolute;
  text-align: center;
  color: white;
  max-width: 980px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s;
  pointer-events: none;
}

.hero-slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slide-content h2,
.hero-slide-content h1 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.16;
  font-weight: normal;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-content p {
  font-size: clamp(0.88rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 960px;
  margin: 0 auto 36px;
  line-height: 1.50;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: white;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 1.02rem;
  line-height: 1.30;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.45);
}

.btn-white {
  background: #fff;
  color: #222;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 1.02rem;
  line-height: 1.30;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.45);
  color: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

/* ===== ABOUT ===== */
.about-wrap {
  margin: 0;
  padding: 60px 0;
  background: url(../images/bg-about.png) 0 0 repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-image-box img {
  max-width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 1rem;
  background: linear-gradient(90deg, rgba(9, 39, 79, 0.33) 0%, rgba(255, 255, 255, 0) 100%);

  color: var(--gray);
  border-left: 3px solid var(--gray);

  padding: 6px 0 6px 12px;
  margin-bottom: 16px;
}

.about-content h2 {
  letter-spacing: 1px;
  font-family: 'Cabinet Grotesk Medium';
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-content h2 span {
  color: var(--orange);
}

.about-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.badge {
  padding: 5px 20px;
  border-left: 3px solid var(--orange);
}

.badge h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.badge p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  margin-top: 8px;
}

.btn-navy:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ===== STATS ===== */
.stats {
  background: var(--white);
  padding: 40px 5%;
  display: flex;
  justify-content: center;
}

.stats-inner {
  display: flex;
  max-width: 1600px;
  width: 100%;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--light-gray);
}

.stat-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.3);
}

.stat-icon-box i {
  color: white;
  font-size: 1.2rem;
}

.stat-number {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 0 0 12px 0;
}

.stat-label {
  font-family: 'Cabinet Grotesk Medium';
  font-size: 1.2rem;
  color: var(--gray);
}

/* ===== STRENGTHS ===== */
.strengths {
  background: var(--navy);
  padding: 96px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-tag {
  border-color: var(--white);
  color: var(--white);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(9, 39, 79, 0.33) 100%);
}

.section-header h2 {
  letter-spacing: 1px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: white;
  line-height: 1.25;
}

.section-header h2 span {
  color: var(--orange);
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
}

.strength-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s;
}

.strength-card:hover {
  transform: translateY(-10px);
}

.strength-icon-box {
  width: 80px;
  height: 80px;

  background: linear-gradient(180deg, #143B71 33.17%, #1559B5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.strength-icon-box i {
  color: var(--orange);
  font-size: 1.2rem;
}

.strength-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.learn-link {
  font-size: 1.4rem;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.2s;
}

.learn-link:hover {
  gap: 22px;
}

/* ===== MINERALS ===== */
.minerals {
  padding: 96px 5%;
  background: #F3F3F3;
}

.minerals .section-header h2 {
  color: var(--navy);
}

.minerals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto 48px;
}

.mineral-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #d4d4d4;
  overflow: hidden;
  transition: all 0.35s;
}

.mineral-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.mineral-img {
  height: 300px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 12px;
}

.mineral-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.mineral-card:hover .mineral-img img {
  transform: scale(1.06);
}

.mineral-body {
  padding: 22px 0;
}

.mineral-body h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.mineral-body p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.btn-read {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-read:hover {
  background: var(--navy);
  color: white;
}

.minerals-cta {
  text-align: center;
}

.btn-all {
  background: var(--navy);
  color: white;
  padding: 13px 36px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-all:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  padding: 96px 5%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url(../images/bg-form.jpg) center/cover;
}

.contact-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: white;
  padding: 48px 44px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.contact-box h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.contact-box h2 span {
  color: var(--orange);
}

.contact-box p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group .fi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 0.82rem;
  width: 16px;
  text-align: center;
  pointer-events: none;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 14px 15px 40px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
  background: white;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row .form-group:first-child {
  flex: 0 0 105px;
}

.phone-row .form-group:last-child {
  flex: 1;
}

.display-block {
  width: 100%;
}

/* ===== CAPTCHA ===== */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.captcha-img-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.captcha-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  border: 1.5px solid var(--light-gray);
  display: block;
}

.captcha-refresh {
  background: var(--navy);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.captcha-refresh.spinning {
  animation: captcha-spin 0.5s ease;
}

@keyframes captcha-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.captcha-row input[name="captcha"] {
  flex: 1;
  min-width: 0;
}

/* Captcha inside contact-box (index/about CTA) */
.contact-box .captcha-row {
  margin-bottom: 14px;
}

.contact-box .captcha-img {
  height: 48px;
  border-color: var(--light-gray);
}

.contact-box .captcha-row input[name="captcha"] {
  padding: 15px 14px 15px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-box .captcha-row input[name="captcha"]:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
  background: white;
}

/* Captcha inside contact-form-side (contact page) */
.contact-form-side .captcha-row {
  margin-bottom: 0;
}

.contact-form-side .captcha-img {
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.contact-form-side .captcha-row input[name="captcha"] {
  padding: 18px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.contact-form-side .captcha-row input[name="captcha"]:focus {
  border-color: var(--navy);
  background: #fff;
  outline: none;
  box-shadow: 0 10px 30px rgba(9, 39, 79, 0.05);
}

@media (max-width: 480px) {
  .captcha-row {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-img-wrap {
    justify-content: center;
  }

  .captcha-img {
    height: 44px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: white;
  padding: 72px 5% 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-logo-img {
  width: 200px;
  height: 140px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img img {
  max-height: 114px;
  object-fit: contain;
}

.footer-logo-wrap span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.footer-brand>p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.75;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-left: 27px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  font-family: 'Cabinet Grotesk Regular';
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin-bottom: 25px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-top: 2px;
}

.contact-item p {
  font-size: 1.2rem;
  color: white;
  line-height: 1.5;
}

.contact-item a {
  color: #fff;
  text-decoration: none
}

.contact-item a:hover {
  color: var(--orange)
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fff
}

.copyRight {
  display: flex;
  justify-content: space-between
}

.copyRight a {
  color: #fff;
  text-decoration: none
}

.copyRight a:hover {
  color: var(--orange)
}

/* ===== FLOATING BUTTONS ===== */
.wa-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wapulse 2.2s ease infinite;
}

@keyframes wapulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7
  }

  60% {
    transform: scale(1.55);
    opacity: 0
  }
}

.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  opacity: 0;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {

  nav,
  nav.scrolled {
    margin: 0;
    padding: 10px 20px;
    border-radius: 0
  }
}

@media (max-width: 1024px) {
  .contact-box {
    max-width: 600px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .minerals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .nav-links {
    gap: 30px;
  }

  .nav-logo-img img {
    max-height: 60px
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image-box img {
    height: 300px;
  }

  .strengths-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-wrap {
    padding: 40px 20px;
  }

  .about-image-box img {
    height: auto;
    width: 100%
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 80px;
  }

  .nav-center,
  .nav-cta {
    display: none;
  }

  .mobile-menu-cta .nav-cta {
    display: block
  }

  .hamburger {
    display: flex;
  }

  .stats-inner {
    flex-direction: column;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .minerals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .contact-box {
    padding: 36px 22px;
  }

  .phone-row {
    flex-direction: column;
    gap: 0;
  }

  .phone-row .form-group:first-child {
    flex: auto;
  }

  .hero-arrow {
    display: none;
  }

  .hero-slide-content h2,
  .hero-slide-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .about-badges {
    grid-template-columns: 1fr 1fr;
  }

  .mineral-img {
    height: 220px;
  }

  .copyRight {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  /* Inner pages */


  .content-section {
    padding: 70px 5%;
    background: #f9f9f9;
  }

  .content-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .content-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--navy);
  }

  .content-section h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--navy);
  }

  .content-section p,
  .content-section ul,
  .content-section li {
    color: var(--gray);
    line-height: 1.75;
  }

  .content-section ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin-bottom: 20px;
  }

  .page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 28px;
  }

  .page-grid article {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  }

  .page-grid article h3 {
    color: var(--navy);
    margin-bottom: 8px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 24px;
  }

  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
  }

  .contact-form-inner {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }

  .contact-form-inner label {
    font-weight: 600;
    margin-top: 8px;
  }

  .contact-form-inner input,
  .contact-form-inner textarea {
    width: 100%;
    border: 1px solid #d3d6dc;
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 1rem;
  }

  .contact-form .contact-info {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  @media (max-width: 991px) {

    .page-grid,
    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .contact-form {
      grid-template-columns: 1fr;
    }


  }


}

@media (max-width: 540px) {
  .minerals-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    padding: 30px 30px 30px 0;
  }

  .about-badges {
    grid-template-columns: 1fr;
  }

  .about-wrap {
    padding: 60px 5%;
  }

  .strengths {
    padding: 64px 5%;
  }

  .minerals {
    padding: 64px 5%;
  }

  .contact-section {
    padding: 64px 5%;
  }

  footer {
    padding: 48px 5% 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a {
    width: 210px;
    text-align: center;
  }

  .hero-slide-content h2,
  .hero-slide-content h1 {
    font-size: 1.75rem;
  }

  .strength-card h3 {
    font-size: 1.6rem;
  }

}

/* =============================================
   ABOUT US PAGE
   ============================================= */

/* --- Inner Banner (about) --- */
.inner-banner {
  min-height: 460px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.about-banner {
  background-image: url('../images/about-img.jpg');
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 39, 79, 0.68);
}

.inner-banner .container {
  position: relative;
  z-index: 1;
  padding: 240px 15px 80px;
}

.inner-banner .section-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  margin-bottom: 16px;
}

.inner-banner h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: #fff;
  font-family: 'Cabinet Grotesk Bold';
  margin: 0;
}

.inner-banner h1 span {
  color: var(--orange);
}

.inner-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-top: 15px;
}

/* --- Who We Are section --- */
.about-who {
  padding: 96px 5%;
  background: var(--white);
}

.about-who-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-who-content h2,
.about-who-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-who-content h2 span,
.about-who-title span {
  color: var(--orange);
}

.about-who-content p,
.about-who p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-who-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-navy-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  margin-top: 8px;
}

.btn-navy-outline:hover {
  background: var(--navy);
  color: white;
}

.about-who-image {
  position: relative;
}

.about-who-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.about-trust-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: white;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-trust-badge-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-trust-badge-text strong {
  display: block;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.about-trust-badge-text span {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}

/* --- Stats (about page, navy bg) --- */
.about-stats {
  background: var(--navy);
  padding: 56px 5%;
}

.about-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.about-stats-inner .stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.about-stats-inner .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.about-stats-inner .stat-number {
  color: white;
}

.about-stats-inner .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Vision & Mission --- */
.about-vm {
  padding: 96px 5%;
  background: var(--off-white);
}

.about-vm-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-vm-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-vm-header h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.about-vm-header h2 span {
  color: var(--orange);
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.vm-card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 0 20px 0 100%;
}

.vm-card-deco.navy {
  background: linear-gradient(135deg, rgba(9, 39, 79, 0.05), transparent);
}

.vm-card-deco.orange {
  background: linear-gradient(135deg, rgba(232, 108, 44, 0.05), transparent);
}

.vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.vm-icon.navy-bg {
  background: var(--navy);
}

.vm-icon.orange-bg {
  background: var(--orange);
}

.vm-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.vm-label.navy-text {
  color: var(--navy);
}

.vm-label.orange-text {
  color: var(--orange);
}

.vm-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.vm-card p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Core Values --- */
.about-values {
  padding: 96px 5%;
  background: var(--white);
}

.about-values-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.about-values-heading {
  position: sticky;
  top: 120px;
}

.about-values-heading h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-values-heading h2 span {
  color: var(--orange);
}

.about-values-heading p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateX(6px);
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(9, 39, 79, 0.08);
}

.value-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #143B71 33%, #1559B5 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Industries --- */
.about-industries {
  padding: 96px 5%;
  background: var(--off-white);
}

.about-industries-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-industries-header h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.about-industries-header h2 span {
  color: var(--orange);
}

.about-industries-header p {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.75;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--navy);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #143B71, #1559B5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.about-industries-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- About page responsive --- */
@media (max-width: 1024px) {
  .about-who-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-vm-grid {
    grid-template-columns: 1fr;
  }

  .about-values-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-values-heading {
    position: static;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-trust-badge {
    left: 0;
    bottom: -20px;
    right: 0;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .inner-banner {
    min-height: inherit;
  }

  .inner-banner .container {
    padding: 180px 15px 80px;
  }

  .about-who {
    padding: 64px 5%;
  }

  .about-stats {
    padding: 40px 5%;
  }

  .about-stats-inner {
    flex-direction: column;
  }

  .about-stats-inner .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-vm {
    padding: 64px 5%;
  }

  .about-values {
    padding: 64px 5%;
  }

  .about-industries {
    padding: 64px 5%;
  }

  .about-who-btns {
    flex-direction: column;
  }

  .about-who-btns a {
    text-align: center;
  }

  .contact-main {
    padding: 40px 0;
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .about-who-image {
    overflow: visible;
  }
}

/* --- Minerals Page Clean Content-First Design --- */
.minerals-page {
  padding: 80px 0;
  background: var(--white);
}

.mineral-card-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 40px;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s;
}

.mineral-card-row:hover {
  border-color: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.mineral-card-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image Side (40%) */
.mineral-image-side {
  flex: 0.4;
  min-width: 0;
}

.mineral-image-side img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Content Side (60%) */
.mineral-content-side {
  flex: 0.6;
  min-width: 0;
}

.m-badge-small {
  display: inline-block;
  padding: 4px 12px;
  background: #f3f3f3;
  color: #666;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mineral-content-side h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.mineral-content-side h2 span {
  color: var(--orange);
}

.m-desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.m-desc:last-of-type {
  margin-bottom: 28px;
}

/* Inquire Button */
.btn-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-wa-alt:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {

  .mineral-card-row,
  .mineral-card-row:nth-child(even) {
    flex-direction: column;
    padding: 25px;
    gap: 30px;
  }

  .mineral-image-side,
  .mineral-content-side {
    flex: 1;
    width: 100%;
  }

  .mineral-image-side img {
    height: 280px;
  }

  .mineral-content-side h2 {
    font-size: 2rem;
  }

  .btn-wa-alt {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:640px) {
  .minerals-page {
    padding: 40px 0
  }
}

/* =============================================
   STRENGTHS PAGE
   ============================================= */
.strengths-page {
  padding: 90px 0;
  background: #fff;
}

.strengths-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.strengths-intro h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.strengths-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-item {
  background: var(--off-white);
  padding: 50px 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
}

.strength-item:hover {
  background: #fff;
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(9, 39, 79, 0.1);
}

.strength-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.strength-icon svg {
  color: var(--orange);
}

.strength-item h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.strength-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .strengths-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .strengths-showcase {
    grid-template-columns: 1fr;
  }

  .strengths-intro h2 {
    font-size: 2.2rem;
  }

  .strengths-page {
    padding: 40px 0;
  }
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page {
  padding: 80px 0;
  background: #fff;
}

.gallery-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 39, 79, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(232, 108, 44, 0.4);
  z-index: 5;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.4rem;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-overlay h4 {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery-grid-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .gallery-card {
    height: 170px;
  }

  .gallery-page {
    padding: 40px 0;
  }
}

/* =============================================
   UNIFIED CONTACT PAGE
   ============================================= */
.contact-main {
  padding: 100px 0;
  background: #fff;
}

.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-details {
  flex: 0.8;
}

.contact-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-title span {
  color: var(--orange);
}

.contact-form-side {
  flex: 1.2;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.detail-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  color: var(--navy);
  font-size: 1.3rem;
}

.detail-text h4 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.detail-text p,
.detail-text a {
  font-size: 1.15rem;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.detail-text a:hover {
  color: var(--orange);
}

.form-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 30px;
}

.contact-form-side form {
  display: grid;
  gap: 20px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-side input,
.contact-form-side select,
.contact-form-side textarea {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
  border-color: var(--navy);
  background: #fff;
  outline: none;
  box-shadow: 0 10px 30px rgba(9, 39, 79, 0.05);
}

@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .contact-details,
  .contact-form-side {
    flex: 1;
    width: 100%;
  }

  .contact-form-side {
    padding: 40px 25px;
  }
}

/* --- intlTelInput styling fixes --- */
.iti {
  width: 100%;
  display: block;
  margin-bottom: 0;
}

.iti__flag-container {
  z-index: 5;
}

.iti input,
.iti input:focus {
  padding-left: 95px !important;
}

.form-group .iti__flag-container {
  left: 0 !important;
}

.contact-form-side .iti input {
  padding-left: 95px !important;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.contact-box .iti input {
  padding-left: 95px !important;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid var(--light-gray);
}