/* ==========================================
   Navigation Bar
   ========================================== */
nav {
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.5s;
}
nav.active {
  backdrop-filter: blur(6px);
  background-color: rgba(26, 26, 26, 0.5);
  transition: all 0.5s;
}
/* ==========================================
   Header & Hero Section
   ========================================== */
header {
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header video {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  border-radius: 10px;
}
header .background {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  border-radius: 10px;
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: linear-gradient(to bottom, #0d0d0d00, #0d0d0d);
}
.hero-text {
  position: absolute;
  padding: 0 1rem;
  max-width: 1200px;
  font-size: clamp(1.25rem, 2.5vw + 1rem, 1.75rem);
  font-weight: bold;
  color: var(--text-main);  
}
.hero-text h3 {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  margin: 0;
  letter-spacing: 10px;
}
.hero-text h2 {
  font-size: clamp(1.7rem, 2vw + 1rem, 3rem);
  font-weight: bold;
  margin: 0.5rem 0;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  background: linear-gradient(50deg, var(--text-main), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  letter-spacing: 2px;
}
.hero-text button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-green);
  color: var(--bg-main);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition:
    all 0.3s,
    color 0.3s;
}
.hero-text button:hover {
  background-color: var(--accent-purple);
  color: var(--text-main);
  transform: translateY(-3px) scale(1.05);
  transition:
    all 0.3s,
    color 0.3s;
}
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 10px 12px;
  border-radius: 50%;
  background-color: rgba(139, 92, 246, 0.3);
  animation: bounce 1.5s infinite;
}
.scroll-down i {
  font-size: 1.5rem;
}
.scroll-down:hover {
  cursor: pointer;
  background-color: rgba(139, 92, 246, 0.6);
}
/* ==========================================
   General Section Styles
   ========================================== */
section {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
section h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  background: linear-gradient(to right, var(--text-main), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--accent-purple);
  margin: 0.5rem auto 0 auto;
}
/* ==========================================
   Products Section
   ========================================== */
section .product-grid {
  max-width: 1000px;
  width: 100%;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  gap: 2rem;
}

section .product-card {
  display: flex;
  max-width: clamp(250px, 20vw, 350px);
  padding: 20px;
  border-radius: 20px;
  background-color: var(--bg-secondary);
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

section .product-card:hover {
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.5);
  transform: translateY(-5px) scale(1.05);
  transition: all 0.3s;
}
section .product-card img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
section .product-card h3 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.75rem);
  margin: 0;
  background: linear-gradient(to right, var(--text-main), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section .product-card .text-section {
  max-width: 300px;
  height: 100%;
  max-height: 50%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
section .product-card .text-section p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text-secondary);
}
section .product-card .text-section span {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  color: var(--accent-green);
}
section .product-card .text-section button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-green);
  color: var(--bg-main);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition:
    all 0.3s,
    color 0.3s;
}
section .product-card .text-section button:hover {
  background-color: var(--accent-purple);
  color: var(--text-main);
  transform: translateY(-3px) scale(1.05);
  transition:
    all 0.3s,
    color 0.3s;
}
/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.why-us .icon-grid {
  max-width: 75%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.why-us .icon-card {
  display: flex;
  width: clamp(200px, 30%, 350px);
  padding: clamp(30px, 5%, 50px);
  border-radius: 20px;
  background-color: var(--bg-secondary);
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  transition: all 0.3s;
}
.why-us .icon-card:hover {
  cursor: pointer;
  box-shadow: 0 0px 20px rgba(139, 92, 246, 0.5);
  transform: translateY(-5px) scale(1.05);
  transition: all 0.3s;
}
.why-us .icon-card svg {
  width: 60px;
  height: 60px;
  color: var(--accent-green);
}
.why-us .icon-card p {
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1rem);
  margin: 0.5rem 0;
  color: var(--text-secondary);
  text-align: left;
}

/* ==========================================
   Contact Section
   ========================================== */
.Contact {
  background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.Contact .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 1200px;
}
.Contact .contact-container .contact-info {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: left;
}
.Contact .contact-container .contact-info h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-main);
  font-size: clamp(2.5rem, 2vw + 1rem, 3rem);
  cursor: pointer;
  background: linear-gradient(to right, var(--text-main), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Contact .contact-container .contact-info h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--accent-purple);
  margin: 0.5rem 0 0 0;
}
.Contact .contact-container .contact-info p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text-secondary);
}
.Contact .contact-container .map {
  width: 100%;
  max-width: 450px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.Contact .contact-container .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.Contact .contact-container .contact-form-section {
  display: flex;
  height: 100%;
  min-height: 300px;
  flex-direction: column;
  padding: 0 clamp(0.3rem, 5%, 2rem);
  gap: 1rem;
}
.Contact .contact-container .contact-form-section h3 {
  margin: 0 0 0.5rem 0;
  color: var(--text-main);
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  cursor: pointer;
  background: linear-gradient(to right, var(--text-main), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Contact .contact-container .contact-form-section h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--accent-purple);
  margin: 0.5rem 0 0 0;
}
.Contact .contact-container .contact-form-section p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--text-secondary);
}
.Contact .contact-container .contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.Contact .contact-container .contact-form-section form input,
.Contact .contact-container .contact-form-section form textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  background-color: var(--bg-main);
  color: var(--text-main);
}
.Contact .contact-container .contact-form-section form input::placeholder,
.Contact .contact-container .contact-form-section form textarea::placeholder {
  color: var(--text-secondary);
}
.Contact .contact-container .contact-form-section form button {
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  background-color: var(--accent-green);
  color: var(--bg-main);
  font-weight: bold;
  cursor: pointer;
  transition:
    all 0.3s,
    color 0.3s;
}
.Contact .contact-container .contact-form-section form button:hover {
  background-color: var(--accent-purple);
  color: var(--text-main);
  transform: translateY(-3px) scale(1.05);
  transition:
    all 0.3s,
    color 0.3s;
}


@media screen and (max-width: 768px) {
  .Contact .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .Contact .contact-container .map {
    width: 100%;
    max-width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
  }
  .Contact .contact-container .contact-info {
    text-align: center;
    align-items: center;
  }
  .Contact .contact-container .contact-info h3::after,
  .Contact .contact-container .contact-form-section h3::after {
    margin: 0.5rem auto 0 auto;
  }
  .Contact .contact-container .contact-form-section {
    padding: 0;
    text-align: center;
  }
}
