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

:root {
  --primary-color: #2d2724; /* deep warm charcoal earth */
  --secondary-color: #e65c00; /* vibrant earth orange (matching logo) */
  --secondary-hover: #cf5300;
  --accent-color: #f7f4ee; /* subtle warm earth tone background */
  --text-main: #3d3834;
  --text-muted: #756f6a;
  --bg-color: #ffffff;
  --bg-light: #f4f2ed;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.09), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 12px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 1px solid rgba(230, 92, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(230, 92, 0, 0.08);
  transition: var(--transition);
}

.main-header .container {
  max-width: 1350px;
  padding: 0 32px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.header-logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0 auto;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  padding: 5px 0;
  font-size: 1.05rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

/* Hamburger Toggle Button */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(230, 92, 0, 0.08);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--secondary-color);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--secondary-color);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 17, 15, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 999;
}

body.nav-open {
  overflow: hidden;
}

/* Mobile & Tablet Navigation Drawer (<= 868px) */
@media (max-width: 868px) {
  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header-logo-img {
    height: 48px;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    padding: 85px 28px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    margin-left: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu-wrapper.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 0;
    display: block;
    width: 100%;
    font-weight: 600;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-top: 10px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.84) 0%, rgba(45, 39, 36, 0.72) 50%, rgba(20, 17, 15, 0.86) 100%), url('../images/hero_bg.png') center/cover no-repeat;
  overflow: hidden;
  padding-top: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero .text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, #ff7728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  max-width: 640px;
  line-height: 1.7;
}

.hero-bg-shape {
  display: none;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 92, 0, 0.2);
}

.product-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.product-tag {
  background: rgba(230, 92, 0, 0.07);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(230, 92, 0, 0.15);
}

.product-tag:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* About / Stats Section */
.about-section {
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
}

.about-section h2 {
  color: #fff;
}

.about-section .text-muted {
  color: rgba(255,255,255,0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 92, 0, 0.15);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.feature-item h4 {
  color: #fff;
  margin-bottom: 10px;
}

.feature-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #1f1b18; /* warm dark earth charcoal */
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 240px;
}

.footer-col:nth-child(1) {
  max-width: 360px;
}

.footer-col:nth-child(2) {
  max-width: 260px;
  text-align: left;
}

.footer-col:nth-child(2) ul {
  display: block;
  text-align: left;
}

.footer-col:nth-child(3) {
  max-width: 360px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Buyers & Clients Sections */
.buyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.buyer-brand {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    overflow: hidden;
}

.buyer-brand img {
    max-width: 145px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(120%);
    opacity: 0.9;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.buyer-brand img[src*="falabella"] {
    max-width: 105px;
    max-height: 42px;
}

.buyer-brand img[src*="target"],
.buyer-brand img[src*="tottus"],
.buyer-brand img[src*="ralawise"],
.buyer-brand img[src*="paperdenim"],
.buyer-brand img[src*="tesco"],
.buyer-brand img[src*="mcGregor"],
.buyer-brand img[src*="engbers"],
.buyer-brand img[src*="gaastra"],
.buyer-brand img[src*="newYorker"] {
    transform: scale(1.45);
    filter: grayscale(100%) contrast(150%);
}

.buyer-brand:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.buyer-brand:hover img[src*="target"],
.buyer-brand:hover img[src*="tottus"],
.buyer-brand:hover img[src*="ralawise"],
.buyer-brand:hover img[src*="paperdenim"],
.buyer-brand:hover img[src*="tesco"],
.buyer-brand:hover img[src*="mcGregor"],
.buyer-brand:hover img[src*="engbers"],
.buyer-brand:hover img[src*="gaastra"],
.buyer-brand:hover img[src*="newYorker"] {
    transform: scale(1.52);
    filter: grayscale(0%) contrast(100%);
}

.buyer-fallback {
    display: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.buyer-brand:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.4);
}

.clients-grid-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.clients-badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.client-badge {
    background: #fcfaf7;
    border: 1px solid rgba(230, 92, 0, 0.15);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.client-badge:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 576px) {
    .buyers-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
    .clients-grid-container { padding: 20px 15px; }
    .client-badge { padding: 8px 14px; font-size: 0.85rem; }
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2f28 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 720px;
}

.page-hero-label {
    display: inline-block;
    background: rgba(230, 92, 0, 0.15);
    color: var(--secondary-color);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
}

/* Section Label */
.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* About Intro Grid */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
}

.about-intro-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.stat-card {
    background: var(--accent-color);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(230, 92, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mission & Vision */
.mv-section {
    background: var(--accent-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff8c40);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.mv-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.mv-divider {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin: 24px 0;
}

.mv-sub {
    font-weight: 600;
    color: var(--primary-color) !important;
    margin-bottom: 16px !important;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.97rem;
    line-height: 1.6;
}

.mv-list li i {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.mv-vision-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.vision-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-color);
}

.vision-pillar i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Client Satisfaction Section */
.cs-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    text-align: center;
}

.cs-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.cs-principle {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.cs-principle:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.2);
}

