/* ============================================
   FREEJOE ENERGY & COMMODITY CO. LTD
   Premium Corporate Landing Page Styles
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-light: #122240;
  --navy-mid: #1a3050;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --gold-dark: #a8861f;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --charcoal: #2d3436;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

/* ========== Preloader ========== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader__content {
  text-align: center;
}

.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.site-logo--nav {
  height: 38px;
  max-width: 110px;
}

.site-logo--preloader {
  height: 64px;
  max-width: 120px;
  margin: 0 auto 24px;
}

.site-logo--footer {
  height: 50px;
  max-width: 110px;
}

.preloader__spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid rgba(201, 162, 39, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

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

ul {
  list-style: none;
}

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

.gold {
  color: var(--gold);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

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

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--white);
}

.section__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section__line--left {
  margin: 0 0 24px;
}

.section__desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}

.section--dark .section__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header.scrolled .site-logo--nav {
  height: 34px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

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

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: calc(var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.82) 45%, rgba(10, 22, 40, 0.7) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero__wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  text-align: left;
  max-width: 620px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero__image {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.hero__image-badge i {
  font-size: 1.4rem;
  color: var(--gold);
}

.hero__image-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.2;
}

.hero__image-badge span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__company {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__stat i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}

.hero__scroll a {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.hero__scroll a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== About ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about__content p {
  margin-bottom: 16px;
  color: var(--gray);
}

.about__content strong {
  color: var(--navy);
}

.about__list {
  margin: 16px 0 20px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--gray);
}

.about__list li i {
  color: var(--gold);
  font-size: 0.75rem;
}

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

.counter-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.counter-card__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  color: var(--gold);
  font-size: 1.2rem;
}

.counter-card__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== CEO ========== */
.ceo__card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--navy-light);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 16px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.ceo__image {
  position: relative;
  flex-shrink: 0;
}

.ceo__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}

.ceo__badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.ceo__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
}

.ceo__title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.ceo__desc {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.ceo__skills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.ceo__skills i {
  font-size: 0.7rem;
}

/* ========== Products ========== */
.products__link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products__link:hover {
  color: var(--gold);
}

.products__categories {
  width: 100%;
  margin-bottom: 48px;
}

.product-card {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.product-card ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.product-card ul li i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.7rem;
}

.products__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.products__filter {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.products__filter:hover,
.products__filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.products__catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.product-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-item.hidden {
  display: none;
}

.product-item__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}

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

.product-item:hover .product-item__image img {
  transform: scale(1.08);
}

.product-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-item:hover .product-item__overlay {
  opacity: 1;
}

.product-item__overlay i {
  color: var(--gold);
  font-size: 1.4rem;
  background: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-item__body {
  padding: 16px;
  text-align: center;
}

.product-item__body h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.product-item__category {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.products__services {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
}

.products__services h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.products__service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.products__service-item i {
  color: var(--gold);
}

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

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.why-card:hover .why-card__icon {
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.why__tagline {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-dark);
}

/* ========== Manufacturing ========== */
.manufacturing__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.manufacturing__content .section__title {
  text-align: left;
}

.manufacturing__content p {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.8;
}

.manufacturing__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manufacturing__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.manufacturing__detail i {
  font-size: 1.3rem;
  color: var(--gold);
  width: 30px;
  text-align: center;
}

.manufacturing__detail strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.manufacturing__detail span {
  font-size: 0.85rem;
  color: var(--gray);
}

.manufacturing__packaging {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
}

.manufacturing__packaging h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.manufacturing__packaging h3 i {
  color: var(--gold);
}

.manufacturing__packaging ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.manufacturing__packaging ul li:last-child {
  border-bottom: none;
}

.manufacturing__packaging ul li i {
  color: var(--gold);
}

.manufacturing__note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ========== Global Presence ========== */
.global {
  position: relative;
  overflow: hidden;
}

.global__map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1920&q=60') center/cover no-repeat;
  opacity: 0.15;
}

.global .container {
  position: relative;
  z-index: 1;
}

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

.country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.country-card:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.country-card i {
  color: var(--gold);
}

/* ========== CTA ========== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--off-white), var(--white));
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--navy);
  border-radius: 16px;
  padding: 50px 60px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-lg);
}

.cta__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta__content strong {
  color: var(--gold);
}

.cta__sub {
  margin-top: 8px;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ========== Contact ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact__card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
}

.contact__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.4;
}

.contact__item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__item:last-child {
  border-bottom: none;
}

.contact__item > i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact__item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact__item span,
.contact__item a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact__item a:hover {
  color: var(--gold);
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.form__group {
  margin-bottom: 20px;
}

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

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form__group label span {
  color: #e53e3e;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  background: var(--white);
}

.form__group input.error,
.form__group textarea.error {
  border-color: #e53e3e;
}

.form__error {
  display: block;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 6px;
  min-height: 18px;
}

.form__success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534;
}

.form__success.show {
  display: flex;
}

.form__success i {
  font-size: 1.4rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
}

.footer__main {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  width: 100%;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__company {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer__seo {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding-bottom: 12px;
}

.footer__links h4::after,
.footer__contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.footer__links ul {
  margin: 0;
  padding: 0;
}

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

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), transform var(--transition);
}

.footer__links a i {
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__links a:hover i {
  transform: translateX(3px);
}

.footer__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__contact-list i {
  color: var(--gold);
  width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  text-align: center;
}

.footer__contact-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer__contact-list a:hover {
  color: var(--gold);
}

.footer__contact-list span {
  color: rgba(255, 255, 255, 0.75);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer__bar {
  background: #0a0a0a;
  padding: 18px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copyright {
  font-size: 0.8rem;
  font-weight: 400;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.footer__copyright a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__copyright a:hover {
  color: var(--gold);
}

.footer__credit {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity var(--transition);
}

.footer__credit:hover {
  opacity: 1;
}

.footer__credit-banner {
  display: block;
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: right center;
}

.footer__credit-logo {
  display: block;
  height: 48px;
  width: auto;
}

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .products__categories {
    margin-bottom: 40px;
  }

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

  .footer__grid {
    text-align: center;
  }

  .footer__brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__links h4::after,
  .footer__contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__links a {
    justify-content: center;
  }

  .footer__contact-list li {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

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

  .cta__box {
    flex-direction: column;
    text-align: center;
    padding: 40px 36px;
  }
}

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

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav__menu.show {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 20px;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: flex;
  }

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

  .ceo__card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 30px;
  }

  .ceo__skills {
    justify-content: center;
  }

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

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

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

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

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

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

  .products__categories {
    margin-bottom: 32px;
  }

  .footer__bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__buttons,
  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 8px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

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

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

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

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .contact__form {
    padding: 28px 20px;
  }
}
