/* ZONIK Website Styles */

/* Global Styles */
:root {
  --primary-color: #0056b3; /* Tech blue */
  --secondary-color: #ff6b00; /* Orange accent */
  --tertiary-color: #4caf50; /* Green accent */
  --light-gray: #f5f5f5;
  --dark-gray: #333;
  --text-color: #333;
  --white: #fff;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #003d7a;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #e05d00;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-link.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Banner */
.banner {
  margin-top: 70px;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  max-width: 600px;
  margin-left: 50px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.slide-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Products Section */
.products {
  background-color: var(--light-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #f9f9f9;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-desc {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.product-spec {
  background-color: var(--light-gray);
  padding: 5px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Reseller Section */
.reseller {
  text-align: center;
  background-color: var(--white);
}

.reseller-content {
  max-width: 800px;
  margin: 0 auto;
}

.reseller-badge {
  width: 150px;
  margin-bottom: 20px;
}

.reseller-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Solutions Section */
.solutions {
  background-color: var(--light-gray);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.solution-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.solution-info {
  padding: 20px;
}

.solution-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.solution-desc {
  margin-bottom: 15px;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Certification Section */
.certification {
  background-color: var(--light-gray);
  text-align: center;
}

.certification-content {
  max-width: 800px;
  margin: 0 auto;
}

.certification-badge {
  width: 200px;
  margin-bottom: 30px;
}

.certification-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 20px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  padding: 25px;
}

.testimonial-text {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text p {
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.6;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.author-info p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.text-center {
  text-align: center;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 10px 0;
  color: var(--dark-gray);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-link {
  color: #bbb;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #555;
  margin-top: 30px;
}

/* Product Details Page */
.product-details {
  margin-top: 100px;
  padding: 40px 0;
}

.product-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-details-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details-info h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.product-details-desc {
  margin-bottom: 30px;
}

.product-details-specs {
  margin-bottom: 30px;
}

.product-details-spec {
  display: flex;
  margin-bottom: 10px;
}

.spec-name {
  font-weight: 700;
  width: 150px;
}

/* Responsive styles will be in responsive.css */
