@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #004B8D;
  --primary-orange: #E17A3E;
  --section-blue: #1E90FF;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --metal-dark: #111316;
  --metal-grey: #1f2328;
  --metal-silver: #a0aec0;
  --text-dark: #1a1e23;
  --text-grey: #4A4A4A;
  --text-light: #FFFFFF;
  --border-color: #E2E8F0;
  --glow-color: rgba(225, 122, 62, 0.4);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1300px;
  --section-padding: 80px 0;
  --transition-fast: all 0.2s ease-out;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --fs-h1: 4.5rem;
  --fs-h2: 3.2rem;
  --fs-h3: 2.2rem;
  --fs-body: 1.1rem;
  --fs-small: 1rem;
  --heading-gap: 30px;
  --paragraph-gap: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; width: 100%; position: relative; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-grey);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: #0a0a0a; /* Sophisticated Deep Onyx for maturity */
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: var(--heading-gap);
}

p { font-size: var(--fs-body); margin-bottom: var(--paragraph-gap); color: var(--text-grey); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONSISTENT CONTAINER WIDTH ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: none;
}
.btn:hover::after { animation: shineSweep 0.6s ease-out forwards; }

.btn-orange { background-color: var(--primary-orange); color: var(--bg-white); border: 2px solid var(--primary-orange); }
.btn-orange:hover { background-color: transparent; border-color: var(--primary-orange); color: var(--primary-orange); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(225,122,62,0.3); }
.btn-blue { background-color: var(--primary-blue); color: var(--bg-white); border: 2px solid var(--primary-blue); }
.btn-blue:hover { background-color: transparent; border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-white { background-color: var(--bg-white); color: var(--section-blue); border: 2px solid var(--bg-white); }
.btn-white:hover { background-color: transparent; color: var(--bg-white); }
.btn-outline { background-color: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); }
.btn-outline:hover { background-color: var(--primary-blue); color: var(--bg-white); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,75,141,0.3); }

@keyframes shineSweep { 100% { left: 150%; } }

/* ===== TYPOGRAPHY GLOBALS ===== */
.section-title { font-size: 2.8rem; margin-bottom: 25px; color: var(--text-dark); }
.section-subtitle { 
    color: rgba(0,0,0,0.5); 
    font-family: var(--font-heading); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 5px; /* Architectural spacing */
    margin-bottom: 15px; 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem; 
}

.section-subtitle::before {
    content: '';
    width: 25px;
    height: 1px;
    background: #000;
    opacity: 0.3;
}

