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

:root {
  --primary-color: #0a1f3c;
  --primary-deep: #061528;
  --secondary-color: #142a4c;
  --accent-color: #c9a961;
  --accent-light: #d4b876;
  --accent-deep: #b08d45;
  --text-color: #1a1a2e;
  --light-text: #5a5a6e;
  --muted-text: #8a8a9a;
  --white: #fff;
  --cream: #faf8f3;
  --light-bg: #f6f4ef;
  --border-color: #e8e4da;
  --transition: all 0.35s ease;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  line-height: 1.7;
  color: var(--text-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-deep);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(201, 169, 97, 0.2);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.dark {
  background: rgba(10, 31, 60, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 46px;
  width: auto;
  transition: var(--transition);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  transition: var(--transition);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(6, 21, 40, 0.92) 0%, rgba(10, 31, 60, 0.88) 50%, rgba(20, 42, 76, 0.85) 100%),
    url('/images/hero-showroom.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 21, 40, 0.4) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeInUp 1s ease;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  margin: 0 14px;
  opacity: 0.6;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.15s both;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 1.15rem;
  margin-bottom: 44px;
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.45s both;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 500;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin: 0 10px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--primary-deep);
  border: 1px solid var(--accent-color);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  margin-top: 72px;
  animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 6px;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section.bg-dark {
  background: var(--primary-deep);
  color: var(--white);
  position: relative;
}

.section.bg-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.4;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.section.bg-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--light-text);
  font-size: 1.05rem;
  font-weight: 300;
}

.section.bg-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== About ===== */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.about-text h3 {
  font-size: 1.9rem;
  margin-bottom: 22px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 18px;
  color: var(--light-text);
  font-size: 1rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-badge {
  background: var(--light-bg);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-color);
}

.about-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(10, 31, 60, 0.15);
}

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

.about-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  border-top: 3px solid transparent;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 60, 0.08);
  border-top-color: var(--accent-color);
}

.about-card h3 {
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 1.35rem;
}

.about-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ===== Leadership ===== */
.leadership-block {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.leadership-card {
  max-width: 680px;
  background: var(--primary-color);
  color: var(--white);
  padding: 44px 48px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.25);
}

.leadership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-color);
}

.leadership-icon {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.leadership-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.leadership-role {
  color: var(--accent-light);
  font-size: 0.9rem;
  font-family: var(--sans);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.leadership-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 31, 60, 0.06);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(10, 31, 60, 0.12);
}

.product-image {
  height: 220px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 22px 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.product-info p {
  color: var(--light-text);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 97, 0.15);
  position: relative;
}

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

.service-card:hover {
  background: rgba(201, 169, 97, 0.06);
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.3);
}

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

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== Why Us ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-us-item {
  text-align: center;
  padding: 38px 28px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.why-us-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 60, 0.08);
  border-color: var(--accent-color);
}

.why-us-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-us-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.why-us-item p {
  color: var(--light-text);
  font-size: 0.92rem;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 28px 22px;
  border: 1px solid rgba(201, 169, 97, 0.12);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: rgba(201, 169, 97, 0.25);
}

.process-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-step img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== Quality ===== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quality-card {
  background: var(--white);
  padding: 34px 24px;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.quality-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 60, 0.08);
  border-color: var(--accent-color);
}

.quality-icon {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.quality-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.quality-card p {
  color: var(--light-text);
  font-size: 0.92rem;
}

.quality-certifications {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border-color);
}

.certification-item {
  text-align: center;
  max-width: 220px;
}

.certification-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.certification-item h4 {
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.certification-item p {
  color: var(--light-text);
  font-size: 0.88rem;
}

/* ===== Markets ===== */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(201, 169, 97, 0.12);
  transition: var(--transition);
}

.market-item:hover {
  background: rgba(201, 169, 97, 0.06);
  border-color: rgba(201, 169, 97, 0.3);
}

.market-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.market-item h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.2rem;
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-deep);
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent-color);
  transition: var(--transition);
  margin-left: 16px;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 22px;
  color: var(--light-text);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== Company Profile Page ===== */
.profile-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 36px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.profile-logo img {
  height: 100px;
}

