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

:root {
  --black: #000;
  --white: #fff;
  --red: #d60000;
  --gray-medium: #4a4a4a;
  --gray-light: #ccc;
  --text: rgba(0, 0, 0, 0.85);
  --light-bg: #f4f4f4;
  --lighter-bg: #fff;
  --dark-bg: #fff;

  --font-primary: "Garamond", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-ui: "Montserrat", sans-serif;

  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 50px;
  --spacing-xxxxl: 60px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: all 0.3s ease;
  --z-fixed: 1000;
}

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

body {
  font-family: var(--font-secondary);
  color: var(--black);
  background-color: var(--dark-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  text-transform: uppercase;
}
h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
}
h2 {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-xl);
}
h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}
h4 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}
p {
  margin-bottom: var(--spacing-lg);
  color: var(--text);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
  font-weight: 500;
  font-family: var(--font-ui);
}
a:hover {
  color: var(--red);
}

.btn {
  display: inline-block;
  padding: 12px var(--spacing-xl);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.9rem;
  font-family: var(--font-ui);
}
.btn-call {
  background-color: var(--red);
  color: var(--white);
  padding: 10px var(--spacing-xl);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border: 2px solid var(--red);
}
.btn-call:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(214, 0, 0, 0.3);
}
.btn-primary:hover {
  background-color: #b30000;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(214, 0, 0, 0.4);
}
.btn-secondary {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-secondary:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--black);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  width: 100%;
  padding: 0 var(--spacing-xl);
}
.preloader-logo {
  margin-bottom: var(--spacing-xxl);
}
.preloader-logo img {
  height: 150px;
}
.preloader-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  width: 100%;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--red);
  opacity: 0.3;
  animation: dotPulse 1.5s infinite ease-in-out;
}
.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
.dot:nth-child(4) {
  animation-delay: 0.6s;
}
.dot:nth-child(5) {
  animation-delay: 0.8s;
}
@keyframes dotPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* Header & Nav */
.desktop-header-wrapper {
  position: relative;
  width: 100%;
  z-index: var(--z-fixed);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.top-bar {
  background-color: var(--black);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info,
.top-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-info i,
.top-social i {
  color: var(--red);
  margin-right: 5px;
}
.top-info a,
.top-social a {
  color: var(--white);
  font-size: 0.85rem;
}
.separator {
  color: var(--gray-medium);
  opacity: 0.5;
}

.navbar {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  box-shadow: none;
  padding: var(--spacing-lg) 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 120px;
  transition: var(--transition);
}
.nav-menu {
  display: flex;
  gap: var(--spacing-xl);
}
.nav-link {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: var(--transition);
  font-family: var(--font-ui);
  color: var(--black);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: calc(var(--z-fixed) + 1);
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: var(--spacing-xs) 0;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .desktop-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
  }
  .nav-menu {
    gap: var(--spacing-xl);
  }
  .nav-link {
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
  }
  .nav-link::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--red);
    transition: width 0.3s ease;
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--red);
    background-color: rgba(214, 0, 0, 0.05);
    transform: translateY(-2px);
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.mobile-logo img {
  height: 80px;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  padding: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
}
.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-sm) 0;
  align-items: center;
}
.mobile-nav-link {
  display: block;
  padding: var(--spacing-xl);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
  font-family: var(--font-primary);
  text-align: center;
  position: relative;
  border-radius: var(--radius-sm);
  width: 80%;
}
.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--red);
  background-color: rgba(214, 0, 0, 0.05);
}

/* Hero */
.hero {
  padding: 180px 0 var(--spacing-xxxxl);
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background:
    linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6)),
    url("/assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
}
.hero-content {
  width: 100%;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  padding: 0 var(--spacing-lg);
}

.hero-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  padding: 8px var(--spacing-xl);
  border-radius: 50px;
  margin-bottom: var(--spacing-xl);
  font-weight: 700;
  font-family: var(--font-ui);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
  color: var(--black);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  line-height: 1.2;
  text-align: center;
}
.hero-title span {
  color: var(--red);
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xxxl);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  font-family: var(--font-secondary);
}
.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin: var(--spacing-xxxl) 0;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 120px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  font-family: var(--font-primary);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-ui);
}
.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
  justify-content: center;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Certifications */
.certifications-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.certifications-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md) var(--spacing-lg);
  width: 100%;
}
.partner-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  flex: 1 1 auto;
  max-width: 140px;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: var(--spacing-xxxxl) 0;
  background-color: var(--dark-bg);
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxxxl);
}
.section-title {
  font-size: 2.8rem;
  display: inline-block;
  position: relative;
  padding-bottom: var(--spacing-md);
  font-weight: 700;
  font-family: var(--font-primary);
}
.section-title span {
  color: var(--red);
  font-weight: 800;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--red);
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 700px;
  margin: var(--spacing-xl) auto 0;
  font-weight: 400;
  font-family: var(--font-secondary);
}

/* Services Grid (Home) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxxxl);
}
.service-item-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-img-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-item-simple h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0;
  font-weight: 700;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.services-footer-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* PROCESS */