.text-center { text-align: center; }
.text-light { color: #ffffff !important; }

/* In case of center titles, center the subtitle line too and add a symmetric line */
.text-center .section-subtitle, 
.team-header-centered .section-subtitle { 
    justify-content: center; 
}

.text-center .section-subtitle::after,
.team-header-centered .section-subtitle::after {
    content: '';
    width: 25px;
    height: 1px;
    background: #000;
    opacity: 0.3;
}

/* ===== ENQUIRE WIDGET (REFINED MONOCHROME) ===== */
.enquire-widget {
  position: fixed; 
  right: 0; 
  top: 50%; 
  transform: translateY(-50%); 
  z-index: 9999;
  background-color: #000; /* Architecture Black */
  color: #fff; 
  padding: 30px 14px;
  border-radius: 12px 0 0 12px; 
  font-family: var(--font-heading); 
  font-weight: 800;
  font-size: 0.9rem; 
  letter-spacing: 3.5px; 
  text-transform: uppercase;
  writing-mode: vertical-rl; 
  text-orientation: mixed;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 15px;
  cursor: pointer; 
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
  box-shadow: -15px 0 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
}

.enquire-widget:hover { 
  padding-right: 25px; 
  background-color: #111; 
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.enquire-widget i { 
  transform: rotate(90deg); 
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; padding: 15px 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; transition: var(--transition); background: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
  border-top: 4px solid #111; /* Changed from Orange to Industrial Onyx */
}
.header.scrolled { padding: 10px 5%; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.header .nav-item { color: var(--text-dark); }

.logo { display: flex; align-items: center; gap: 10px; color: #111; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; }
.logo-img { height: 70px; width: auto; object-fit: contain; transition: var(--transition); }
.header.scrolled .logo-img { height: 55px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-item { color: rgba(0,0,0,0.6); font-weight: 700; font-size: 0.9rem; position: relative; padding: 10px 0; transition: color 0.3s; font-family: var(--font-heading); letter-spacing: 2px; text-transform: uppercase; }
.nav-item:hover, .nav-item.active { color: #000; }
.nav-item::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 0; height: 2px; background-color: #000; transition: var(--transition); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }


.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: #fff;
  min-width: 250px; opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: var(--transition); border-top: 4px solid var(--primary-orange);
  padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: block; padding: 12px 25px; color: var(--text-dark); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; letter-spacing: 1px; border-bottom: 1px solid #f0f0f0; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--bg-light); color: var(--primary-orange); padding-left: 30px; }

.mobile-menu-btn { display: none; color: var(--primary-blue); font-size: 2rem; cursor: pointer; transition: 0.3s; z-index: 1002; }
.mobile-menu-footer { display: none; }

/* ===== MONOCHROME PARALLAX HERO (V8) ===== */
.parallax-full-hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
    margin-top: 0;
}

.parallax-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-full-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65); /* Deep black cover as requested */
    z-index: 2;
}

.hero-content-wide-parallax {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 90px; /* Synchronized with wide architecture */
}

@media (max-width: 992px) {
    .hero-content-wide-parallax { padding-left: 60px; }
    .hero-title-parallax { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-content-wide-parallax { padding: 80px 25px 0; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
    .hero-left-content { max-width: 100%; align-items: center; text-align: center; animation: fadeInSlideUpV12 1s ease-out; }
    .hero-title-parallax { font-size: 2.2rem; text-align: center; }
    .hero-desc-parallax { margin: 0 auto 30px; font-size: 1rem; }
    .hero-btns-parallax { justify-content: center; flex-direction: column; width: 100%; }
    .hero-btns-parallax .btn { width: 100%; }
}

@keyframes fadeInSlideUpV12 {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-left-content {
    max-width: 800px;
    color: #fff;
    animation: fadeInSlideLeftV12 1s ease-out;
}

@keyframes fadeInSlideLeftV12 {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}




.hero-title-parallax {
    font-size: 3.5rem; /* Reduced for a cleaner look */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1.5px; /* Refined tight spacing */
    color: #fff !important; /* PURE WHITE FONT AS REQUESTED */
}

.hero-desc-parallax {
    font-size: 1.15rem; /* Reduced for better balance */
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 580px;
}


.hero-btns-parallax {
    display: flex;
    gap: 20px;
}

.parallax-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

/* Slider Base Classes with Slow Parallax Zoom */
.h-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 12s ease-out;
    transform: scale(1.1);
}

.h-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.h-slide.prev {
    opacity: 0;
    z-index: 1;
}

.pd-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.pd-dot.active {
    background: var(--primary-orange);
    transform: scale(1.3);
    border-color: var(--primary-orange);
}

@media (max-width: 1200px) {
    .hero-title-parallax { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .hero-title-parallax { font-size: 2.8rem; }
    .hero-desc-parallax { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    /* Global Heading Centering */
    h1, h2, h3, h4, h5, h6, .section-title { text-align: center !important; }
    
    /* Hero Responsiveness */
    .parallax-full-hero { height: auto; min-height: 100vh; padding: 150px 0 100px; }
    .hero-content-wide-parallax { padding-left: 20px; padding-right: 20px; justify-content: center; }
    .hero-left-content { text-align: center; margin: 0 auto; width: 100%; }
    .hero-btns-parallax { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 15px; }
    .hero-title-parallax { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
    .hero-desc-parallax { font-size: 1.1rem; margin: 0 auto 40px; }
    .hero-full-overlay { background: rgba(0,0,0,0.75); }
    
    /* Centered Dots for Mobile Harmony */
    .parallax-dots { bottom: 30px; }

    /* Team/Principles Responsive */
    .values-premium-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .value-card-v3 { padding: 40px 30px !important; text-align: center; }
    .team-header-centered { text-align: center !important; }

    /* Partners/Split Content Responsive */
    .split-content { flex-direction: column !important; gap: 50px !important; text-align: center; }
    .split-text { width: 100% !important; text-align: center; }
    .split-img { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    .partner-card { padding: 20px !important; }
    
    /* Footer & General */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 40px; }
    .footer-links, .footer-contact { display: inline-block; text-align: center; padding: 0; }
    .footer-contact li { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; }
    .social-links { justify-content: center; }
}











@keyframes lineScroll {
    0% { top: -100%; }
    100% { top: 100%; }
}


@media (max-width: 1200px) {
    .hero-glass-frame { width: 55%; }
    .hero-title-framed { font-size: 4rem; }
}

@media (max-width: 992px) {
    .hero-glass-frame { width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 100%); padding-top: 150px; }
    .hero-title-framed { font-size: 3.5rem; }
    .hero-actions-framed { flex-direction: column; width: 100%; }
    .hero-actions-framed .btn { width: 100%; text-align: center; }
    .hero-nav-linear { flex-wrap: wrap; }
    .nav-bar-outer { width: 150px; }
}

@media (max-width: 768px) {
    .hero-title-framed { font-size: 2.8rem; }
    .hero-scroll-mini { display: none; }
}




/* ===== MONOCHROME SUB-HERO (V12) ===== */
.sub-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.sub-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-left: 90px !important; /* Matches home hero padding */
    text-align: left !important;
}

.sub-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.sub-hero-content .section-subtitle {
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.sub-hero-content .hero-description-v2 {
    max-width: 650px;
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.15rem;
    line-height: 1.7;
    border-left: none !important;
    padding-left: 0 !important;
}

@media (max-width: 992px) {
    .sub-hero-content { padding-left: 60px !important; }
    .sub-hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .sub-hero { height: auto; min-height: 50vh; padding: 120px 0 80px; }
    .sub-hero-content { padding: 0 30px !important; text-align: center !important; }
    .sub-hero-content h1 { font-size: 2.2rem; }
    .sub-hero-content .hero-description-v2 { font-size: 1.05rem; margin: 0 auto; }
}


/* ===== ENHANCED SLIDER EFFECTS (KEN BURNS + FADE) ===== */
.h-slide {
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s linear;
    transform: scale(1.1); /* Start zoomed in slightly */
}

.h-slide.active {
    opacity: 1;
    transform: scale(1); /* Zoom out slowly */
    z-index: 2;
}

.h-slide.prev {
    opacity: 0;
    z-index: 1;
}



.hero-actions-v2 {
    display: flex;
    gap: 20px;
}

.btn-orange-v2 {
    background: var(--primary-orange);
    color: #fff !important;
    padding: 20px 45px;
    font-weight: 800;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(225, 122, 62, 0.4);
}

.btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
    padding: 20px 45px;
    font-weight: 700;
    border-radius: 5px;
}

.btn-orange-v2:hover, .btn-glass:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Vertical Nav */
.hero-nav-vertical {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-dots-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-dot-item {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding-right: 40px;
    text-align: right;
}

.nav-dot-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    transition: all 0.4s;
}

.nav-dot-item:hover { color: #fff; }

.nav-dot-item.active {
    color: var(--primary-orange);
    transform: translateX(-15px);
}

.nav-dot-item.active::after {
    width: 45px;
    background: var(--primary-orange);
}

/* Scroll Indication */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 800;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite ease-in-out;
}

/* ===== BACKGROUND SECTIONS ===== */
.bg-light-sec { background-color: var(--bg-light); padding: var(--section-padding); }
.bg-white-sec { background-color: var(--bg-white); padding: var(--section-padding); }
.bg-blue-sec { background-color: var(--section-blue); color: var(--text-light); padding: var(--section-padding); }

/* ===== SECTION UTILITIES ===== */
.section-title { font-size: var(--fs-h2); margin-bottom: var(--heading-gap); }

/* ===== SPLIT SECTIONS ===== */
.split-content { display: flex; align-items: center; gap: 80px; }
.split-text { flex: 1; }
.split-img { flex: 1; }
.split-img img { width: 100%; height: auto; object-fit: cover; border-radius: 8px; }

/* ===== 3-COLUMN WHO WE ARE ===== */
.about-3col { display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr; gap: 40px; align-items: center; }
.about-3col-left { display: flex; flex-direction: column; align-items: flex-start; }
.about-3col-left .section-subtitle { margin-bottom: 5px; }
.about-3col-left .section-title { font-size: 3rem; margin-bottom: 5px; }
.about-highlight { color: var(--primary-orange); font-size: 1.1rem; font-style: italic; font-weight: 600; margin-bottom: 30px; }
.about-3col-mid { font-size: 1.05rem; color: var(--text-grey); line-height: 1.8; }
.about-3col-right { width: 100%; height: 100%; min-height: 350px; overflow: hidden; border-radius: 8px; }
.about-3col-right img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.about-3col-right:hover img { transform: scale(1.05); }

.portrait-img-enhanced {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .portrait-img-enhanced {
        height: 400px;
    }
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.grid-2 > * { display: flex; flex-direction: column; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; align-items: stretch; }

/* ===== WHY CHOOSE US CARDS ===== */
.metallic-card {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.metallic-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.metallic-card:hover::before { transform: scaleX(1); }
.metallic-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.glow-border-hover { position: relative; overflow: hidden; }
.glow-border-hover::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none; transform: scale(0.5);
}
.glow-border-hover:hover::after { opacity: 0.4; transform: scale(1); }

/* ===== RECYCLING SECTION ===== */
.recycling-pills { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 35px;
  border-radius: 5px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;
  font-size: 1rem; letter-spacing: 1px; transition: var(--transition);
  border: 2px solid var(--primary-blue); cursor: pointer; background: transparent; color: var(--primary-blue);
  min-width: 220px; height: 54px; box-sizing: border-box;
}
.pill-btn.active { background: var(--primary-orange); color: #fff; border-color: var(--primary-orange); box-shadow: 0 10px 20px rgba(225,122,62,0.2); }
.pill-orange { border-color: var(--primary-orange); color: var(--primary-orange); }

.recycling-slider-container { position: relative; display: flex; align-items: center; margin-top: 50px; gap: 20px; width: 100%; overflow: hidden; padding-bottom: 50px; }
.r-slider-wrapper { display: flex; gap: 20px; overflow-x: auto; flex: 1; min-width: 0; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; scroll-snap-type: x mandatory; }
.r-slider-wrapper::-webkit-scrollbar { display: none; }
.r-slide {
  flex: 0 0 calc(33.333% - 14px); position: relative; height: 280px;
  cursor: pointer; scroll-snap-align: start; overflow: hidden; border-radius: 12px;
}
.r-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.r-slide:hover img { transform: scale(1.1); }
.r-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); opacity: 0.8; transition: opacity 0.4s; }
.r-slide:hover::after { opacity: 1; }
.r-slide-content { position: absolute; bottom: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px; color: #fff; z-index: 2; transform: translateY(5px); transition: transform 0.4s ease; }
.r-slide:hover .r-slide-content { transform: translateY(0); }
.r-slide-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; }

.slider-arrow { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: none; cursor: pointer; transition: 0.3s; z-index: 10; font-size: 1rem; flex-shrink: 0; }
.slider-arrow:hover { transform: scale(1.1); box-shadow: 0 5px 15px rgba(0,75,141,0.3); }
.slider-pagination .dot { width: 12px; height: 12px; border-radius: 50%; background: #ccc; cursor: pointer; transition: 0.3s; display: inline-block; }
.slider-pagination .dot.active { background: var(--primary-orange); width: 30px; border-radius: 10px; }

/* ===== PRODUCT GRID ===== */
.borderless-card { text-align: center; border-radius: 12px; overflow: hidden; transition: all 0.5s ease; display: flex; flex-direction: column; height: 100%; }
.borderless-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.borderless-img { width: 100%; aspect-ratio: 1/1; margin-bottom: 20px; overflow: hidden; border-radius: 12px; flex-shrink: 0; }
.borderless-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.borderless-card:hover .borderless-img img { transform: scale(1.08); }
.borderless-title { font-size: 1.1rem; color: var(--text-dark); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; transition: color 0.3s; margin-top: auto; padding: 10px 0; }
.borderless-card:hover .borderless-title { color: var(--primary-orange); }

/* ===== MAP PRESENCE ===== */
.map-presence-new { background-color: #f2f2f2; position: relative; padding: 80px 0; }
.map-grid-2 { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; max-width: var(--container-width); margin: 0 auto; width: 100%; align-items: center; padding: 0 40px; }
.map-left h2 { font-size: 3rem; color: var(--text-dark); margin-bottom: 30px; letter-spacing: 2px; }
.map-left p { color: var(--text-grey); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }
.map-link { color: var(--primary-orange); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; transition: var(--transition); }
.map-link:hover { gap: 15px; }
.map-right img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }

/* ===== PARTNER CARDS ===== */
.partner-card {
  aspect-ratio: 4/3; background: #fff; border: 1px solid #eee; display: flex;
  align-items: center; justify-content: center; padding: 25px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); border-radius: 12px; cursor: pointer;
  min-height: 120px;
}
.partner-card img { max-height: 60px; max-width: 100%; filter: grayscale(100%); transition: all 0.4s ease; opacity: 0.7; object-fit: contain; }
.partner-card:hover { border-color: var(--primary-orange); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.partner-card:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* ===== TEAM PRINCIPLES ===== */
/* Team Section V3 - Premium Principles */
.team-section-v3 {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(0, 75, 141, 0.03), transparent),
                radial-gradient(circle at bottom left, rgba(225, 122, 62, 0.03), transparent);
}

.team-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.team-mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-top: 30px;
}

.values-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.value-card-v3 {
    position: relative;
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-outline-double {
    position: absolute;
    inset: -2px;
    border-radius: 17px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.value-card-v3.blue-theme .value-outline-double {
    border: 3px solid var(--primary-blue);
}

.value-card-v3.orange-theme .value-outline-double {
    border: 3px solid var(--primary-orange);
}

.value-icon-v3 {
    width: 80px;
    height: 80px;
    background: #fbfbfb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    border: 1px solid #eee;
}

.value-icon-v3 i {
    font-size: 2.2rem;
    transition: all 0.5s ease;
}

/* Themes */
.blue-theme .value-icon-v3 i { color: var(--primary-blue); }
.orange-theme .value-icon-v3 i { color: var(--primary-orange); }

.value-title-v3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-desc-v3 {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 0;
}

/* Hover States */
.value-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.value-card-v3:hover .value-outline-double {
    opacity: 1;
    inset: -10px;
}

.value-card-v3.blue-theme:hover .value-icon-v3 { background: var(--primary-blue); }
.value-card-v3.orange-theme:hover .value-icon-v3 { background: var(--primary-orange); }
.value-card-v3:hover .value-icon-v3 i { color: #fff; transform: rotateY(180deg); }

.value-card-v3:hover .value-title-v3 {
    color: var(--primary-blue);
}
.orange-theme:hover .value-title-v3 {
    color: var(--primary-orange);
}

@media (max-width: 1200px) {
    .values-premium-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .values-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .team-mission-text { font-size: 1.1rem; }
    .value-card-v3 { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .values-premium-grid { grid-template-columns: 1fr; }
}


/* ===== TIMELINE ===== */
.horizontal-timeline { display: flex; justify-content: space-between; align-items: flex-start; position: relative; margin-top: 50px; }
.horizontal-timeline::before { content: ''; position: absolute; top: 30px; left: 0; width: 100%; height: 3px; background: #eee; z-index: 1; }
.ht-node { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 15px; }
.ht-year { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 25px; display: block; }
.ht-dot { width: 22px; height: 22px; background: var(--bg-white); border: 4px solid var(--primary-orange); border-radius: 50%; margin: 0 auto 20px; outline: 6px solid var(--bg-white); position: relative; transition: 0.4s; }
.ht-node:hover .ht-dot { transform: scale(1.3); background: var(--primary-orange); }
.ht-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-dark); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ht-desc { font-size: 0.95rem; color: var(--text-grey); line-height: 1.6; }

/* ===== TEAM CARDS ===== */
.team-card { background: var(--bg-white); border: 1px solid #f0f0f0; text-align: center; border-radius: 12px; overflow: hidden; transition: all 0.5s ease; display: flex; flex-direction: column; height: 100%; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.team-img { height: 350px; width: 100%; object-fit: cover; filter: grayscale(20%); transition: 0.5s; flex-shrink: 0; }
.team-card:hover .team-img { filter: grayscale(0%); transform: scale(1.03); }
.team-info { padding: 30px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.team-info h4 { margin-bottom: 8px; font-size: 1.5rem; color: var(--primary-blue); }
.team-info p { color: var(--primary-orange); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; }

/* ===== PRODUCT DETAILS ===== */
.product-showcase { background: var(--bg-white); margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #eee; align-items: stretch; }
.p-img-box { height: 100%; min-height: 400px; overflow: hidden; }
.p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.p-img-box:hover img { transform: scale(1.05); }
.p-data-box { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.p-title { font-size: 2.4rem; margin-bottom: 20px; color: var(--text-dark); }
.p-desc { color: var(--text-grey); margin-bottom: 40px; font-size: 1.1rem; }

/* Ref Layout */
.ref-product-col { margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid #f0f0f0; }
.ref-product-col:last-child { border-bottom: none; padding-bottom: 0; }
.ref-title { font-size: 2.5rem; color: #000; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 3px solid var(--primary-orange); padding-bottom: 15px; display: inline-block; }
.ref-subtitle { font-size: 1.4rem; color: #000; font-family: var(--font-heading); font-weight: 700; margin-bottom: 20px; }
.ref-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; align-items: start; }
.ref-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); border: 1px solid #e5e5e5; }
.ref-table th, .ref-table td { padding: 14px 18px; border: 1px solid #e5e5e5; font-size: 0.95rem; text-align: left; transition: background 0.3s; }
.ref-table th { background: #f9f9f9; color: var(--text-dark); font-weight: 700; }
.ref-table tr:hover td { background: #f0f7ff; }
.ref-img { width: 100%; max-width: 450px; height: 350px; object-fit: cover; border: 1px solid #e5e5e5; border-radius: 8px; transition: transform 0.5s ease, box-shadow 0.5s ease; cursor: pointer; }
.ref-img:hover { transform: scale(1.03); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.ref-bullets { padding-left: 20px; margin-top: 20px; color: var(--text-grey); font-size: 0.95rem; line-height: 2; }
.ref-bullets li { margin-bottom: 10px; list-style-type: square; }

/* ===== CONTACT ===== */
.shadow-card { box-shadow: 0 30px 60px rgba(0,0,0,0.05); border-radius: 12px; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; border: 1px solid #eee; background: #fff; border-radius: 12px; overflow: hidden; align-items: stretch; }
.c-form { padding: 60px; background: #fff; display: flex; flex-direction: column; }
.form-group { margin-bottom: 25px; }
.c-form input, .c-form textarea { width: 100%; padding: 18px 20px; border: 1px solid #e0e0e0; font-family: var(--font-body); font-size: 1rem; outline: none; transition: 0.3s; background: #fafafa; border-radius: 6px; box-sizing: border-box; }
.c-form input:focus, .c-form textarea:focus { border-color: var(--primary-orange); background: #fff; box-shadow: 0 0 0 3px rgba(225,122,62,0.1); }
.c-info-box { padding: 60px; background: #fcfcfc; border-left: 1px solid #eee; display: flex; flex-direction: column; }
.c-item { display: flex; gap: 25px; align-items: flex-start; margin-bottom: 40px; }
.c-item i { font-size: 1.8rem; color: var(--primary-orange); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* Career */
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.career-grid > * { display: flex; flex-direction: column; justify-content: center; }
.career-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* ===== PREMIUM MONOCHROME FOOTER (V2) ===== */
.footer-wide {
    background: #050505; /* Deep black for ultra-premium look */
    color: #fff;
    padding-top: 100px;
    font-family: var(--font-body);
}

.footer-grid-wide {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 80px;
    padding: 0 90px 80px; /* Synchronized with 90px global padding */
}

.f-logo-v2 img {
    max-height: 130px; /* Increased for bolder branding */
    width: auto;
    margin-bottom: 40px;
    filter: brightness(1.1);
    transition: 0.4s;
}

.f-logo-v2:hover img { transform: scale(1.05); }

.f-desc-v2 {
    font-size: 1rem;
    color: #fff; /* Switched to White as requested */
    line-height: 1.9;
    max-width: 400px;
    margin-bottom: 40px;
    font-weight: 400;
}

.f-social-v2 {
    display: flex;
    gap: 15px;
}

.social-v2-item {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
}

.social-v2-item:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
    border-color: #fff;
}

.f-title-v2 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 40px;
    position: relative;
    color: #fff; /* Solid white */
    text-transform: uppercase;
}

.f-title-v2::before {
    content: '';
    position: absolute;
    left: -15px; 
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background: #fff; /* Solid white mark */
}

.f-links-v2 li {
    margin-bottom: 15px;
}

.f-links-v2 a {
    color: #fff; /* Solid white links */
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.f-links-v2 a:hover {
    padding-left: 5px;
    opacity: 0.7;
}

.f-contact-v2 li {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    color: #fff; /* Solid white contact text */
    font-size: 0.9rem;
    line-height: 1.7;
}

.f-contact-v2 i {
    color: #fff; /* Solid white icons */
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-bottom-wide {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 35px 90px;
    text-align: center;
}

.footer-bottom-wide p {
    font-size: 0.75rem;
    color: #fff; /* Solid white copyright for high contrast */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    opacity: 0.5;
}


/* ===== FOOTER RESPONSIVE REFINEMENT ===== */
@media (max-width: 1400px) {
    .footer-grid-wide { padding: 0 60px 80px; gap: 40px; }
    .footer-bottom-wide { padding: 35px 60px; }
}

@media (max-width: 1100px) {
    .footer-grid-wide { grid-template-columns: 1fr 1fr; padding: 0 40px 80px; gap: 60px; }
    .footer-col-brand { grid-column: span 2; text-align: center; }
    .footer-col-brand .f-desc-v2 { margin: 0 auto 30px; }
    .footer-col-brand .f-social-v2 { justify-content: center; }
}

@media (max-width: 768px) {
    .footer-wide { padding-top: 80px; text-align: center; }
    .footer-grid-wide { 
        grid-template-columns: 1fr; 
        padding: 0 25px 60px; 
        text-align: center; 
        gap: 50px; 
    }
    .footer-col-brand { grid-column: span 1; }
    .f-logo-v2 img { max-height: 100px; margin: 0 auto 35px; }
    .f-desc-v2 { margin: 0 auto 35px; font-size: 0.95rem; }
    .f-title-v2 { padding-left: 0; margin-bottom: 25px; }
    .f-title-v2::before { display: none; }
    .f-links-v2 { display: flex; flex-direction: column; align-items: center; padding: 0; }
    .f-links-v2 li { margin-bottom: 12px; }
    .f-links-v2 a { font-size: 0.8rem; }
    .f-contact-v2 { padding: 0; display: flex; flex-direction: column; align-items: center; }
    .f-contact-v2 li { flex-direction: column; align-items: center; text-align: center; gap: 10px; margin-bottom: 30px; }
    .footer-bottom-wide { padding: 30px 20px; }
    .footer-bottom-wide p { font-size: 0.65rem; letter-spacing: 2px; }
}



/* ===== SCROLL ANIMATIONS ===== */
.fade-in, .slide-in-left, .slide-in-right, .slide-up, .zoom-in { opacity: 0; will-change: transform, opacity; }
.fade-in { transform: translateY(30px); transition: all 1s cubic-bezier(0.16,1,0.3,1); }
.slide-in-left { transform: translateX(-50px); transition: all 1.2s cubic-bezier(0.16,1,0.3,1); }
.slide-in-right { transform: translateX(50px); transition: all 1.2s cubic-bezier(0.16,1,0.3,1); }
.slide-up { transform: translateY(50px); transition: all 1.2s cubic-bezier(0.16,1,0.3,1); }
.zoom-in { transform: scale(0.92) translateY(30px); transition: all 1.2s cubic-bezier(0.16,1,0.3,1); }

.fade-in.visible, .slide-in-left.visible, .slide-in-right.visible, .slide-up.visible, .zoom-in.visible {
  opacity: 1; transform: translate(0) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== TEXT REVEAL ANIMATION ===== */
.text-reveal { overflow: hidden; }
.text-reveal span { display: inline-block; transform: translateY(100%); opacity: 0; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), opacity 0.8s ease; }
.text-reveal.visible span { transform: translateY(0); opacity: 1; }

.char-reveal span { display: inline-block; opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.16,1,0.3,1); }
.char-reveal.visible span { opacity: 1; transform: translateY(0); }

/* Counter animation */
.count-up { font-variant-numeric: tabular-nums; }

/* ===== HOVER EFFECTS ===== */
.hover-lift { transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease !important; }
.hover-lift:hover { transform: translateY(-10px) scale(1.02) !important; z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.hover-slide-right { transition: transform 0.4s ease; display: inline-block; }
.hover-slide-right:hover { transform: translateX(8px); }

/* Section hover accent line */
.section-hover-line { position: relative; }
.section-hover-line::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 4px; background: var(--primary-orange); transition: width 0.6s ease; }
.section-hover-line:hover::before { width: 100%; }

/* ===== MOUSE PARALLAX LAYER ===== */
.parallax-container { position: relative; overflow: hidden; }
[data-parallax] { transition: transform 0.15s ease-out; will-change: transform; }

/* ===== SMOOTH ICON FLOAT ===== */
.float-icon { animation: smoothFloat 4s ease-in-out infinite; display: inline-block; }
@keyframes smoothFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 0.8s; }
.float-delay-3 { animation-delay: 1.6s; }
.float-delay-4 { animation-delay: 2.4s; }

/* Shimmer Reveal */
.shimmer-reveal { position: relative; overflow: hidden; }
.shimmer-reveal::after {
  content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); transition: opacity 0.3s;
}
.shimmer-reveal.visible::after { animation: shimmerAnim 1.5s ease-out 0.5s forwards; }
@keyframes shimmerAnim { 0% { left: -100%; opacity: 1; } 100% { left: 150%; opacity: 0; } }

.scale-reveal { overflow: hidden; }
.scale-reveal img { transition: transform 0.8s cubic-bezier(0.25,1,0.5,1); }
.scale-reveal:hover img { transform: scale(1.08); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important; animation-duration: 1ms !important;
    animation-iteration-count: 1 !important; scroll-behavior: auto !important;
    transition-duration: 0s !important; transition-delay: 0s !important;
  }
}

/* Logo Strip */
.logo-strip { display: flex; justify-content: center; gap: 60px; align-items: center; flex-wrap: wrap; margin-top: 50px; padding: 40px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.logo-strip img { height: 80px; filter: grayscale(100%); opacity: 0.5; transition: 0.4s; }
.logo-strip img:hover { filter: grayscale(0%); opacity: 1; }

/* Spec Table */
.data-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; font-family: var(--font-body); }
.data-table th, .data-table td { padding: 16px 20px; border-bottom: 1px solid #eee; font-size: 1rem; }
.data-table th { color: var(--primary-blue); text-align: left; width: 35%; font-weight: 700; }
.data-table tr:hover { background: #fcfcfc; }

.c-map-iframe { width: 100%; height: 300px; border: none; margin-top: 0; display: block; }

.metallic-bg { background: linear-gradient(135deg, var(--metal-dark), var(--metal-grey)); color: #fff; }
.metallic-bg .stat-label { color: var(--metal-silver); }
.metallic-bg .stat-number { color: #fff; font-size: 3rem; font-family: var(--font-heading); font-weight: 800; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .enquire-widget { display: none; }
  .container { padding: 0 30px; }
  .map-grid-2 { padding: 0 30px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 992px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100% !important; height: 100vh !important;
    background: var(--bg-white); display: flex !important; flex-direction: column; justify-content: flex-start;
    transition: 0.6s cubic-bezier(0.77,0,0.175,1); z-index: 1001; gap: 0;
    padding: 80px 30px; overflow-y: auto; text-align: left;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; left: 0; }
  .nav-item {
    color: var(--text-dark); font-size: 1.5rem; font-weight: 700; width: 100%; padding: 20px 0;
    border-bottom: 1px solid #f0f0f0; display: flex; align-items: center;
    transform: translateX(50px); opacity: 0; transition: 0.5s cubic-bezier(0.77,0,0.175,1);
  }
  .nav-links.active .nav-item { transform: translateX(0); opacity: 1; }
  .dropdown { width: 100%; display: block; border-bottom: 1px solid #f0f0f0; }
  .nav-links .dropdown .nav-item { border-bottom: none; }
  .dropdown-toggle { justify-content: space-between; width: 100%; padding-right: 10px; }
  .nav-links.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
  .nav-item::after { display: none; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: #f9f9f9; border: none; box-shadow: none; display: none; padding: 0; margin-top: 5px; width: 100%; }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown-item { padding: 15px 25px; font-size: 1.1rem; color: var(--text-grey); background: transparent; border-bottom: 1px solid #eee; }
  .mobile-menu-footer {
    display: block; width: 100%; margin-top: 50px; padding: 30px 0;
    border-top: 2px solid var(--primary-orange); opacity: 0; transition: 0.5s ease 0.5s; text-align: left;
  }
  .nav-links.active .mobile-menu-footer { opacity: 1; }
  .mobile-menu-footer p { font-size: 0.9rem; color: var(--text-grey); margin-bottom: 15px; letter-spacing: 1px; font-weight: 600; text-transform: uppercase; }
  .mobile-menu-footer .social-links { justify-content: flex-start; margin-left: -5px; }
  .mobile-menu-footer .social-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 5px; }
  .mobile-menu-footer .contact-email { margin-top: 20px; font-weight: 700; color: var(--primary-blue); font-size: 1.25rem; display: block; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 > * { display: flex; flex-direction: column; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-content { flex-direction: column; gap: 40px; }
  .about-3col { grid-template-columns: 1fr; }
  .about-3col-right { min-height: 250px; }
  .map-grid-2 { grid-template-columns: 1fr; }
  .r-slide { flex: 0 0 calc(50% - 10px); }
  .product-showcase { grid-template-columns: 1fr; }
  .p-img-box { min-height: 300px; }
  .p-data-box { padding: 40px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .c-info-box { border-left: none; border-top: 1px solid #eee; }
  .career-grid { grid-template-columns: 1fr; gap: 40px; }
  .career-grid > * { display: flex; flex-direction: column; }
  .horizontal-timeline { flex-direction: column; align-items: flex-start; }
  .horizontal-timeline::before { top: 0; left: 30px; width: 3px; height: 100%; }
  .ht-node { text-align: left; padding: 0 0 40px 60px; display: flex; flex-direction: column; width: 100%; }
  .ht-year { order: 1; margin-bottom: 5px; }
  .ht-title { order: 2; }
  .ht-desc { order: 3; }
  .ht-dot { order: 0; position: absolute; left: 19px; top: 10px; margin: 0; }
  .principles-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --fs-h1: 2.2rem;
    --fs-h2: 1.8rem;
    --fs-h3: 1.5rem;
    --heading-gap: 20px;
  }

  .container { padding: 0 20px; }
  .map-grid-2 { padding: 0 20px; }
  .header { padding: 10px 15px; }
  .logo-img { height: 50px; }

  /* MOBILE: Center-aligned headings, compact sections */
  .section-title, .section-subtitle { text-align: center !important; }
  .section-title { font-size: 1.8rem !important; }
  .section-subtitle { font-size: 0.85rem !important; }

  .page-hero { height: auto; min-height: 50vh; padding: 80px 20px; }
  .page-hero .container { padding: 0 15px; }
  .hero-title { font-size: 2rem !important; text-align: center; }
  .hero-desc { font-size: 1rem; text-align: center; margin: 0 auto 30px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; justify-content: center !important; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-counter { bottom: 15px; right: 15px; }
  .hero-counter .current { font-size: 1.8rem; }

  .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .r-slide { flex: 0 0 85%; height: 220px; }
  .slider-arrow { display: none; }
  .recycling-pills { flex-direction: column; width: 100%; }
  .pill-btn { width: 100%; border-radius: 5px; padding: 12px 20px; font-size: 0.85rem; min-width: auto; height: auto; }

  /* Footer stack handled above */

  .form-row { grid-template-columns: 1fr; gap: 15px; }
  .career-features { grid-template-columns: 1fr; }
  .c-form, .c-info-box { padding: 30px 20px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .principle-item { min-width: unset; }
  .principle-icon { height: 70px; }
  .principle-icon i { font-size: 3rem; }

  .about-3col-left { align-items: center; text-align: center; }
  .about-3col-mid { text-align: center; }

  .ref-grid { grid-template-columns: 1fr; gap: 20px; }
  .ref-title { font-size: 1.4rem; padding-bottom: 10px; margin-bottom: 25px; }
  .ref-bullets li { font-size: 0.9rem; }
  .ref-img { max-width: 100%; height: 250px; }

  .map-left h2 { font-size: 2rem; text-align: center; }
  .map-left p { text-align: center; }
  .map-left { text-align: center; }
  .map-link { justify-content: center; }

  .split-content { gap: 30px; }
  .split-text { text-align: center; }

  /* Compact sections on mobile */
  .bg-light-sec, .bg-white-sec { padding: 50px 0; }
  .map-presence-new { padding: 50px 0; }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 1.8rem;
    --fs-h2: 1.6rem;
  }
  .hero-title { font-size: 1.8rem !important; }
  .section-title { font-size: 1.5rem !important; }
  .btn { padding: 12px 25px; font-size: 0.85rem; }
}
/* ===== PARTNERSHIP CARD SECTION ===== */
.partnership-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.partnership-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    max-width: 1100px;
    margin: 0 auto;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.partnership-content {
    flex: 1;
    padding: 60px;
}

.partnership-img {
    flex: 1;
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.partnership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnership-card:hover .partnership-img img {
    transform: scale(1.08); /* Sophisticated subtle zoom on hover */
}

.partnership-content .section-subtitle {
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.partnership-content .section-subtitle i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.partnership-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-transform: none; /* Make it more modern and less rigid */
    font-weight: 700;
}

.partnership-content p {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .partnership-card {
        flex-direction: column;
        margin: 0 20px;
    }
    .partnership-img {
        width: 100%;
        min-height: 350px;
    }
    .partnership-content {
        padding: 40px;
        order: 2;
    }
    .partnership-img {
        order: 1;
    }
}

@media (max-width: 768px) {
    .partnership-content h2 {
        font-size: 2.2rem;
    }
}

/* ===== GLOBAL PRESENCE V4 (SVG & GEOGRAPHIC PINS) ===== */
.global-presence-v4 {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.container-map-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.section-desc-v4 {
    margin-top: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 450px;
    font-size: 1.05rem;
}

.country-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.country-pill {
    background: #f8f8f8;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.country-pill:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.dot-orange {
    width: 6px;
    height: 6px;
    background: #FF6A00;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
}

.map-contact-v4 {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.map-contact-v4 p {
    font-size: 0.8rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.map-contact-v4 a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.map-contact-v4 a:hover {
    color: #FF6A00;
}

.svg-map-container {
    position: relative;
    width: 100%;
}

.world-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-underlay-v5 {
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.svg-map-container:hover .map-underlay-v5 {
    opacity: 1;
    filter: grayscale(0%) contrast(1.0);
}

/* Precise Glowing Pins */
.geo-pin {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF6A00;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
}

.geo-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Tooltip on Hover */
.geo-pin::after {
    content: attr(data-title);
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.geo-pin:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
    .container-map-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .map-content-left {
        text-align: center;
    }
    .section-desc-v4 {
        margin: 20px auto 0;
    }
    .country-pill-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .map-contact-v4 a {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .country-pill-grid {
        grid-template-columns: 1fr;
    }
}

