:root {
  --bg-primary: #060b17;
  --bg-secondary: #0d1426;
  --bg-card: rgba(14, 25, 46, 0.72);
  --text-primary: #f7f9ff;
  --text-secondary: #c7d1e8;
  --accent-gold: #f5b841;
  --accent-orange: #ff8f2a;
  --border-soft: rgba(255, 255, 255, 0.14);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background: radial-gradient(circle at top right, #152446 0%, var(--bg-primary) 30%, #03050a 100%);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.2px;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 100px 0;
}

.section-title span {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-title h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 800;
}

.section-title p {
  max-width: 720px;
  margin: 15px auto 0;
  color: var(--text-secondary);
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background: linear-gradient(140deg, #02050c, #09162d);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.navbar {
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(4, 10, 23, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.navbar-brand .brand-mark,
.footer-brand .brand-mark,
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-gold), var(--accent-orange));
  color: #131313;
  font-weight: 800;
}

.brand-text {
  font-weight: 700;
  color: #fff;
}

.nav-link {
  color: #f8f9ff;
  font-weight: 500;
  margin-left: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.nav-contact-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-section {
  min-height: 100vh;
  position: relative;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  background-image: url("images/banner2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(4, 8, 17, 0.35) 10%, rgba(4, 8, 17, 0.86) 90%);
}

.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(245, 184, 65, 0.25) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-50px); }
}

.kicker {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content .lead {
  color: var(--text-secondary);
  max-width: 780px;
}

.btn-premium {
  background: linear-gradient(140deg, var(--accent-gold), var(--accent-orange));
  border: none;
  color: #111;
  font-weight: 700;
  padding: 12px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 184, 65, 0.35);
  color: #111;
}

.glass-card {
  background: rgba(18, 32, 56, 0.4);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  border-radius: 16px;
  padding: 20px;
}

.stat-card h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.stat-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-image-wrap img {
  box-shadow: var(--shadow);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
}

.feature-card i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.products-section {
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.92), rgba(8, 14, 27, 0.6));
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #0f1a32;
  border: 1px solid var(--border-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-content {
  padding: 24px;
}

.product-content p {
  color: var(--text-secondary);
}

.btn-link {
  color: var(--accent-gold);
  font-weight: 700;
}

.btn-link i {
  transition: transform 0.2s ease;
}

.btn-link:hover i {
  transform: translateX(4px);
}

.service-card {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 184, 65, 0.6);
}

.service-card i {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0;
}

.mission-section {
  position: relative;
}

.mission-section .text-secondary {
  color: var(--text-secondary) !important;
}

.mv-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.mv-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 184, 65, 0.18), rgba(255, 143, 42, 0.10));
  border: 1px solid rgba(245, 184, 65, 0.35);
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.mv-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.mv-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.mv-image-wrap {
  position: relative;
}

.mv-image-wrap img {
  box-shadow: var(--shadow);
}

.mv-float {
  position: absolute;
  right: 18px;
  bottom: -18px;
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 310px;
}

.mv-float h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--accent-gold);
}

.mv-float p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.35), rgba(8, 14, 27, 0.65));
}

.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #0a1222;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  position: relative;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  opacity: 0.95;
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(1.02) contrast(1.05);
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.12);
}

.faq-section {
  background: linear-gradient(130deg, rgba(5, 10, 22, 0.9), rgba(15, 28, 54, 0.6));
}

.premium-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.premium-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 18px 18px;
  box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: #111;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
}

.premium-accordion .accordion-button::after {
  filter: invert(1);
}

.premium-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(0);
}

.premium-accordion .accordion-body {
  color: var(--text-secondary);
  padding: 16px 18px 20px;
}

.premium-accordion a {
  color: var(--accent-gold);
}

.testimonials-section {
  position: relative;
}

.testimonial-card {
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(13, 23, 44, 0.65);
  backdrop-filter: blur(10px);
  padding: 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 184, 65, 0.55);
}

.testimonial-card .stars {
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testimonial-card .quote {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111;
  background: linear-gradient(145deg, var(--accent-gold), var(--accent-orange));
}

.testimonial-card h4 {
  font-size: 1rem;
  margin: 0;
}

.testimonial-card .who p {
  margin: 2px 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.operations-section {
  position: relative;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #0a1222;
  padding: 18px;
}

.map-wrapper img {
  width: 100%;
  filter: brightness(0.82) contrast(1.2);
}

.marker {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: #101010;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 184, 65, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(245, 184, 65, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 184, 65, 0); }
}

.m-europe { top: 32%; left: 52%; }
.m-middleeast { top: 41%; left: 58%; }
.m-asia { top: 37%; left: 68%; }
.m-cis { top: 24%; left: 62%; }
.m-africa { top: 52%; left: 52%; }
.m-americas { top: 40%; left: 26%; }

.why-us-section {
  background: linear-gradient(130deg, #050a16, #0f1c36);
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reasons-list li {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.reasons-list i {
  color: var(--accent-gold);
  margin-right: 8px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.counter-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  padding: 20px;
}

.counter-card h3 {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: 8px;
}

.counter-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-form,
.contact-info {
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(13, 23, 44, 0.75);
  backdrop-filter: blur(10px);
  padding: 28px;
}

.form-label {
  font-weight: 500;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.form-control::placeholder {
  color: #c9d1e4;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-info p, .contact-info a {
  color: var(--text-secondary);
}

.contact-info a:hover {
  color: var(--accent-gold);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 18px;
}

.footer-section {
  padding: 70px 0 24px;
  background: #02060e;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copyright-text p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-copyright-text a {
  color: var(--text-secondary);
  font-weight: 700;
}

.footer-copyright-text a:hover {
  color: var(--accent-gold);
}

.footer-copyright-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.footer-section a {
  color: var(--text-secondary);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 8px;
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-gold), var(--accent-orange));
  color: #111;
  z-index: 2000;
  display: none;
}

.scroll-top-btn.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .navbar-collapse {
    background: rgba(4, 10, 23, 0.95);
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-contact-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .mv-float {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .stats-grid,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 200px;
  }

  .gallery-card img {
    height: 210px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .m-europe { top: 30%; left: 55%; }
  .m-middleeast { top: 41%; left: 61%; }
  .m-asia { top: 38%; left: 73%; }
  .m-cis { top: 25%; left: 67%; }
  .m-africa { top: 53%; left: 56%; }
  .m-americas { top: 43%; left: 20%; }
}