.cs-principle-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(230, 92, 0, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cs-principle-icon i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.cs-principle h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cs-principle p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cs-closing {
    background: var(--accent-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 28px 36px;
    max-width: 860px;
    margin: 0 auto;
}

.cs-closing p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
}

/* Responsive About Page */
@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-intro-stats {
        position: static;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    .mv-card {
        padding: 32px 24px;
    }
    .mv-vision-pillars {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TERMS & CONDITIONS PAGE STYLES
   ============================================= */

.terms-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sticky Sidebar */
.terms-nav {
    position: sticky;
    top: 100px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid rgba(230, 92, 0, 0.1);
}

.terms-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav ul li {
    margin-bottom: 4px;
}

.terms-nav ul li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.terms-nav ul li a:hover {
    background: rgba(230, 92, 0, 0.08);
    color: var(--secondary-color);
    padding-left: 16px;
}

/* Terms Intro */
.terms-intro {
    background: var(--accent-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 24px 28px;
    margin-bottom: 36px;
}

.terms-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
}

/* Terms Cards */
.terms-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    scroll-margin-top: 100px;
}

.terms-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.15);
}

.terms-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.terms-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.12), rgba(230, 92, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.terms-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.terms-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer Note */
.terms-footer-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(230, 92, 0, 0.06);
    border: 1px solid rgba(230, 92, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-top: 12px;
}

.terms-footer-note i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.terms-footer-note p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.terms-footer-note strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 860px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .terms-nav {
        position: static;
    }
}

@media (max-width: 600px) {
    .terms-card {
        padding: 24px 20px;
    }
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */

/* Intro Block */
.services-intro-section {
    background: var(--accent-color);
    padding: 60px 0;
}

.services-intro-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 92, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.services-intro-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* Services Cards Grid */
.services-grid-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--accent-color);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid rgba(230, 92, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.2);
    background: #fff;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--wide {
    grid-column: span 3;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.service-card--wide .service-card-icon {
    flex-shrink: 0;
}

.service-card--wide h3 {
    margin-bottom: 8px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.12), rgba(230, 92, 0, 0.04));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--secondary-color), #ff8c40);
}

.service-card-icon i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-card-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Product Categories */
.services-products-section {
    background: var(--accent-color);
}

.services-products-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: center;
}

.services-products-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    margin-top: 12px;
    line-height: 1.3;
}

.services-products-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-products-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.svc-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(230, 92, 0, 0.15);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.svc-product-tag:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.svc-product-tag i {
    color: var(--secondary-color);
    font-size: 0.85rem;
    transition: var(--transition);
}

.svc-product-tag:hover i {
    color: #fff;
}

.svc-product-tag--accent {
    background: rgba(230, 92, 0, 0.07);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.svc-product-tag--accent i {
    color: var(--secondary-color);
}

/* CTA Banner */
.services-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2f28 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* Responsive Services */
@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card--wide {
        grid-column: span 2;
    }
    .services-products-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card--wide {
        grid-column: span 1;
        flex-direction: column;
    }
    .services-intro-block {
        padding: 28px 24px;
    }
}

/* =============================================
   PRODUCTS PAGE STYLES
   ============================================= */

/* Filter Bar */
.products-filter-section {
    background: var(--accent-color);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Products Catalog Grid */
.products-catalog-section {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--accent-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 92, 0, 0.25);
    background: #fff;
}

.product-card-banner {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0ece1;
}

.product-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-banner img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(45, 39, 36, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.product-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;

}

.product-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 16px;
    flex-grow: 1;
}

.product-specs li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.product-specs li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.product-inquire-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
}

/* Inquiry Form Section */
.inquiry-form-section {
    background: var(--accent-color);
    padding: 80px 0;
}

.inquiry-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(230, 92, 0, 0.12);
}

.inquiry-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 12px;
}

.inquiry-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: #fff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.15);
}

/* Success Alert */
.inquiry-success-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #eafaf1;
    border: 1px solid #2ecc71;
    color: #1e8449;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.inquiry-success-alert i {
    font-size: 2rem;
    flex-shrink: 0;
}

.inquiry-success-alert h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.inquiry-success-alert p {
    margin: 0;
    font-size: 0.95rem;
}

/* Master Responsive Styles for Mobile, Tablet, and Desktop */

/* Touch Target & Fluid Typography Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
}

/* Fluid Heading Sizes */
h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
}

/* Section Spacing */
@media (max-width: 1024px) {
    .section {
        padding: 75px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .inquiry-box {
        padding: 32px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card-body {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .hero {
        padding: 100px 0 45px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-bar {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .client-badge {
        padding: 8px 12px;
        font-size: 0.82rem;
        max-width: 100%;
        text-align: center;
        word-break: break-word;
    }

    .inquiry-box {
        padding: 24px 16px;
    }

    .inquiry-header h2 {
        font-size: 1.6rem;
    }

    .inquiry-success-alert {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Responsive Layout */
@media (max-width: 900px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        max-width: 100%;
    }

    .footer-col:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col:nth-child(1) {
        grid-column: span 1;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(2) ul {
        text-align: center;
    }

    .footer-col p i {
        margin-right: 4px;
    }
}