/**************************
  PAGE TITLE (For all pages)
***************************/
.page-main {
  min-height: 100vh;
  padding: 100px 6% 40px 6%;
  margin: 0;
  background: #f5f5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
}

.page-title {
  font-family: 'Russo One', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: #f89939 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin: 0 !important;
  padding-left: 16px;
  border-left: 4px solid #64c6c2;
  line-height: 1.2;
  
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFade 1s ease-out 0.5s forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width: 1023px) {
  .page-main {
    padding: 80px 5% 30px 5%;
  }
  
  .page-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 600px) {
  .page-main {
    padding: 70px 4% 20px 4%;
  }
  
  .page-hero {
    margin-bottom: 25px;
  }
  
  .page-title {
    font-size: 1.75rem !important;
    padding-left: 12px;
    border-left-width: 3px;
  }
}

@media screen and (max-width: 480px) {
  .page-main {
    padding: 60px 3% 15px 3%;
  }
  
  .page-hero {
    margin-bottom: 20px;
  }
  
  .page-title {
    font-size: 1.5rem !important;
    padding-left: 10px;
    border-left-width: 3px;
    letter-spacing: 0.1em !important;
  }
}

/**************************
  CONTENT STYLES START HERE
  (Add new page CSS below this line)
***************************/

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.8s ease-out; }
.fade-in-delay-1 { animation: fadeIn 0.8s ease-out 0.2s backwards; }
.fade-in-delay-2 { animation: fadeIn 0.8s ease-out 0.4s backwards; }
.fade-in-delay-3 { animation: fadeIn 0.8s ease-out 0.6s backwards; }

/* ========== HERO ========== */
.minerals-hero-elite {
    height: 90vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(248,153,57,0.25) 100%), 
                url('https://vegaunieora.com/Images/MH1.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(248,153,57,0.12) 0%, transparent 60%);
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge-elegant {
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-title-elegant {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.title-accent {
    color: #f89939;
}

.hero-subtitle-elegant {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-hero-elegant {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #f89939 0%, #ff7a1f 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 12px 40px rgba(248,153,57,0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-hero-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 60px rgba(248,153,57,0.5);
}

/* ========== SECTION HEADERS ========== */
.section-header-elite {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge-elite {
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f89939 0%, #ff7a1f 100%);
    color: #fff;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-badge-elite.white-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
}

.section-header-elite h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.2rem;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}

.section-header-elite.white-text h2 {
    color: #fff;
}

.section-subtitle-elite {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-weight: 300;
    margin-top: 12px;
}

.section-header-elite.white-text .section-subtitle-elite {
    color: rgba(255,255,255,0.9);
}

/* ========== CAPABILITIES - FLATTER CARDS ========== */
.capabilities-compact {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f6f8f7 0%, #fff8f1 100%);
}

.capabilities-row-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-hover-card {
    height: 220px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(100,198,194,0.18);
    box-shadow: 0 16px 38px rgba(38,74,78,0.1);
}

.capability-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?w=800&h=600&auto=compress&cs=tinysrgb') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    z-index: 2;
    top: 0;
    left: 0;
}

.capability-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41,82,86,0.76) 0%, rgba(100,198,194,0.58) 100%);
    z-index: -1;
}

.front-icon {
    font-family: 'Russo One', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    color: #fff;
    min-width: 54px;
    min-height: 54px;
    border: 1px solid rgba(255,255,255,0.44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    padding: 0;
    flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.capability-front h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.08rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin: 8px 0 0 0;
    padding: 0;
}

.capability-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(242,250,249,0.98) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    box-sizing: border-box;
    color: #2d5f63;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 3;
    top: 0;
    left: 0;
}

.capability-hover-card:hover .capability-back {
    transform: translateY(0);
}

.capability-hover-card:hover .capability-front {
    transform: translateY(-100%);
}

.capability-back h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.02rem;
    margin: 0 0 12px 0;
    padding: 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #2d5f63;
}

.capability-back p {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    padding: 0;
    color: #4f777a;
}

.back-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.back-tags span {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    padding: 5px 12px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ========== PRECISION APPS ========== */
.precision-apps-section {
    padding: 90px 6%;
    background: #fff;
}

.industry-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 70px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card-dark {
    background: linear-gradient(135deg, rgba(248,153,57,0.25) 0%, rgba(255,122,31,0.2) 100%);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 10px;
    border: 1px solid rgba(248,153,57,0.3);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(248,153,57,0.15);
}

.industry-card-dark:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(248,153,57,0.35) 0%, rgba(255,122,31,0.3) 100%);
    box-shadow: 0 15px 40px rgba(248,153,57,0.25);
    border-color: rgba(248,153,57,0.5);
}

