:root {
  --primary: #0A192F;
  --primary-light: #172A45;
  --accent: #D4AF37;
  --accent-light: #F0C040;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --white: #FFFFFF;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(10, 25, 47, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 25px 0;
}

.navbar.scrolled, .navbar.solid-bg {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

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

/* Utility Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.5s ease-in-out;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
  }

  .hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* --- Homepage Styles --- */
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=3840&q=90') center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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



/* Categories Section */
.bg-light {
  background-color: var(--bg-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  padding: 0 0 34px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.category-media {
  height: 220px;
  margin-bottom: 30px;
  overflow: hidden;
}

.category-media img,
.product-img img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-card h3,
.category-card p,
.category-card .card-link {
  margin-left: 30px;
  margin-right: 30px;
}

.category-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.category-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.card-link:hover {
  color: var(--primary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Global Reach */
.global-reach {
  background: var(--primary) url('assets/images/map-bg.png') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  position: relative;
  padding: 120px 0;
}

.global-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(10, 25, 47, 0.85);
  padding: 50px;
  backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.global-content h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.global-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* Featured Products */
.products-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  width: 100%;
  height: 260px;
  background-color: var(--bg-light);
  overflow: hidden;
}

.placeholder-img {
  width: 100%;
  height: 250px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-muted);
}

.product-info {
  padding: 30px;
  text-align: center;
}

.product-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

/* Testimonials */
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 60px;
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 30px;
}

.testimonial-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-card p:not(.quote) {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.8);
}

/* Page Headers (Inner Pages) */
.page-header {
  background:
    linear-gradient(90deg, rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.72)),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=3840&q=90') center/cover no-repeat;
  padding: 150px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Inner Page Forms & Sections Placeholder */
.inner-content {
  padding: 80px 0;
}

.story-image {
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-values-section {
  background: var(--primary);
  padding: 90px 0;
}

.about-values-intro {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-values-intro h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-values-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

.about-value-card {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
  min-height: 230px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.about-value-icon {
  width: 92px;
  height: 92px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 auto 20px;
}

.about-value-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.about-value-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.35;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.catalog-layout.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.catalog-layout.reverse .catalog-visual {
  order: 2;
}

.catalog-visual {
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: sticky;
  top: 110px;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-kicker {
  color: var(--accent);
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.catalog-content h2 {
  font-size: 2.7rem;
  margin-bottom: 26px;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catalog-products.compact {
  max-width: 620px;
}

.catalog-products article {
  background: var(--white);
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.06);
  transition: var(--transition);
}

.catalog-products article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.catalog-products h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.catalog-products p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.catalog-products span {
  color: var(--primary);
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-with-image {
  overflow: hidden;
  padding: 0;
}

.product-with-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.product-with-image div {
  padding: 20px;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.8rem; }
  .overview-grid, .category-grid, .products-carousel { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { text-align: center; width: 100%; display: block; margin-bottom: 10px; }
  .global-content, .testimonial-card { padding: 30px; }
  .section-title { font-size: 2rem; }
  .catalog-layout,
  .catalog-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .catalog-layout.reverse .catalog-visual {
    order: 0;
  }
  .catalog-visual {
    min-height: 360px;
    position: relative;
    top: auto;
  }
  .catalog-content h2 {
    font-size: 2.2rem;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid, .overview-stats { grid-template-columns: 1fr; }
  .catalog-products {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-values-intro h2 {
    font-size: 2rem;
  }
}