.process {
  background-color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxxl);
}
.process-step {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(214, 0, 0, 0.1);
  border-color: rgba(214, 0, 0, 0.1);
}
.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-primary);
  box-shadow: 0 4px 10px rgba(214, 0, 0, 0.3);
}
.step-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: var(--spacing-lg);
}
.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
  color: var(--black);
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0;
}
.process-cta-container {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* INDUSTRIES */
.industries-section {
  background-color: var(--light-bg);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}
.industry-item {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}
.industry-item:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.industry-item i {
  font-size: 3rem;
  color: var(--red);
}
.industry-item h4 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--black);
  font-family: var(--font-ui);
}

/* About & Contact */
.about {
  padding: var(--spacing-xxxxl) 0;
  background-color: var(--dark-bg);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}
.about-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.gold-badge {
  position: absolute;
  top: -20px;
  right: var(--spacing-xl);
  background-color: var(--red);
  color: var(--white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-ui);
}
.gold-badge i {
  font-size: 1.2rem;
}
.about-content {
  flex: 1;
}
.about-content .section-title {
  margin-bottom: var(--spacing-xxl);
  font-weight: 700;
}
.about-content .section-title span {
  color: var(--red);
  font-weight: 800;
}
.about-text {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xxl);
  color: var(--text);
  font-weight: 400;
}
.features {
  margin: var(--spacing-xxl) 0;
}
.feature {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--red);
  min-width: 40px;
  margin-top: var(--spacing-sm);
}
.feature h4 {
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}
.feature p {
  color: var(--text);
  font-weight: 400;
}
.about-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}
.about-cta p {
  margin: 0;
  color: var(--text);
  font-weight: 400;
}

.contact {
  padding: var(--spacing-xxxxl) 0;
  background-color: var(--dark-bg);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}
.contact-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
}
.contact-content {
  flex: 1;
}
.contact-content .section-title {
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}
.contact-content .section-title span {
  color: var(--red);
  font-weight: 800;
}
.contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xxl);
  color: var(--text);
  font-weight: 400;
  font-family: var(--font-secondary);
}
.contact-info {
  margin: var(--spacing-xxl) 0;
}
.info-item {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: flex-start;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--red);
  min-width: 30px;
  margin-top: var(--spacing-sm);
}
.info-item h4 {
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}
.info-item p {
  color: var(--text);
  margin: 0;
  font-weight: 400;
}
.info-item a {
  color: var(--text);
  font-weight: 400;
}
.info-item a:hover {
  color: var(--red);
}
.contact-cta {
  margin-top: var(--spacing-xxl);
}
.contact-cta p {
  margin-bottom: var(--spacing-lg);
  color: var(--text);
  font-weight: 400;
}

/* Replaced .contact-image with .contact-map for Google Maps iframe */
.contact-map {
  flex: 1;
  position: relative;
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer */
.footer {
  background-color: var(--light-bg);
  color: var(--white);
  padding: var(--spacing-xxxxl) 0 var(--spacing-xl);
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}
.footer-logo {
  text-align: left;
}
.footer-logo img {
  height: 90px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xxl);
  text-align: left;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.footer-column h4 {
  color: var(--black);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--black);
}
.footer-column a,
.footer-column p {
  color: var(--black);
  transition: var(--transition);
  font-weight: 400;
}
.footer-column a:hover {
  color: var(--red);
  padding-left: var(--spacing-sm);
}
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xxl);
  border-top: 1px solid var(--gray-medium);
  color: var(--red);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-weight: 400;
}
.footer-bottom p {
  color: var(--black);
  font-weight: 400;
}
.footer-bottom a {
  color: var(--red);
  font-weight: 400;
}
.footer-bottom a:hover {
  text-decoration: none;
  color: var(--black);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-xxl);
  right: var(--spacing-xxl);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(214, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: calc(var(--z-fixed) - 1);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .hero-container,
  .about-container,
  .contact-container {
    gap: var(--spacing-xxl);
  }
  .certifications-section {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .desktop-header-wrapper {
    position: relative;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: var(--spacing-sm) 0;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    box-shadow: none;
  }
  .logo img {
    height: 90px;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 150px 0 var(--spacing-xxl);
  }
  .hero-container,
  .about-container,
  .contact-container {
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    align-items: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
  }
  .about-cta p {
    text-align: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-logo {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 150px 0 var(--spacing-xxl);
  }
  .hero-stats {
    flex-wrap: nowrap;
    gap: var(--spacing-md);
    justify-content: center;
  }
  .stat-item {
    flex: 1;
    min-width: 120px;
    padding: var(--spacing-sm);
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 2.6rem;
    text-align: center;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    padding: 130px 0 var(--spacing-xxl);
  }
  .hero-stats {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: var(--spacing-sm);
  }
  .stat-item {
    flex: 1;
    min-width: 100px;
    padding: var(--spacing-sm) var(--spacing-xs);
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .hero-buttons {
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.8rem;
    min-width: 140px;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
  .footer-links {
    gap: var(--spacing-xxl);
  }
  .preloader-logo img {
    height: 90px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .mobile-menu-header {
    padding: var(--spacing-md);
  }
  .mobile-logo img {
    height: 90px;
  }
  .mobile-menu-close {
    width: 35px;
    height: 35px;
  }
  .mobile-nav-link {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .partners-logos {
    gap: var(--spacing-md);
  }
  .partner-logo {
    max-width: 100px;
    max-height: 60px;
  }
}