.industry-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.minerals-industry-svg {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.industry-card-dark h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.industry-card-dark p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #222;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.industry-highlight {
    font-family: 'Russo One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #d17a2e;
    text-transform: uppercase;
    font-weight: 700;
}

.metals-showcase-grid-dark {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.metal-box-dark {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #d9d9d9 100%);
    padding: 25px 15px;
    border-radius: 8px;
    border: 1px solid rgba(200,200,200,0.5);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset -2px -2px 5px rgba(255,255,255,0.7),
        inset 2px 2px 5px rgba(0,0,0,0.1),
        0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.metal-box-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    pointer-events: none;
}

.metal-box-dark:hover {
    transform: translateY(-8px);
    box-shadow: 
        inset -2px -2px 5px rgba(255,255,255,0.7),
        inset 2px 2px 5px rgba(0,0,0,0.1),
        0 15px 35px rgba(0,0,0,0.2);
}

.metal-symbol {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #c86b1f;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.1em;
}

.metal-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* ========== WHY PARTNER - CENTER ALIGNED ========== */
.why-partner-section {
    position: relative;
    padding: 80px 6%;
    overflow: hidden;
}

.why-partner-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/416405/pexels-photo-416405.jpeg?w=1600&h=900&auto=compress&cs=tinysrgb') center/cover;
    z-index: 0;
}

.why-partner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,100,80,0.85) 0%, rgba(20,80,65,0.85) 100%);
    z-index: 1;
}

.why-partner-section .minerals-container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-box {
    padding: 40px 25px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.why-box-1 { background: rgba(95,190,121,0.25); }
.why-box-2 { background: rgba(248,153,57,0.25); }
.why-box-3 { background: rgba(100,198,194,0.25); }
.why-box-4 { background: rgba(212,165,116,0.25); }

.why-box:hover {
    transform: translateY(-12px);
    backdrop-filter: blur(20px);
}

.why-box h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.why-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ========== TECHNICAL EXCELLENCE - REDESIGNED ========== */
.technical-excellence-section {
    padding: 90px 6%;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.expertise-showcase-unique {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
    align-items: stretch;
}

.expertise-featured-glossy {
    background: linear-gradient(135deg, #f9fbfa 0%, #fff4e8 100%);
    border-radius: 12px;
    color: #1a1a1a;
    box-shadow: 0 18px 45px rgba(38,74,78,0.12);
    border: 1px solid rgba(100,198,194,0.18);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-image-section {
    width: 100%;
    height: 33%;
    background: url('/Images/minerals/basemetalsrefine.webp') center/cover no-repeat;
    position: relative;
    min-height: 200px;
}

.featured-content {
    flex: 1;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.featured-icon {
    font-family: 'Russo One', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    color: #f89939;
    margin-bottom: 12px;
}

.minerals-featured-svg {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 12px;
}

.expertise-featured-glossy h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #2d5f63;
    margin: 0 0 12px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: none;
}

.expertise-featured-glossy p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #496c70;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feat-stat {
    background: rgba(255,255,255,0.82);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(100,198,194,0.16);
}

.feat-stat-value {
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem;
    color: #d17a2e;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: none;
    letter-spacing: 0.1em;
}

.feat-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.expertise-side-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.expertise-card-compact {
    background: linear-gradient(135deg, #2d5f63 0%, #4f888c 100%);
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.4s ease;
    box-shadow: 0 14px 32px rgba(38,74,78,0.16);
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    align-items: stretch;
}

.card-with-overlay {
    background-size: cover;
    background-position: center;
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.28;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pm-bg-overlay {
    background-image: url('/Images/minerals/pgmmetals.webp');
}

.re-bg-overlay {
    background-image: url('/Images/minerals/Ree.webp');
}

.qa-bg-overlay {
    background-image: url('/Images/minerals/qa.webp');
}

.card-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.expertise-card-compact:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #f89939 0%, #4f888c 100%);
    box-shadow: 0 18px 48px rgba(38,74,78,0.22);
}

.card-ico {
    font-family: 'Russo One', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.82);
    display: inline-block;
    margin-bottom: 10px;
}

.minerals-compact-svg {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-bottom: 12px;
}

.expertise-card-compact h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.12rem;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.expertise-card-compact p {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    font-weight: 400;
}

.card-highlight {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.4);
}

.capabilities-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.capability-matrix-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.capability-matrix-item:hover {
    transform: translateY(-5px);
    border-color: #f89939;
    box-shadow: 0 12px 30px rgba(248,153,57,0.12);
}

.matrix-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.capability-matrix-item h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.capability-matrix-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========== SERVICES ========== */
.services-section {
    padding: 90px 6%;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?w=1600&h=900&auto=compress&cs=tinysrgb') center/cover;
    z-index: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,120,110,0.92) 0%, rgba(20,90,85,0.92) 100%);
    z-index: 1;
}

