:root {
  --primary: #f04e23;
  /* Orange/Red */
  --primary-hover: #d13d18;
  --dark-bg: #0b0d12;
  --darker-bg: #0b0d12;
  --nav-bg: #0b0d12;
  --text-dark: #222222;
  --text-gray: #777777;
  --text-light: #ffffff;
  --bg-light: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Top Bar */
.top-bar {
  background-color: #313131;
  color: #cccccc;
  font-size: 0.75rem;
  padding: 8px 0;
  display: flex;
  justify-content: flex-end;
}

.top-bar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}

.top-bar span {
  margin-left: 20px;
  font-weight: 700;
  color: #fff;
}

/* Header */
header {
  background-color: var(--nav-bg);
  color: var(--text-light);
}

.nav-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  padding: 20px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 45px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  height: auto;
  align-items: stretch;
}

.main-nav a {
  padding: 0 25px;
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

.main-nav a span {
  font-size: 0.6rem;
  margin-left: 5px;
}

.main-nav a.active {
  background-color: var(--primary);
  font-weight: 600;
}

.main-nav a:hover:not(.active) {
  color: var(--primary);
}

/* Hero Section */
.hero {
  background-color: #797a7e;
  /* Solid grey from screenshot */
  /* background-image: url('./assets/images/IMG-20191226-WA0013-e1659640036185.jpg'); */
  /* background-size: cover; */
  /* background-position: center; */
  padding: 150px 20px;
  color: var(--text-light);
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  max-width: 700px;
  line-height: 1.1;
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-columns {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  width: 50%;
  padding-right: 50px;
}

.about-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
}

.about-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 800;
}

.about-text {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-trust {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Products Section */
.products-wrapper {
  position: relative;
  background-color: var(--bg-light);
}

/* Slanted top shape for products */
.products-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--dark-bg);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.products-section {
  background-color: var(--dark-bg);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 60px;
}

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

.product-card {
  background-color: var(--bg-light);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-icon {
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon img {
  max-height: 100%;
  object-fit: contain;
}

.product-name {
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Diagonal shape separator */
.diagonal-divider {
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom right, var(--dark-bg) 50%, transparent 50.1%);
}

.products-bottom-shape {
  width: 100%;
  height: 100px;
  background-color: var(--bg-light);
  transform: translateY(-50px);
  clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  position: relative;
  z-index: 3;
}

/* Technology & Map Section */
.tech-section {
  padding: 60px 0 100px;
  position: relative;
  background-color: var(--bg-light);
  z-index: 1;
  margin-top: -50px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 60px;
}

.map-container img {
  width: 100%;
  height: auto;
}

.tech-info {
  padding-left: 20px;
}

.tech-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.tech-desc {
  color: #999;
  margin-bottom: 40px;
  font-size: 0.85rem;
}

.brands-container {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #eee;
  padding-top: 30px;
  justify-content: space-between;
}

.brand-icon-box {
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary);
}

.brand-logo {
  height: 35px;
  object-fit: contain;
}

/* Zoho Contact Section */
.zoho-contact-section {
  padding: 80px 0 140px;
  background-color: #f7f8fa;
  border-top: 1px solid #efefef;
}

.zoho-contact-header {
  margin-bottom: 40px;
}

.section-title.dark {
  color: #1a1a1a;
  margin-bottom: 10px;
}

.zoho-contact-desc {
  text-align: center;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.zoho-form-box {
  max-width: 810px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eaeaea;
}

/* Footer Section */
.footer-top {
  position: relative;
  z-index: 5;
  background-color: var(--dark-bg);
  padding-top: 80px;
}

.contact-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background-color: #212224;
  /* Slightly lighter gray box */
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-details {
  color: var(--text-light);
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact-details p {
  color: #ccc;
  font-size: 0.85rem;
}

footer {
  background-color: var(--darker-bg);
  color: #999;
  padding-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1a1c22;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.75rem;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-products a {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
}

.footer-products a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 1px solid var(--primary);
  margin-right: 10px;
}

.footer-products a:hover {
  color: var(--text-light);
}

.achilles-logo {
  height: 35px;
  background: white;
  padding: 5px;
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

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

.footer-bottom img {
  height: 30px;
}

/* Floating Buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 8px 8px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-weight: 700;
  cursor: pointer;
}

.chat-btn i {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

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

  .about-columns {
    justify-content: center;
  }

  .about-content {
    width: 100%;
    padding-right: 0;
  }

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

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

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

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

  .main-nav {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}