.profile-info h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.profile-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(201, 169, 97, 0.15);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 0.85rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

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

.profile-card {
  background: var(--white);
  padding: 30px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}

.profile-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.3rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.profile-card h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.info-item {
  margin-bottom: 14px;
  color: var(--light-text);
  font-size: 0.95rem;
}

.info-item strong {
  color: var(--primary-color);
}

.info-item ul {
  margin-left: 20px;
  margin-top: 5px;
}

.info-item ul li {
  margin-bottom: 5px;
}

.profile-card ol {
  margin-left: 20px;
}

.profile-card ol li {
  margin-bottom: 10px;
  color: var(--light-text);
}

.profile-highlights {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 44px;
  background: var(--primary-color);
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

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

.highlight-number {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-light);
}

.highlight-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 31, 60, 0.06);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(10, 31, 60, 0.12);
}

.blog-image {
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 28px;
}

.blog-date {
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.blog-content h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.blog-content h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-content h2 a:hover {
  color: var(--accent-deep);
}

.blog-content p {
  color: var(--light-text);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.blog-content .btn {
  margin: 0;
  padding: 10px 24px;
  font-size: 0.88rem;
}

.blog-post {
  max-width: 820px;
  margin: 0 auto;
}

.blog-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
  margin: 24px 0;
}

.blog-post h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-size: 1.7rem;
}

.blog-post h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.blog-post p {
  margin-bottom: 16px;
  color: var(--light-text);
  font-size: 1rem;
}

.blog-post ul, .blog-post ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.blog-post ul li, .blog-post ol li {
  margin-bottom: 10px;
  color: var(--light-text);
}

.blog-author {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
  color: var(--muted-text);
  font-size: 0.92rem;
}

/* ===== Company Info ===== */
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.company-info-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(201, 169, 97, 0.12);
}

.company-info-item h3 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-family: var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.company-info-item p {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
}

/* ===== Contact ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h3 {
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-item p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: var(--light-bg);
  padding: 36px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: var(--sans);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  margin: 0;
  width: 100%;
}

.form-response {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  display: none;
  font-size: 0.92rem;
}

.form-response.success {
  background: rgba(201, 169, 97, 0.1);
  color: var(--accent-deep);
  border: 1px solid var(--accent-color);
  display: block;
}

.form-response.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

.map-container {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(10, 31, 60, 0.1);
  border: 1px solid var(--border-color);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-deep);
  color: var(--white);
  padding: 72px 0 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-section h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.company-number-highlight {
  margin-top: 18px;
  padding: 16px;
  background: rgba(201, 169, 97, 0.08);
  border-radius: 2px;
  border-left: 2px solid var(--accent-color);
}

.company-number-highlight p {
  margin-bottom: 4px !important;
  color: var(--accent-light) !important;
  font-weight: 500;
  font-size: 0.85rem !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

/* ===== Content Page Typography ===== */
.section > .container > h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.section > .container > h2 {
  font-size: 1.8rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.section > .container > p {
  color: var(--light-text);
  margin-bottom: 16px;
}

.section > .container > ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.section > .container > ul li {
  color: var(--light-text);
  margin-bottom: 10px;
}

/* ===== Scroll Reveal ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    margin: 0 8px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 48px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .btn {
    margin: 8px;
    display: inline-block;
    padding: 12px 28px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-deep);
    padding: 80px 24px 24px;
    transition: right 0.4s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(201, 169, 97, 0.15);
  }

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

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

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

  .nav-menu a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid,
  .why-us-grid,
  .markets-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .services-grid,
  .quality-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quality-certifications {
    flex-direction: column;
    gap: 24px;
  }

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

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

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-highlights {
    flex-wrap: wrap;
    gap: 30px;
    padding: 32px 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    padding: 32px 24px;
  }
}

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

  .hero-title {
    font-size: 1.9rem;
  }

  .hero {
    padding: 110px 16px 50px;
  }

  .hero-stats {
    gap: 28px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .section {
    padding: 50px 0;
  }

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

  .footer {
    padding: 48px 0 20px;
  }

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

  .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }

  .hero-buttons .btn {
    width: auto;
    display: inline-block;
  }
}