.services-section .minerals-container {
    position: relative;
    z-index: 2;
}

.services-timeline {
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    font-weight: 400;
}

.card-highlight {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.4);
}

.capabilities-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.capability-matrix-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.capability-matrix-item:hover {
    transform: translateY(-5px);
    border-color: #f89939;
    box-shadow: 0 12px 30px rgba(248,153,57,0.12);
}

.matrix-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.capability-matrix-item h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.capability-matrix-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========== SERVICES ========== */
.services-section {
    padding: 90px 6%;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?w=1600&h=900&auto=compress&cs=tinysrgb') center/cover;
    z-index: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,120,110,0.92) 0%, rgba(20,90,85,0.92) 100%);
    z-index: 1;
}

.services-section .minerals-container {
    position: relative;
    z-index: 2;
}

.services-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(248,153,57,0.9), rgba(100,198,194,0.9));
    transform: translateX(-50%);
}

.service-item {
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
    margin-bottom: 45px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.service-item:nth-child(even) {
    text-align: right;
}

.service-item:nth-child(even) .service-number {
    order: 2;
}

.service-item:nth-child(odd) .service-number {
    justify-self: end;
}

.service-item:nth-child(even) .service-number {
    justify-self: start;
}

.service-number {
    display: flex;
    justify-content: center;
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f89939 0%, #ff7a1f 100%);
    color: #fff;
    border-radius: 6px;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(248,153,57,0.4);
    border: 1px solid rgba(248,153,57,0.5);
    letter-spacing: 0.1em;
}

.service-box {
    background: linear-gradient(135deg, rgba(64,180,170,0.25) 0%, rgba(95,190,121,0.2) 100%);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 8px;
    border: 1.5px solid rgba(248,153,57,0.4);
    transition: all 0.4s ease;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-item:hover .service-box {
    background: linear-gradient(135deg, rgba(248,153,57,0.25) 0%, rgba(100,198,194,0.2) 100%);
    border-color: rgba(248,153,57,0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.service-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ========== CTA ========== */
.cta-section {
    padding: 70px 6%;
    background: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.cta-box p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.btn-cta {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg, #f89939 0%, #ff7a1f 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 10px 35px rgba(248,153,57,0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(248,153,57,0.4);
}

/* ========== CONTAINER ========== */
.minerals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

html { 
    scroll-behavior: smooth; 
}

/* ========== RESPONSIVE - CONTENT ========== */
@media (max-width: 1023px) {
    .expertise-showcase-unique { grid-template-columns: 1fr; }
    .featured-stats { grid-template-columns: repeat(3, 1fr); }
    .capabilities-matrix { grid-template-columns: repeat(2, 1fr); }
    .capabilities-row-compact { grid-template-columns: 1fr; }
    .industry-showcase { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .metals-showcase-grid-dark { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .hero-title-elegant { font-size: 2rem; }
    .section-header-elite h2 { font-size: 2rem; }
    .expertise-featured-glossy h3 { font-size: 1.3rem; }
    .expertise-featured-glossy p { font-size: 0.85rem; }
    .featured-stats { grid-template-columns: 1fr; }
    .capabilities-matrix { grid-template-columns: 1fr; }
    .industry-showcase { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .metals-showcase-grid-dark { grid-template-columns: repeat(2, 1fr); }
    .cta-box h2 { font-size: 2rem; }
    .expertise-featured-glossy { height: auto; }
    .featured-image-section { height: 200px; }
}


/* Hero Harmonization */
.portfolio-hero--minerals {
  height: auto;
  min-height: calc(100vh - 80px);
  padding: 48px 6%;
}

.portfolio-hero--minerals .portfolio-hero__title {
  margin-bottom: 16px;
}

.portfolio-hero--minerals .portfolio-hero__subtitle {
  max-width: 760px;
}

/* Responsive Services Timeline */
@media (max-width: 768px) {
    .services-timeline::before {
        left: 17px;
        transform: none;
    }
    .service-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
        padding-left: 50px;
        width: auto;
    }
    .service-item:nth-child(even) {
        text-align: left;
    }
    .service-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        z-index: 3;
    }
    .service-item:nth-child(even) .service-number {
        order: unset;
    }
    .service-box {
        width: auto;
        align-self: stretch;
        margin: 0;
        padding: 20px;
        box-sizing: border-box;
    }
}
